/* Base Styles */
.review-list {
    padding: 0;
    width: 100%;
}

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

/* Card Structure */
.review-list .card {
    align-items: flex-start;
    background: #FFF;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.10);
    color: var(--black, #1A1A1A);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    margin: 0;
    padding: 24px;
    position: relative;
    transition: transform 0.2s ease-in-out;
}

.review-list .card p {
    font-size: 14px;
    line-height: 21px;
    margin: 0;
    padding: 0;
    text-align: left;
}

.review-list .card .card-description {
    color: rgba(0, 0, 0, 0.87);
    display: -webkit-box;
    display: -moz-box;
    display: box;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 21px;
    margin: 0;
    max-height: calc(21px * 11); /* fallback: line-height * number of lines */
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 11;
    overflow: hidden;
    padding: 0;
    text-align: left;
    text-overflow: ellipsis;
}

/* Common Author Styles */
.review-list .author-container {
    align-items: center;
    display: flex;
    margin: 0;
    width: 100%;
}

.review-list .author-container .col-auto {
    align-items: center;
    display: flex;
    padding: 0;
}

.review-list .author-container .col {
    padding-left: 12px;
    padding-right: 0;
}

.review-list .card-author-icon {
    aspect-ratio: 1;
    background: #00C853;
    border-radius: 50%;
    height: 36px;
    object-fit: cover;
    width: 36px;
}

.review-list .card-author {
    color: rgba(0, 0, 0, 0.87);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 17px;
    margin: 0;
}

.review-list .card-review-count,
.review-list .card-location {
    color: #909090;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 17px;
}

/* Company Icon */
.review-list .card-review-company-icon {
    height: 36px;
    width: 36px;
}

/* Stars */
.review-list .star {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-right: 4px;
}

.review-list .star.filled {
    color: #FBBC04;
}

/* Grid Layout */
.review-list.reviews-grid ul {
    list-style: none;
    margin: 0 -12px;
    padding: 0;
}

.review-list.reviews-grid li {
    margin: 0;
    padding: 12px;
}

/* Reviews Widget Styles */
.reviews-icons {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

.reviews-icons .card {
    border: none;
    cursor: pointer;
}

.reviews-icons .score-link {
    cursor: pointer;
    margin: 0;
}

.reviews-icons-inline {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.reviews-icons-inline .score-link {
    cursor: pointer;
}

.reviews-icons img,
.reviews-icons-inline img {
    height: auto;
    max-width: 100%;
}

/* Common Carousel Controls */
.carousel-control-next,
.carousel-control-prev {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: none;
    height: 40px;
    justify-content: center;
    margin: auto;
    transform: translateY(-50%);
    width: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    height: 20px;
    width: 20px;
}

/* Common Carousel Indicators */
.carousel-indicators [data-bs-target] {
    background-color: #dadce0;
    border: none;
    border-radius: 50%;
    height: 8px;
    margin: 0 4px;
    opacity: 1;
    padding: 0;
    width: 8px;
}

.carousel-indicators .active {
    background-color: #db4437;
    opacity: 1;
}

/* Hide Swiper elements by default (desktop) */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
    display: none;
}

/* Desktop/Mobile View Toggle */
.mobile-reviews,
.review-list.mobile-view {
    display: none;
}

/* Desktop Carousel Styles */
.reviews-grid .carousel {
    padding-bottom: 30px;
}

.reviews-grid .carousel-item {
    float: none;
}

.reviews-grid .carousel-indicators {
    margin-bottom: 0;
}

.reviews-grid .carousel-indicators [data-bs-target] {
    background-color: #dadce0;
    border: none;
    border-radius: 50%;
    height: 8px;
    margin: 0 4px;
    opacity: 1;
    padding: 0;
    width: 8px;
}

.reviews-grid .carousel-indicators .active {
    background-color: #db4437;
    opacity: 1;
}

.reviews-grid .carousel-control-next,
.reviews-grid .carousel-control-prev {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: none;
    height: 40px;
    justify-content: center;
    margin: auto;
    top: 20%;
    transform: translateY(-50%);
    width: 40px;
}
.reviews-grid:hover .carousel-control-next,
.reviews-grid:hover .carousel-control-prev {
    display: flex;
}
.reviews-grid .carousel-control-prev {
    left: 0px;
}

.reviews-grid .carousel-control-next {
    right: 0px;
}

.reviews-grid .carousel-control-prev-icon,
.reviews-grid .carousel-control-next-icon {
    height: 20px;
    width: 20px;
}

.reviews-grid .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.reviews-grid .carousel-inner {
    height: 390px;
    overflow: visible;
}
.reviews-widget {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reviews-widget .reviews-widget--image {
    max-height: 32px;
}
.reviews-widget--number-of-reviews {
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 1366px) {
    /* View toggles */
    .desktop-reviews,
    .review-list.desktop-view {
        display: none;
    }

    .mobile-reviews,
    .review-list.mobile-view {
        display: block;
        margin-top: 24px;
        padding: 0;
    }

    /* Mobile card styles */
    .review-list.mobile-view .card {
        align-self: stretch;
        gap: 12px;
        overflow-y: auto;
        margin: 0 auto;
        max-height: 320px;
        max-width: 360px;
        padding: 16px 16px 24px 16px;
    }

    .review-list.mobile-view .card-author {
        font-size: 16px;
    }

    .review-list.mobile-view .card-author-icon {
        height: 40px;
        width: 40px;
    }

    .review-list.mobile-view .card-review-count {
        color: #8D8D8D;
        display: block;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.2;
    }

    .review-list.mobile-view .review-company-icon-container {
        margin-left: auto;
        text-align: right;
    }

    .review-list.mobile-view .star {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .review-list.mobile-view .card-description {
        margin-bottom: 0;
        overflow-y: auto;
        padding-right: 4px;
    }

    /* Mobile-specific carousel styles */
    .review-list.mobile-view #reviewsCarousel {
        height: 340px;
        position: relative;
    }

    .review-list.mobile-view .carousel-inner {
        height: 100%;
    }

    .review-list.mobile-view .carousel-control-prev {
        left: 10px;
    }

    .review-list.mobile-view .carousel-control-next {
        right: 10px;
    }

    /* Carousel indicators */
    .review-list.mobile-view .carousel-indicators {
        bottom: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
        padding: 0;
        position: absolute;
    }

    .review-list.mobile-view .carousel-indicators [data-bs-target] {
        background-color: #dadce0;
        border: none;
        border-radius: 50%;
        height: 8px;
        margin: 0 4px;
        opacity: 1;
        padding: 0;
        width: 8px;
    }

    .review-list.mobile-view .carousel-indicators .active {
        background-color: #db4437;
        opacity: 1;
    }

    /* Scrollbar styles */
    .review-list.mobile-view .card-description::-webkit-scrollbar {
        width: 4px;
    }

    .review-list.mobile-view .card-description::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .review-list.mobile-view .card-description::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }

    .review-list.mobile-view .card-description::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    /* Grid overrides */
    .review-list.mobile-view .row {
        margin-left: 0;
        margin-right: 0;
    }

    .review-list.mobile-view .col,
    .review-list.mobile-view .col-auto {
        padding-left: 0;
        padding-right: 0;
    }

    .review-list.mobile-view .author-container .col.ps-3 {
        padding-left: 12px;
    }

    /* Reviews grid mobile styles */
    .review-list.reviews-grid li {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .review-list.reviews-grid .card {
        margin: 0 0 20px 0;
        padding: 16px;
    }

    .review-list.reviews-grid .author-container {
        margin-bottom: 12px;
    }

    .review-list.reviews-grid .card-author-icon {
        height: 36px;
        width: 36px;
    }

    /* Reviews icons mobile styles */
    .reviews-icons {
        flex-wrap: wrap;
        margin: 0 -0.25rem;
    }
    
    .reviews-icons-inline {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .reviews-icons-inline .score-link {
        flex: 0 0 75%;
        max-width: 75%;
        text-align: center;
    }

    /* Swiper mobile styles */
    .review-list.swiper {
        overflow: hidden;
        padding: 0 0 40px;
    }

    .review-list .swiper-wrapper {
        display: flex;
    }

    .review-list .swiper-slide {
        flex-shrink: 0;
        height: auto;
        width: 100% !important;
    }

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: block;
    }

    .swiper-button-next,
    .swiper-button-prev {
        bottom: 0;
        color: #000;
        top: auto;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }

    .swiper-pagination {
        bottom: 5px;
    }

    .swiper-pagination-bullet {
        background: #000;
        height: 8px;
        opacity: 0.2;
        width: 8px;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991px) {
    .review-list.reviews-grid li {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}.cp-video-testimonial.single-video {
    margin-bottom: 20px;
}

.cp-video-testimonial .video-title {
    font-size: 1.5em;
    margin: 15px 0 10px;
}

.cp-video-testimonial .video-description {
    margin-bottom: 15px;
}

.video-testimonials-swiper {
    padding: 0 40px;
    position: relative;
}


.video-testimonials-swiper .video-wrapper {
    cursor: pointer;
    position: relative;
}

.video-testimonials-swiper video {
    aspect-ratio: 9/16;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Proper fullscreen video display */
.video-testimonials-swiper video:fullscreen {
    aspect-ratio: auto;
    height: 100vh;
    object-fit: contain;
    width: 100vw;
}

.video-testimonials-swiper video:-webkit-full-screen {
    aspect-ratio: auto;
    height: 100vh;
    object-fit: contain;
    width: 100vw;
}

.video-testimonials-swiper video:-ms-fullscreen {
    aspect-ratio: auto;
    height: 100vh;
    object-fit: contain;
    width: 100vw;
}

/* Play button overlay */
.play-overlay {
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    bottom: 5px;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease;
}

.play-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
    width: 60px;
}

.play-button svg {
    height: 24px;
    margin-left: 4px;
    width: 24px;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Style video controls */
.video-testimonials-swiper video::-webkit-media-controls {
    background: none;
}

.video-testimonials-swiper video::-webkit-media-controls-enclosure {
    display: flex !important;
}

/* Hide unwanted controls */
.video-testimonials-swiper video::-webkit-media-controls-timeline,
.video-testimonials-swiper video::-webkit-media-controls-current-time-display,
.video-testimonials-swiper video::-webkit-media-controls-time-remaining-display,
.video-testimonials-swiper video::-webkit-media-controls-rewind-button,
.video-testimonials-swiper video::-webkit-media-controls-return-to-realtime-button,
.video-testimonials-swiper video::-webkit-media-controls-toggle-closed-captions-button,
.video-testimonials-swiper video::-webkit-media-controls-overflow-button,
.video-testimonials-swiper video::-webkit-media-controls-overflow-menu-list {
    display: none !important;
}

/* Show volume controls */
.video-testimonials-swiper video::-webkit-media-controls-mute-button {
    display: flex !important;
    opacity: 1 !important;
}

.video-testimonials-swiper video::-webkit-media-controls-volume-control-container {
    display: flex !important;
    opacity: 1 !important;
    width: 100px !important;
}

.video-testimonials-swiper video::-webkit-media-controls-volume-slider {
    display: flex !important;
    opacity: 1 !important;
}

/* Show play/pause and fullscreen */
.video-testimonials-swiper video::-webkit-media-controls-play-button,
.video-testimonials-swiper video::-webkit-media-controls-fullscreen-button {
    display: flex !important;
    opacity: 1 !important;
}

/* Hide overlay when video is playing */
.video-wrapper.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Navigation buttons */
.video-testimonials-swiper .swiper-button {
    display: none !important; /* Overrides player rules */
}
.video-testimonials-swiper:hover .swiper-button {
    display: flex !important; /* Overrides player rules */
}
.video-testimonials-swiper .swiper-button-prev,
.video-testimonials-swiper .swiper-button-next {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    color: #fff;
    height: 40px;
    width: 40px;
}

.video-testimonials-swiper .swiper-button-prev:after,
.video-testimonials-swiper .swiper-button-next:after {
    font-size: 20px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .video-testimonials-swiper {
        padding: 0 20px;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .video-testimonials-swiper {
        padding: 0 40px;
    }

    .video-testimonials-swiper.has-more-than-5 .swiper-button-prev,
    .video-testimonials-swiper.has-more-than-5 .swiper-button-next {
        display: flex;
    }
}


/* Left controls group */
.video-testimonials-swiper video::-webkit-media-controls-start-playback-button,
.video-testimonials-swiper video::-webkit-media-controls-play-button,
.video-testimonials-swiper video::-webkit-media-controls-volume-control-container,
.video-testimonials-swiper video::-webkit-media-controls-mute-button,
.video-testimonials-swiper video::-webkit-media-controls-volume-slider {
    display: flex !important;
    margin-right: auto;
    opacity: 1 !important;
}

/* Right control (fullscreen) */
.video-testimonials-swiper video::-webkit-media-controls-fullscreen-button {
    display: flex !important;
    margin-left: auto;
    opacity: 1 !important;
}

/* Loading state for play button */
.play-button.loading {
    position: relative;
    pointer-events: none;
}

.play-button.loading svg {
    opacity: 0.5;
}

.play-button.loading:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} /**
 * Swiper 11.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 31, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,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))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.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}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/toc/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
.ov-table-of-contents h2 {
  background-color: #008cd9;
  border: none;
  border-radius: 4px 4px 0px 0px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
  padding: 8px 8px 8px 16px;
  position: relative;
}
.ov-table-of-contents h2::after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMS42MjUgMC42Nzk5MzJMNi4yNjUgNi4wMzk0M0M2LjIzMDIyIDYuMDc0MjYgNi4xODg5MSA2LjEwMTkgNi4xNDM0NCA2LjEyMDc1QzYuMDk3OTcgNi4xMzk2IDYuMDQ5MjIgNi4xNDkzMSA2IDYuMTQ5MzFDNS45NTA3OCA2LjE0OTMxIDUuOTAyMDMgNi4xMzk2IDUuODU2NTYgNi4xMjA3NUM1LjgxMTA5IDYuMTAxOSA1Ljc2OTc4IDYuMDc0MjYgNS43MzUgNi4wMzk0M0wwLjM3NSAwLjY3OTkzMiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIwLjc1IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  left: unset;
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
  transition: all 0.3s ease;
  transform: translate(0) rotate(180deg);
  width: 12px;
}
.ov-table-of-contents ol,
.ov-table-of-contents ul {
  background: #F7F7F7;
  border-radius: 0px 0px 4px 4px;
  margin: 0;
  padding: 16px 26px 16px 36px;
}
.ov-table-of-contents li {
  color: #008CD9;
  font-size: 16px;
  list-style: auto;
  margin: 0 0 10px 0;
  padding-left: 0;
}
.ov-table-of-contents li:last-child {
  margin-bottom: 0;
}
.ov-table-of-contents a {
  text-decoration: underline;
}
.ov-table-of-contents.collapsed h2 {
  border-radius: 4px;
}
.ov-table-of-contents.collapsed h2::after {
  transform: translate(0) rotate(0);
}
.ov-table-of-contents.collapsed ol,
.ov-table-of-contents.collapsed ul {
  display: none;
}

/*# sourceMappingURL=style-toc.css.map*//*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/consent/style.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************/
.ov-consent {
  align-items: center;
  background: #F3F8FF;
  border: 1px solid #EBF0FF;
  border-radius: 4px;
  color: #1A1A1A;
  display: flex;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  gap: 8px;
  justify-content: center;
  line-height: 16px;
  padding: 8px;
  width: 100%;
}
.ov-consent a#consent-link {
  color: #4286F4;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .ov-consent a#consent-link {
    font-size: 10px;
    line-height: 12px;
  }
}
.ov-consent span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.ov-consent svg {
  flex-shrink: 0;
  height: 24px;
  width: 27.025px;
}
@media (max-width: 768px) {
  .ov-consent {
    font-size: 10px;
    line-height: 12px;
  }
}

[class^=bg-] .ov-consent {
  background: transparent;
  border: 0.5px solid #C6C6C6;
}

/*# sourceMappingURL=style-consent.css.map*//*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/quote/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
.ov-quote {
  align-items: center;
  background-color: #F6F9FD;
  display: flex;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  min-height: 200px;
  position: relative;
  text-align: center;
  width: 100%;
}

.ov-quote::after {
  bottom: 32px;
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODA4IiBoZWlnaHQ9IjMwIiB2aWV3Qm94PSIwIDAgODA4IDMwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNzgwLjUxMSAzMEM3NzkuMzk2IDMwLjAwMjcgNzc4LjI5MSAyOS43OTM3IDc3Ny4yNiAyOS4zODVDNzc2LjIyOSAyOC45NzYzIDc3NS4yOTIgMjguMzc1OCA3NzQuNTAyIDI3LjYxOEM3NzIuOTA1IDI2LjA4NzQgNzcyLjAwNiAyNC4wMDg0IDc3MiAyMS44Mzg0Qzc3MS45OTQgMTkuNjY4NCA3NzIuODgzIDE3LjU4NTEgNzc0LjQ3MSAxNi4wNDY4Qzc3Ni4wNiAxNC41MDg2IDc3OC4yMTcgMTMuNjQxMyA3ODAuNDY4IDEzLjYzNTlDNzgwLjIzIDkuNTUxNzUgNzc4Ljg3OCA1LjYwMDQyIDc3Ni41NDkgMi4xODEwNEM3NzYuMzQgMS45MTIxNCA3NzYuMjQxIDEuNTc4MzggNzc2LjI3MiAxLjI0Mzc1Qzc3Ni4zMDMgMC45MDkxMjUgNzc2LjQ2IDAuNTk3MTc4IDc3Ni43MTUgMC4zNjc3MTNDNzc2Ljk3IDAuMTM4MjQ5IDc3Ny4zMDMgMC4wMDc0MTg0NCA3NzcuNjUyIDAuMDAwMzA1ODU5Qzc3OCAtMC4wMDY4MDY3MiA3NzguMzM5IDAuMTEwMzAxIDc3OC42MDMgMC4zMjkxNzFDNzc5LjAyNiAwLjY4MSA3ODkgOS4wNjM1IDc4OSAyMS44MTc5Qzc4OC45OTggMjMuOTg3MyA3ODguMTAzIDI2LjA2NzIgNzg2LjUxMSAyNy42MDExQzc4NC45MTkgMjkuMTM1MSA3ODIuNzYxIDI5Ljk5NzggNzgwLjUxMSAzMFoiIGZpbGw9IiMwMDhDRDkiLz4KPHBhdGggZD0iTTgwMC4wMSAzMEM3OTcuODkxIDMwLjAwNTQgNzk1Ljg1NyAyOS4xNDg2IDc5NC4zNTQgMjcuNjE4Qzc5Mi44NTIgMjYuMDg3NCA3OTIuMDA1IDI0LjAwODQgNzkyIDIxLjgzODRDNzkxLjk5NSAxOS42Njg0IDc5Mi44MzEgMTcuNTg1MSA3OTQuMzI2IDE2LjA0NjhDNzk1LjgyMSAxNC41MDg2IDc5Ny44NTEgMTMuNjQxMyA3OTkuOTcgMTMuNjM1OUM3OTkuNzQ2IDkuNTUxNzUgNzk4LjQ3NCA1LjYwMDQyIDc5Ni4yODEgMi4xODEwNEM3OTYuMDg1IDEuOTEyMTQgNzk1Ljk5MiAxLjU3ODM4IDc5Ni4wMjEgMS4yNDM3NUM3OTYuMDUgMC45MDkxMjUgNzk2LjE5OCAwLjU5NzE3OSA3OTYuNDM4IDAuMzY3NzEzQzc5Ni42NzcgMC4xMzgyNDkgNzk2Ljk5MSAwLjAwNzQxODYgNzk3LjMxOSAwLjAwMDMwNjAzQzc5Ny42NDcgLTAuMDA2ODA2NTQgNzk3Ljk2NiAwLjExMDMwMSA3OTguMjE1IDAuMzI5MTcxQzc5OC42MTMgMC42ODEgODA4IDkuMDYzNSA4MDggMjEuODE3OUM4MDcuOTk4IDIzLjk4NzMgODA3LjE1NSAyNi4wNjcyIDgwNS42NTcgMjcuNjAxMUM4MDQuMTU5IDI5LjEzNTEgODAyLjEyOCAyOS45OTc4IDgwMC4wMSAzMFoiIGZpbGw9IiMwMDhDRDkiLz4KPC9zdmc+Cg==);
  position: absolute;
  right: 32px;
  top: auto;
  z-index: 0;
}

.ov-quote::before {
  color: #007bff;
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODA4IiBoZWlnaHQ9IjMwIiB2aWV3Qm94PSIwIDAgODA4IDMwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNOC40ODkzOCAzMEMxMC43NDA5IDMwLjAwNTQgMTIuOTAyNCAyOS4xNDg2IDE0LjQ5ODUgMjcuNjE4QzE2LjA5NDUgMjYuMDg3NCAxNi45OTQzIDI0LjAwODQgMTcgMjEuODM4NEMxNy4wMDU2IDE5LjY2ODQgMTYuMTE2NiAxNy41ODUxIDE0LjUyODUgMTYuMDQ2OEMxMi45NDA0IDE0LjUwODYgMTAuNzgzMyAxMy42NDEzIDguNTMxODIgMTMuNjM1OUM4Ljc2OTY4IDkuNTUxNzUgMTAuMTIxNiA1LjYwMDQyIDEyLjQ1MTEgMi4xODEwNEMxMi42NiAxLjkxMjE0IDEyLjc1ODYgMS41NzgzOCAxMi43Mjc5IDEuMjQzNzVDMTIuNjk3MyAwLjkwOTEyNCAxMi41Mzk2IDAuNTk3MTc1IDEyLjI4NSAwLjM2NzcxMkMxMi4wMzA0IDAuMTM4MjQ4IDExLjY5NjkgMC4wMDc0MTcyNCAxMS4zNDg1IDAuMDAwMzA0NzA2QzExIC0wLjAwNjgwNzgzIDEwLjY2MTEgMC4xMTAyOTggMTAuMzk2NyAwLjMyOTE3QzkuOTczNiAwLjY4MDk5NyAxLjY3OTQ4ZS0wOCA5LjA2MzUgLTEuMTU1MzllLTA2IDIxLjgxNzlDMC4wMDIyNDU1IDIzLjk4NzMgMC44OTczODEgMjYuMDY3MiAyLjQ4ODk2IDI3LjYwMTFDNC4wODA1NCAyOS4xMzUxIDYuMjM4NTQgMjkuOTk3OCA4LjQ4OTM4IDMwWiIgZmlsbD0iIzAwOENEOSIvPgo8cGF0aCBkPSJNMjcuNDg5NCAzMEMyOC42MDQyIDMwLjAwMjcgMjkuNzA4NyAyOS43OTM3IDMwLjczOTcgMjkuMzg1QzMxLjc3MDggMjguOTc2MyAzMi43MDgyIDI4LjM3NTggMzMuNDk4NSAyNy42MThDMzUuMDk0NSAyNi4wODc0IDM1Ljk5NDMgMjQuMDA4NCAzNiAyMS44Mzg0QzM2LjAwNTYgMTkuNjY4NCAzNS4xMTY2IDE3LjU4NTEgMzMuNTI4NSAxNi4wNDY4QzMxLjk0MDQgMTQuNTA4NiAyOS43ODMzIDEzLjY0MTMgMjcuNTMxOCAxMy42MzU5QzI3Ljc2OTcgOS41NTE3NSAyOS4xMjE2IDUuNjAwNDIgMzEuNDUxMSAyLjE4MTA0QzMxLjY2IDEuOTEyMTQgMzEuNzU4NiAxLjU3ODM4IDMxLjcyNzkgMS4yNDM3NUMzMS42OTczIDAuOTA5MTI0IDMxLjUzOTYgMC41OTcxNzUgMzEuMjg1IDAuMzY3NzEyQzMxLjAzMDQgMC4xMzgyNDggMzAuNjk2OSAwLjAwNzQxNzI0IDMwLjM0ODUgMC4wMDAzMDQ3MDZDMzAgLTAuMDA2ODA3ODMgMjkuNjYxMSAwLjExMDI5OCAyOS4zOTY3IDAuMzI5MTdDMjguOTczNiAwLjY4MDk5NyAxOSA5LjA2MzUgMTkgMjEuODE3OUMxOS4wMDIyIDIzLjk4NzMgMTkuODk3NCAyNi4wNjcyIDIxLjQ4OSAyNy42MDExQzIzLjA4MDUgMjkuMTM1MSAyNS4yMzg1IDI5Ljk5NzggMjcuNDg5NCAzMFoiIGZpbGw9IiMwMDhDRDkiLz4KPC9zdmc+Cg==);
  left: 32px;
  position: absolute;
  top: 32px;
  z-index: 0;
}

.ov-quote blockquote {
  color: #1E1E1E;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 70px 32px 70px 32px;
  position: relative;
  text-align: left;
  white-space: pre-line;
  z-index: 1;
}

.ov-quote blockquote::after,
.ov-quote blockquote::before {
  content: "";
}

@media (max-width: 580px) {
  .ov-quote blockquote {
    padding: 50px 32px 70px 32px;
  }
}

/*# sourceMappingURL=style-quote.css.map*//*!********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/esa-cards/style.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************/
#esa-letters-cards {
  margin: 30px auto;
}
#esa-letters-cards .esa-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 480px;
  border-radius: 12px !important;
  border: 1px solid #C6C6C6 !important;
  background: #FFF !important;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05) !important;
  height: 100%;
  padding: 24px !important;
  align-items: center !important;
  gap: 24px !important;
}
#esa-letters-cards .esa-card h2, #esa-letters-cards .esa-card h3, #esa-letters-cards .esa-card h4, #esa-letters-cards .esa-card h5 {
  border-left: none !important;
}
#esa-letters-cards .esa-card span {
  color: #FBBC04 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
}
#esa-letters-cards .esa-card h5 {
  color: #1A1A1A !important;
  font-family: Raleway !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 48px !important;
  text-transform: uppercase !important;
  margin-bottom: 0;
}
#esa-letters-cards .esa-card p {
  color: #D32F2F !important;
  font-size: 48px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 56px !important;
  text-transform: capitalize !important;
  margin: 0 !important;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}
#esa-letters-cards .esa-card p em {
  color: #D32F2F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-right: 5px;
  position: relative;
  top: 10px;
}
#esa-letters-cards .esa-card ul {
  margin-top: auto;
  margin-bottom: 0;
}
#esa-letters-cards .esa-card ul li {
  color: #1A1A1A !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  margin-bottom: 12px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#esa-letters-cards .esa-card ul li::marker {
  content: "";
}
#esa-letters-cards .esa-card ul li::before {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzJfNDY1MCkiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE4LjAwMTEgNC44NTQ1MkMxOC4wMDExIDUuMTQ0ODYgMTcuODg1IDUuNDM1MiAxNy42NzYgNS42NDQyNUw3LjY4ODIzIDE1LjYzMkM3LjQ3OTE4IDE1Ljg0MSA3LjE4ODg0IDE1Ljk1NzIgNi44OTg1IDE1Ljk1NzJDNi42MDgxNiAxNS45NTcyIDYuMzE3ODIgMTUuODQxIDYuMTA4NzcgMTUuNjMyTDAuMzI1MTgyIDkuODQ4MzhDMC4xMTYxMzYgOS42MzkzNCAwIDkuMzQ5IDAgOS4wNTg2NkMwIDguNzY4MzIgMC4xMTYxMzYgOC40Nzc5NyAwLjMyNTE4MiA4LjI2ODkzTDEuOTA0NjQgNi42ODk0N0MyLjExMzY4IDYuNDgwNDMgMi40MDQwMiA2LjM2NDI5IDIuNjk0MzYgNi4zNjQyOUMyLjk4NDcgNi4zNjQyOSAzLjI3NTA1IDYuNDgwNDMgMy40ODQwOSA2LjY4OTQ3TDYuODk4NSAxMC4xMTU1TDE0LjUxNyAyLjQ4NTM0QzE0LjcyNjEgMi4yNzYyOSAxNS4wMTY0IDIuMTYwMTYgMTUuMzA2OCAyLjE2MDE2QzE1LjU5NzEgMi4xNjAxNiAxNS44ODc1IDIuMjc2MjkgMTYuMDk2NSAyLjQ4NTM0TDE3LjY3NiA0LjA2NDc5QzE3Ljg4NSA0LjI3Mzg0IDE4LjAwMTEgNC41NjQxOCAxOC4wMDExIDQuODU0NTJaIiBmaWxsPSIjNEJCN0JGIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMl80NjUwIj4KPHJlY3Qgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
  margin-right: 8px;
  display: inline-block;
  width: 18px;
  height: 18px;
}
#esa-letters-cards .esa-card a {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  align-items: center;
  text-decoration-line: none;
  position: relative;
  display: flex !important;
  padding: 12px 40px !important;
  justify-content: center;
  align-items: center !important;
  gap: 16px !important;
  border-radius: 100px !important;
  background: #D32F2F !important;
  margin-top: auto;
  border: unset;
  width: -moz-fit-content;
  width: fit-content;
}
#esa-letters-cards .esa-card a::after {
  content: "";
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMyAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMS41IiB5PSIxIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHJ4PSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0xMi4yODU3IDYuMjg1NjRIOC40ODgwNEwxMi4yODU3IDEwLjk5OTlMOC40ODgwNCAxNS43MTQySDEyLjI4NTdMMTYuMDgzMyAxMC45OTk5TDEyLjI4NTcgNi4yODU2NFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  margin-left: 8px;
  align-self: center;
}
#esa-letters-cards .esa-card small {
  color: #1A1A1A;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: auto;
}
#esa-letters-cards div:nth-of-type(2) {
  padding: 0 8px;
}
#esa-letters-cards div:nth-of-type(2) .esa-card {
  background: #003462 !important;
}
#esa-letters-cards div:nth-of-type(2) .esa-card h5 {
  color: #FFF !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 4px !important;
}
#esa-letters-cards div:nth-of-type(2) .esa-card p {
  color: #FFF !important;
  font-size: 62px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 56px !important;
  text-transform: capitalize !important;
}
#esa-letters-cards div:nth-of-type(2) .esa-card p em {
  color: #FFF;
}
#esa-letters-cards div:nth-of-type(2) .esa-card ul li {
  color: #FFF !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 26px !important;
}
#esa-letters-cards div:nth-of-type(2) .esa-card small {
  color: #FFF;
}

/*# sourceMappingURL=style-esa-cards.css.map*//*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/cta/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
[id^=start-screening-cta], .start-screening-cta {
  margin-bottom: 24px;
}
[id^=start-screening-cta], [id^=start-screening-cta]:hover, .start-screening-cta, .start-screening-cta:hover {
  align-items: center;
  background: #D32F2F;
  border: unset;
  border-radius: 100px;
  color: #FFF !important;
  display: flex;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  gap: 8px;
  justify-content: center !important;
  line-height: 24px !important;
  margin: 24px 0;
  padding: 14px 32px;
  text-decoration-line: none !important;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  [id^=start-screening-cta], [id^=start-screening-cta]:hover, .start-screening-cta, .start-screening-cta:hover {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  [id^=start-screening-cta], .start-screening-cta {
    justify-content: center;
  }
}
[id^=start-screening-cta].left, .start-screening-cta.left {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  [id^=start-screening-cta].left, .start-screening-cta.left {
    justify-content: center;
  }
}
[id^=start-screening-cta].center, .start-screening-cta.center {
  margin: 0 auto 40px;
}
[id^=start-screening-cta]::after, .start-screening-cta::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMyAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMS41IiB5PSIxIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHJ4PSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0xMi4yODU3IDYuMjg1NjRIOC40ODgwNEwxMi4yODU3IDEwLjk5OTlMOC40ODgwNCAxNS43MTQySDEyLjI4NTdMMTYuMDgzMyAxMC45OTk5TDEyLjI4NTcgNi4yODU2NFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 22px;
  margin-left: 8px;
  vertical-align: middle;
  width: 22px;
}

/*# sourceMappingURL=style-cta.css.map*//*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/how-it-works/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
.block-how-it-works {
  background-color: #FFFFFF;
}
.block-how-it-works h2, .block-how-it-works h3, .block-how-it-works h4 {
  border: unset;
}
.block-how-it-works .box-container {
  max-width: 1280px;
}
.block-how-it-works .box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  gap: 8px;
  border-radius: 4px;
  background-color: #EBF0FF;
}
.block-how-it-works .box .title {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #474D66;
  margin: 0;
  text-transform: uppercase;
}
.block-how-it-works h2.second-title {
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  margin-bottom: 16px;
}
.block-how-it-works .card {
  margin-bottom: 40px;
  flex: 1 1 30%;
  border: unset;
}
.block-how-it-works .card:last-child {
  margin-right: 0px;
}
.block-how-it-works .card .card-image {
  height: auto;
  border-radius: 8px;
  margin: 0 21px 16px 21px;
  max-height: 80px;
}
.block-how-it-works .card .card-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
.block-how-it-works .card .card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #474D66;
}
.block-how-it-works .how-to-image {
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-how-it-works .text-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 768px) {
  .block-how-it-works .title {
    font-size: 12px;
    line-height: 16px;
  }
  .block-how-it-works h2.second-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .block-how-it-works .description {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .block-how-it-works .card {
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .block-how-it-works .card .card-title {
    font-size: 20px;
  }
  .block-how-it-works .card .card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }
  .block-how-it-works .text-section {
    margin-top: 24px;
  }
}
@media (max-width: 992px) {
  .block-how-it-works .text-section {
    margin-top: 16px;
  }
}

/*# sourceMappingURL=style-how-it-works.css.map*//*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/excerpt-img/style.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
.excerpt-image {
  display: flex;
}
.excerpt-image .text {
  flex: 0 0 85%;
}
.excerpt-image .image {
  flex: 0 0 15%;
  margin-left: 10px;
}

/*# sourceMappingURL=style-excerpt-img.css.map*//*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/blue-section/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
.blue-section {
  background: #003462;
  padding-bottom: 40px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .blue-section {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
.blue-section a.btn.cta-button, .blue-section a.btn.cta-button:hover {
  background: #D32F2F;
  border-radius: 100px;
  color: #FFF !important;
  display: inline-block;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 26px !important;
  margin-top: 40px;
  padding: 14px 32px;
  text-align: center;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .blue-section a.btn.cta-button, .blue-section a.btn.cta-button:hover {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
.blue-section .b-card-title {
  color: #FFF;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .blue-section .b-card-title {
    margin-bottom: 16px;
  }
}
.blue-section .blue-section-image {
  aspect-ratio: 1/1;
  background: lightgray;
  background-position: center;
  background-size: cover;
  border-radius: 100px;
  display: block;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 16px;
  width: 200px;
}
.blue-section .btn.cta-button::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMyAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMS41IiB5PSIxIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHJ4PSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0xMi4yODU3IDYuMjg1NjRIOC40ODgwNEwxMi4yODU3IDEwLjk5OTlMOC40ODgwNCAxNS43MTQySDEyLjI4NTdMMTYuMDgzMyAxMC45OTk5TDEyLjI4NTcgNi4yODU2NFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 22px;
  margin-left: 8px;
  vertical-align: middle;
  width: 22px;
}
@media (max-width: 768px) {
  .blue-section .col:not(:last-child) {
    margin-bottom: 32px;
  }
}
.blue-section p.b-card-description {
  color: #FFF !important;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.blue-section .title {
  border-left-color: unset;
  border-left-style: unset;
  color: #FFF;
  display: block;
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  margin: 0 0 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .blue-section .title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
  }
}
.blue-section .title strong {
  font-weight: 700;
}

/*# sourceMappingURL=style-blue-section.css.map*/@keyframes slide-wobble{0%{transform:translateX(30%);opacity:0;}25%{transform:translateX(-15%);}50%{transform:translateX(10%);}75%{transform:translateX(-5%);}100%{transform:translateX(0%);opacity:1;}}@keyframes fade-out{0%{transform:translateX(0%);opacity:1;}25%{transform:translateX(-5%);}100%{transform:translateX(100%);opacity:0;}}.tve-custom-menu-inside{z-index:8;}.thrv_widget_menu{position:relative;z-index:10;}.thrv_widget_menu .fixed-menu-item{position:fixed !important;}.thrv_widget_menu.thrv_wrapper{overflow:visible !important;}.thrv_widget_menu .tve-ham-wrap{z-index:999 !important;}.thrv_widget_menu li li .tve-item-dropdown-trigger{position:absolute;top:0;right:.5em;bottom:0;}.thrv_widget_menu ul ul{box-sizing:border-box;min-width:100%;}.thrv_widget_menu .tve_w_menu .sub-menu{box-shadow:0 0 9px 1px rgba(0,0,0,.15);background-color:#fff;}.thrv_widget_menu .tve_w_menu .sub-menu{visibility:hidden;display:none;}.thrv_widget_menu.tve-active-disabled .tve-state-active{cursor:default !important;}.thrv_widget_menu[class*=tve-custom-menu-switch-icon-].tve-active-disabled .menu-item-has-children{cursor:pointer;}.tve-item-dropdown-trigger{flex:0 0 auto;display:flex;justify-content:center;align-items:center;}.tve-item-dropdown-trigger svg{width:1em;height:1em;transition:transform .2s ease;fill:currentColor;}.tve-item-dropdown-trigger:not(:empty){margin-left:8px;}.tve-m-trigger{display:none;-webkit-tap-highlight-color:rgba(0,0,0,0);}.tve-m-trigger:focus,.tve-m-trigger:active{outline:none;}.tve-m-trigger.tve-triggered-icon .tcb-icon-open,.tve-m-trigger:not(.tve-triggered-icon) .tcb-icon-close,.tve-m-trigger:not(.tve-triggered-icon) .tcb-icon-close-offscreen{display:none;}.tve-m-trigger:not(.tve-triggered-icon) .tcb-icon-open{position:relative;z-index:1;}.tve-m-trigger.tve-triggered-icon .tcb-icon-close{position:relative;z-index:1;}.tcb-icon-open,.tcb-icon-close,.tcb-icon-close-offscreen{margin:0 auto !important;padding:.3em !important;font-size:33px;width:33px;height:33px;}@media (min-width: 300px){:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-dropdown .tve-ham-wrap,:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-left .tve-ham-wrap,:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-ham-wrap{max-width:var(--tcb-menu-box-width-d) !important;width:min(var(--tcb-menu-box-width-d),100vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-left .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:min(var(--tcb-menu-box-width-d),100vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:max(100% - var(--tcb-menu-box-width-d),0vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-ham-wrap.tve-m-expanded{left:max(100% - var(--tcb-menu-box-width-d),0vw) !important;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tve-m-expanded+.tcb-menu-overlay{background:var(--tcb-menu-overlay-d);}}@media (max-width: 1023px){:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-dropdown .tve-ham-wrap,:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-left .tve-ham-wrap,:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-ham-wrap{max-width:var(--tcb-menu-box-width-t) !important;width:min(var(--tcb-menu-box-width-t),100vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-left .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:min(var(--tcb-menu-box-width-t),100vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:max(100% - var(--tcb-menu-box-width-t),0vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-ham-wrap.tve-m-expanded{left:max(100% - var(--tcb-menu-box-width-t),0vw) !important;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tve-m-expanded+.tcb-menu-overlay{background:var(--tcb-menu-overlay-t);}}@media (max-width: 767px){:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-dropdown .tve-ham-wrap,:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-left .tve-ham-wrap,:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-ham-wrap{max-width:var(--tcb-menu-box-width-m) !important;width:min(var(--tcb-menu-box-width-m),100vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-left .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:min(var(--tcb-menu-box-width-m),100vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:max(100% - var(--tcb-menu-box-width-m),0vw) !important;}:not(#s) .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][data-offscreen-width-setup].tve-mobile-side-right .tve-ham-wrap.tve-m-expanded{left:max(100% - var(--tcb-menu-box-width-m),0vw) !important;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tve-m-expanded+.tcb-menu-overlay{background:var(--tcb-menu-overlay-m);}}.thrv_widget_menu.thrv_wrapper{padding:0;--tcb-menu-box-width-t:var(--tcb-menu-box-width-d);--tcb-menu-box-width-m:var(--tcb-menu-box-width-t);--tcb-menu-overlay-d:var(--tcb-menu-overlay);--tcb-menu-overlay-t:var(--tcb-menu-overlay-d);--tcb-menu-overlay-m:var(--tcb-menu-overlay-t);}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-]{background:none !important;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tcb-menu-overlay{display:none;pointer-events:none;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tve-m-expanded.tve-ham-wrap{flex-direction:column;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tve-m-expanded li>a{display:inline-flex;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tve-m-expanded+.tcb-menu-overlay{display:block;left:0;right:0;bottom:0;top:0;position:fixed;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] li{box-sizing:border-box;text-align:center;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .thrive-shortcode-html{position:relative;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .tve-item-dropdown-trigger{position:absolute;top:0;right:.8rem;bottom:0;height:100% !important;transition:transform .2s ease;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .expand-children>a>.tve-item-dropdown-trigger{transform:rotate(180deg);}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] .m-icon{margin-left:-1em;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] ul.tve_w_menu{box-sizing:border-box;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] ul.tve_w_menu li{background-color:inherit;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] ul.tve_w_menu ul{display:none;position:relative;width:100%;left:0;top:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] ul.tve_w_menu li:not(#increase-spec):not(.ccls){padding:0;width:100%;margin-top:0;margin-bottom:0;margin-left:0 !important;margin-right:0 !important;-webkit-tap-highlight-color:rgba(0,0,0,0);}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] ul.tve_w_menu li:not(#increase-spec):not(.ccls):focus,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] ul.tve_w_menu li:not(#increase-spec):not(.ccls):active{outline:none;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-] ul.tve_w_menu li:not(#increase-spec):not(.ccls) a{padding:10px 2em;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=light-tmp] ul.tve_w_menu{background-color:#fff;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=light-tmp] ul.tve_w_menu .sub-menu{box-shadow:none;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=light-tmp] ul.tve_w_menu li li{background-color:#fafafa;box-shadow:none;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=dark-tmp] ul.tve_w_menu{background-color:#1e1e1f;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=dark-tmp] ul.tve_w_menu li .sub-menu li{background-color:#29292a;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=dark-tmp] ul.tve_w_menu li>a{color:#fff;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-ham-wrap.tve-m-expanded{flex-direction:column;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-ham-wrap{height:auto;max-height:0;opacity:0;left:0;overflow:hidden;width:100%;position:absolute;transition:max-height .1s ease,opacity .1s ease;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-ham-wrap.tve-m-expanded{opacity:1;max-height:fit-content;top:100%;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-m-trigger{position:relative;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-m-trigger .thrv_icon:not(.tcb-icon-close-offscreen){display:block;transition:opacity .3s ease;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-m-trigger .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-m-trigger .tcb-icon-close-offscreen{position:absolute;top:0;left:50%;transform:translateX(-50%);opacity:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-m-trigger.tve-triggered-icon .tcb-icon-close{opacity:1;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-m-trigger.tve-triggered-icon .tcb-icon-open{opacity:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap.tve-m-expanded{display:flex;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap{top:0;display:block;height:100vh;width:80vw !important;padding:60px;position:fixed;transition:left .2s ease;overflow-y:auto;overflow-y:auto !important;overflow-x:hidden !important;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap::-webkit-scrollbar,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap::-webkit-scrollbar,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap::-webkit-scrollbar{width:14px;height:8px;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar-track,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap::-webkit-scrollbar-track,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar-track,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap::-webkit-scrollbar-track,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar-track,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap::-webkit-scrollbar-track{background:rgba(0,0,0,0);}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar-thumb,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap::-webkit-scrollbar-thumb,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar-thumb,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap::-webkit-scrollbar-thumb,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu::-webkit-scrollbar-thumb,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap::-webkit-scrollbar-thumb{height:23px;border:4px solid rgba(0,0,0,0);background-clip:padding-box;-webkit-border-radius:7px;background-color:rgba(0,0,0,.15);-webkit-box-shadow:inset -1px -1px 0px rgba(0,0,0,.05),inset 1px 1px 0px rgba(0,0,0,.05);}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap.tve-m-expanded{box-shadow:0 0 9px 1px rgba(0,0,0,.15);}.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap{top:32px;height:calc(100vh - 32px);}@media screen and (max-width: 782px){.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap{top:46px;height:calc(100vh - 46px);}}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close-offscreen,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger .tcb-icon-close-offscreen,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger .tcb-icon-close-offscreen{display:block;position:fixed;z-index:99;top:0;left:0;transform:translateX(-100%);transition:left .2s ease;}.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close-offscreen,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger .tcb-icon-close,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger .tcb-icon-close-offscreen,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger .tcb-icon-close,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger .tcb-icon-close-offscreen{top:32px;}@media screen and (max-width: 782px){.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close-offscreen,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger .tcb-icon-close,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger .tcb-icon-close-offscreen,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger .tcb-icon-close,.admin-bar .thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger .tcb-icon-close-offscreen{top:46px;}}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger.close-offscreen-icon-available .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger.close-offscreen-icon-available .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger.close-offscreen-icon-available .tcb-icon-close{opacity:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-triggered-icon .tcb-icon-open,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-triggered-icon .tcb-icon-open,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-triggered-icon .tcb-icon-open{display:block;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right[class*=light-tmp-third] .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right[class*=light-tmp-third] .tcb-icon-close-offscreen,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left[class*=light-tmp-third] .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left[class*=light-tmp-third] .tcb-icon-close-offscreen,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen[class*=light-tmp-third] .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen[class*=light-tmp-third] .tcb-icon-close-offscreen{color:#fff;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right[class*=light-tmp],.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left[class*=light-tmp],.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen[class*=light-tmp]{background-color:#fff;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right[class*=dark-tmp] :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right[class*=dark-tmp] .tve-ham-wrap.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left[class*=dark-tmp] :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left[class*=dark-tmp] .tve-ham-wrap.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen[class*=dark-tmp] :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen[class*=dark-tmp] .tve-ham-wrap.tve-m-expanded{background:#393939;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap{left:-100%;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-ham-wrap.tve-m-expanded{left:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger.tve-triggered-icon .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-left .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:80vw;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap{left:-100%;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-ham-wrap.tve-m-expanded{width:100vw !important;left:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger.tve-triggered-icon .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-fullscreen .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:100%;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right[data-offscreen-width-setup] .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:max(100% - var(--tcb-menu-box-width),0vw) !important;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right[data-offscreen-width-setup] .tve-ham-wrap.tve-m-expanded{left:max(100% - var(--tcb-menu-box-width),0vw) !important;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap{left:calc(100% + 4px);}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-ham-wrap.tve-m-expanded{left:20vw;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger .tcb-icon-close-offscreen{left:100%;transform:none;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger.tve-triggered-icon .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-].tve-mobile-side-right .tve-m-trigger.tve-triggered-icon .tcb-icon-close-offscreen{left:20vw;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=light-tmp-third] :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=light-tmp-third] .tve-ham-wrap{background-color:#39a3d1;}.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=light-tmp-third] :not(.tve-ham-wrap)>ul.tve_w_menu li>a,.thrv_widget_menu.thrv_wrapper[class*=tve-custom-menu-switch-icon-][class*=light-tmp-third] .tve-ham-wrap li>a{color:#fff;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical{display:inline-block;box-sizing:border-box;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical li>a{max-width:100%;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical li.expand-children{overflow:visible;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical li.expand-children>.sub-menu{visibility:visible;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical ul{position:relative;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical ul ul{top:0;left:0;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical ul li{position:relative;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical .tcb-menu-logo-wrap{display:none !important;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal li:hover,.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal li.expand-children{overflow:visible;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal li:hover>.sub-menu,.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal li:hover .tcb-mega-drop-inner>ul,.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal li.expand-children>.sub-menu,.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal li.expand-children .tcb-mega-drop-inner>ul{visibility:visible;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu>li{flex:0 1 auto;cursor:pointer;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu>li a:focus{outline:none;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu li>a:not(.tcb-logo){font-size:16px;line-height:2em;color:inherit !important;text-decoration:inherit !important;box-shadow:none;letter-spacing:initial;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu .sub-menu li{padding:0;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu .sub-menu li a:hover{background-color:rgba(0,0,0,0);}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu .tve-dropdown-icon-down{display:none;}.thrv_widget_menu.thrv_wrapper li.c-brackets>a:before,.thrv_widget_menu.thrv_wrapper li.c-brackets>a:after,.thrv_widget_menu.thrv_wrapper li.c-brackets .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-brackets .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_widget_menu.thrv_wrapper li.c-brackets:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-brackets:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-brackets:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-brackets:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_widget_menu.thrv_wrapper li.c-brackets>a:before,.thrv_widget_menu.thrv_wrapper li.c-brackets>a:after,.thrv_widget_menu.thrv_wrapper li.c-brackets .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-brackets .tve-hover-anim:after{background:none;font-size:1em;height:100%;top:0;bottom:0;display:inline-flex;display:inline-flex !important;justify-content:center;align-items:center;position:absolute;width:.3em;}.thrv_widget_menu.thrv_wrapper li.c-brackets>a:before,.thrv_widget_menu.thrv_wrapper li.c-brackets .tve-hover-anim:before{content:"[";left:-.5em;transform:translateX(1.25em);}.thrv_widget_menu.thrv_wrapper li.c-brackets>a:after,.thrv_widget_menu.thrv_wrapper li.c-brackets .tve-hover-anim:after{content:"]";right:-.5em;left:auto;transform:translateX(-1.25em);}.thrv_widget_menu.thrv_wrapper li.c-brackets:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-brackets:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-brackets:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-brackets:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-brackets.tve-state-hover .tve-hover-anim:after{transform:translateX(0px);}.thrv_widget_menu.thrv_wrapper li.c-underline>a:before,.thrv_widget_menu.thrv_wrapper li.c-underline>a:after,.thrv_widget_menu.thrv_wrapper li.c-underline .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-underline .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_widget_menu.thrv_wrapper li.c-underline:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-underline:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-underline:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-underline:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_widget_menu.thrv_wrapper li.c-underline>a:after,.thrv_widget_menu.thrv_wrapper li.c-underline .tve-hover-anim:after{transform:translate(-50%,-10px);height:2px;width:40%;top:105%;left:50%;}.thrv_widget_menu.thrv_wrapper li.c-underline:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-underline:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover .tve-hover-anim:after{transform:translate(-50%,-5px);height:1px;}.thrv_widget_menu.thrv_wrapper li.c-underline:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-underline:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-underline.tve-state-hover .tve-hover-anim:before{display:none;}.thrv_widget_menu.thrv_wrapper li.c-double>a:before,.thrv_widget_menu.thrv_wrapper li.c-double>a:after,.thrv_widget_menu.thrv_wrapper li.c-double .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-double .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_widget_menu.thrv_wrapper li.c-double:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-double:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-double:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-double:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_widget_menu.thrv_wrapper li.c-double>a:before,.thrv_widget_menu.thrv_wrapper li.c-double .tve-hover-anim:before{display:block !important;transform:translateY(-10px) !important;top:4px !important;}@media (min-width: 2600px){.thrv_widget_menu.thrv_wrapper li.c-double>a:before,.thrv_widget_menu.thrv_wrapper li.c-double .tve-hover-anim:before{top:3px !important;}}.thrv_widget_menu.thrv_wrapper li.c-double>a:after,.thrv_widget_menu.thrv_wrapper li.c-double .tve-hover-anim:after{transform:translateY(10px);top:calc(100% - 6px);}.thrv_widget_menu.thrv_wrapper li.c-double:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-double:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-double:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-double:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-double.tve-state-hover .tve-hover-anim:after{transform:translateY(0px) !important;}.thrv_widget_menu.thrv_wrapper li.c-thick>a:before,.thrv_widget_menu.thrv_wrapper li.c-thick>a:after,.thrv_widget_menu.thrv_wrapper li.c-thick .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-thick .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_widget_menu.thrv_wrapper li.c-thick:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-thick:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-thick:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-thick:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_widget_menu.thrv_wrapper li.c-thick>a:after,.thrv_widget_menu.thrv_wrapper li.c-thick .tve-hover-anim:after{transform:translate(-50%,-10px);width:50%;top:105%;left:50%;}.thrv_widget_menu.thrv_wrapper li.c-thick:hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-thick:hover .tve-hover-anim:after,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover>a:after,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover .tve-hover-anim:after{transform:translate(-50%,-5px);height:4px;}.thrv_widget_menu.thrv_wrapper li.c-thick:hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-thick:hover .tve-hover-anim:before,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover>a:before,.thrv_widget_menu.thrv_wrapper li.c-thick.tve-state-hover .tve-hover-anim:before{display:none;}.thrv_widget_menu.thrv_wrapper .tve_w_menu .tve-disabled-text-inner{flex:1 1 auto;display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.thrv_widget_menu.thrv_wrapper .tve_w_menu .m-icon{display:flex;justify-content:center;align-items:center;flex:0 0 1em;width:1em;height:1em;margin-right:8px;margin-bottom:2px;}.thrv_widget_menu.thrv_wrapper .tve_w_menu .m-icon svg{width:100%;height:100%;line-height:1em;stroke-width:0;stroke:currentColor;fill:currentColor;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_vertical{width:100%;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_vertical ul{width:100%;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_vertical li{display:block;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_vertical>li ul{padding:0;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_vertical li.expand-children>ul{display:block;visibility:visible;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_horizontal li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_horizontal li.expand-children>ul{display:block;}div:not(#increase-specificity) .thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_horizontal>li:first-child{margin-left:0 !important;}div:not(#increase-specificity) .thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu.tve_horizontal>li:last-child{margin-right:0 !important;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu li{overflow:hidden;display:flex;justify-content:center;flex-direction:column;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu li li>a .tve-item-dropdown-trigger svg{transform:rotate(-90deg);}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu li li.menu-item-has-children>a{padding:2px 1.5em 2px 15px;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_w_menu li li.menu-item-has-children>a .tve-item-dropdown-trigger{right:.25em;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul.tve_vertical li>ul{float:left;transition:max-height 0s,opacity .2s ease;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul.tve_vertical li:not(.expand-children):hover>ul{visibility:hidden;max-height:0;opacity:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul.tve_vertical li:not(.expand-children):hover>ul>li{max-height:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul>li ul{max-height:0;display:initial !important;visibility:hidden;opacity:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul>li.expand-children>ul{visibility:visible;max-height:fit-content;opacity:1;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul>li:hover>ul>li,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul>li.expand-children>ul>li{max-height:fit-content;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fade ul>li ul{transition:.2s ease;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul.tve_vertical li ul{float:left;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul.tve_vertical li:not(.expand-children):hover>ul>li{opacity:0;height:0;overflow:hidden;visibility:hidden;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul{display:initial !important;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul>li{height:0;opacity:0;overflow:hidden;visibility:hidden;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul>li.expand-children>ul{width:100%;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul>li ul{width:0;transition:width .35s ease-in-out;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul>li ul li{height:40px;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li:hover>ul>li,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li.expand-children>ul>li{opacity:1;height:40px;overflow:visible;visibility:visible;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul>li{transition:all .2s ease,opacity 0s ease;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide1 ul>li>ul>li ul{transition:width .25s ease-in-out;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul.tve_vertical li ul{float:left;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul.tve_vertical li:not(.expand-children):hover>ul>li{opacity:0;height:0;overflow:hidden;visibility:hidden;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul{display:initial !important;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul>li{height:0;opacity:0;overflow:hidden;visibility:hidden;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul>li.expand-children>ul{width:100%;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul>li ul{width:0;transition:width .35s ease-in-out;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul>li ul li{height:40px;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li:hover>ul>li,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li.expand-children>ul>li{opacity:1;height:40px;overflow:visible;visibility:visible;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul>li{transition:all .15s linear,opacity 0s linear;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-slide2 ul>li>ul>li ul{transition:width .25s linear;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=vmd]) ul.tve_vertical:not(#_) li:not(.expand-children)>.sub-menu{padding:0 !important;margin:0 !important;border:none !important;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=vmd]) ul.tve_vertical:not(#_) li:after{content:"";display:table;clear:both;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=vmd]) ul.tve_vertical:not(#_) li>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=vmd]) ul.tve_vertical:not(#_) li>ul:hover{max-height:0;visibility:hidden;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=vmd]) ul.tve_vertical:not(#_) li.expand-children>ul{max-height:fit-content;visibility:visible;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=vmd]) ul.tve_vertical ul .tve-item-dropdown-trigger{transform:rotate(90deg);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-right ul.tve_vertical li,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-left ul.tve_vertical li{position:relative;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-right ul.tve_vertical ul:not(#_),.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-left ul.tve_vertical ul:not(#_){position:absolute;left:unset;right:100%;top:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-right ul.tve_vertical ul:not(#_){left:100% !important;right:unset;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-right ul.tve_vertical .tve-item-dropdown-trigger{transform:rotate(-90deg);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-right ul.tve_vertical .tve-item-dropdown-trigger:not(:empty){margin:0 0 0 8px;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-right ul.tve_vertical ul .tve-item-dropdown-trigger{transform:rotate(0);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-right ul.tve_vertical ul .tve-item-dropdown-trigger:not(:empty){margin:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-left ul.tve_vertical .tve-item-dropdown-trigger{transform:rotate(90deg);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-left ul.tve_vertical .tve-item-dropdown-trigger:not(:empty){margin:0 0 0 8px;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-left ul.tve_vertical ul .tve-item-dropdown-trigger{transform:rotate(180deg);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).vmd-left ul.tve_vertical ul .tve-item-dropdown-trigger:not(:empty){margin:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_vertical li ul{float:left;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_vertical li:not(.expand-children):hover>ul{visibility:hidden;max-height:0;opacity:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul>li>ul{max-height:0;display:initial !important;visibility:hidden;opacity:0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul>li.expand-children>ul{visibility:visible;max-height:fit-content;opacity:1;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul>li ul{transform:perspective(400px) rotate3d(1,0,0,-90deg);transform-origin:50% 0;transition:.35s,color .35s ease;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul>li ul ul{transform:perspective(1600px) rotate3d(0,1,0,-90deg);transform-origin:0 0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_horizontal>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_horizontal>li.expand-children>ul{transform:perspective(400px) rotate3d(0,0,0,0);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_horizontal>li:hover>ul>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_horizontal>li:hover>ul>li.expand-children>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_horizontal>li.expand-children>ul>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_horizontal>li.expand-children>ul>li.expand-children>ul{transform:perspective(400px) rotate3d(0,0,0,0);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_vertical>li ul ul{transform:perspective(400px) rotate3d(1,0,0,-90deg);transform-origin:50% 0;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std).da-fold ul.tve_vertical li.expand-children>ul{transform:perspective(400px) rotate3d(0,0,0,0);}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=da]) ul.tve_w_menu.tve_horizontal>li>ul{display:block;visibility:hidden;top:-100000px;}.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=da]) ul.tve_w_menu.tve_horizontal>li:hover>ul,.thrv_widget_menu.thrv_wrapper.tve-regular:not(.tcb-mega-std):not([class*=da]) ul.tve_w_menu.tve_horizontal>li.expand-children>ul{top:100%;visibility:visible;}.thrv_widget_menu.thrv_wrapper[class*=tve-menu-template-] ul.tve_w_menu.tve_vertical{padding:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-menu-template-] ul.tve_w_menu.tve_vertical li{margin:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-menu-template-] ul.tve_w_menu>li{margin:0 15px;}.thrv_widget_menu.thrv_wrapper[class*=tve-menu-template-] ul.tve_w_menu>li ul{border:none;background-color:#fff;border-radius:0;}.thrv_widget_menu.thrv_wrapper[class*=tve-menu-template-] ul.tve_w_menu>li>a{font-weight:600;}.thrv_widget_menu.thrv_wrapper[class*=tve-menu-template-] ul.tve_w_menu .sub-menu li{font-weight:normal;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-first] ul.tve_w_menu>li:hover>a,.thrv_widget_menu.thrv_wrapper[class*=light-tmp-first] ul.tve_w_menu>li.tve-state-hover>a{color:#39a3d1;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-first] ul.tve_w_menu .sub-menu li a{color:#666;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-first] ul.tve_w_menu .sub-menu li:hover>a,.thrv_widget_menu.thrv_wrapper[class*=light-tmp-first] ul.tve_w_menu .sub-menu li.tve-state-hover>a{color:#363636;text-decoration:none !important;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-second] ul.tve_w_menu>li:hover,.thrv_widget_menu.thrv_wrapper[class*=light-tmp-second] ul.tve_w_menu>li.tve-state-hover{background-color:#fff;box-shadow:0 0 9px 1px rgba(0,0,0,.15);}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-second] ul.tve_w_menu>li{padding:0;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-second] ul.tve_w_menu>li a{background-color:inherit;padding:6px 10px;z-index:20;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-second] ul.tve_w_menu .sub-menu>li a{color:#666;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-second] ul.tve_w_menu .sub-menu>li:hover>a{color:#39a3d1;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu>li{margin:0;border-right:none;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu>li:not(:last-of-type){border-right:1px solid #d9d9d9;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu>li a{color:#333;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu li:hover,.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu li.tve-state-hover{background-color:#39a3d1;color:#fff !important;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu li:hover a,.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu li.tve-state-hover a{color:inherit !important;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu .sub-menu{box-shadow:none;background-color:#39a3d1;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu .sub-menu li{background-color:#39a3d1;color:#fff !important;}.thrv_widget_menu.thrv_wrapper[class*=light-tmp-third] ul.tve_w_menu .sub-menu li:hover{color:#e0eef6 !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] ul.tve_w_menu{background-color:#3c3d40;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] ul.tve_w_menu>li a{color:#fff !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] ul.tve_w_menu .sub-menu{box-shadow:none;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] ul.tve_w_menu .sub-menu li{background-color:#1e1e1f !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] ul.tve_w_menu .sub-menu li:hover>a{color:#fff;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] ul.tve_w_menu .sub-menu li a{color:#afafaf;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] .tcb-icon-close-offscreen{color:#fff;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] .tcb-icon-close svg,.thrv_widget_menu.thrv_wrapper[class*=dark-tmp] .tcb-icon-close-offscreen svg{color:inherit;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp].tve-mobile-dropdown .tcb-icon-close,.thrv_widget_menu.thrv_wrapper[class*=dark-tmp].tve-mobile-dropdown .tcb-icon-close-offscreen{color:#111;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fourth] ul.tve_w_menu .sub-menu li a{color:#afafaf !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fourth] ul.tve_w_menu>li:hover>a,.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fourth] ul.tve_w_menu>li.tve-state-hover>a{color:#39a3d1 !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fourth] ul.tve_w_menu .sub-menu li:hover>a,.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fourth] ul.tve_w_menu .sub-menu li.tve-state-hover>a{color:#fff !important;text-decoration:underline !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fifth] ul.tve_w_menu>li:hover,.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fifth] ul.tve_w_menu>li.tve-state-hover{background-color:#1e1e1f;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fifth] ul.tve_w_menu>li{padding:0;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fifth] ul.tve_w_menu>li a{background-color:inherit;padding:2px 10px;z-index:9;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fifth] ul.tve_w_menu .sub-menu li a{color:#afafaf !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-fifth] ul.tve_w_menu .sub-menu li:hover>a{color:#39a3d1 !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu>li{margin:0 !important;border-right:none;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu>li:not(:last-of-type){border-right:1px solid #d9d9d9;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu>li:hover,.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu>li.tve-state-hover{background-color:#39a3d1;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu .sub-menu>li{background-color:#39a3d1 !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu .sub-menu>li:hover{background-color:#39a3d1;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu .sub-menu>li:hover>a{color:#fff !important;}.thrv_widget_menu.thrv_wrapper[class*=dark-tmp-sixth] ul.tve_w_menu .sub-menu>li>a{color:#e0eef6 !important;}.tve_w_menu ul{left:100%;top:0;}.tve_w_menu>li>ul{top:100%;left:0;}@media (min-width: 1024px){.thrv_widget_menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap{height:0;overflow:hidden;box-sizing:border-box;width:100%;background-color:#fff;z-index:9 !important;position:absolute;}.thrv_widget_menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu .tcb-menu-logo-wrap,.thrv_widget_menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap .tcb-menu-logo-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu .tcb-menu-logo-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap .tcb-menu-logo-wrap{display:none !important;}.thrv_widget_menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-m-trigger,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-m-trigger{display:block;width:100%;color:#333 !important;}.thrv_widget_menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html{display:flex;justify-content:space-between;align-items:center;}.thrv_widget_menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tcb-hamburger-logo,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tcb-hamburger-logo{display:block;order:var(--tcb-logo-split-order,1);}.thrv_widget_menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tve-m-trigger,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tve-m-trigger{width:auto;order:2;}.thrv_widget_menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html ul,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html ul{flex-wrap:wrap !important;}.thrv_widget_menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html:after,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html:after{display:none;}.thrv_widget_menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu:not(.tve-m-expanded),.thrv_widget_menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown .tve-ham-wrap:not(.tve-m-expanded),.mega-menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu:not(.tve-m-expanded),.mega-menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown .tve-ham-wrap:not(.tve-m-expanded){visibility:hidden;display:none;}}.thrv_widget_menu [data-item-display-desktop=icon]>a>.m-icon,.thrv_widget_menu [data-item-display-desktop=icon]>.m-icon,.thrv_widget_menu [data-item-display-desktop=icon] .tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-desktop=icon]>a>.tcb-mm-text .m-icon{display:flex !important;margin-right:0 !important;}.thrv_widget_menu [data-item-display-desktop=icon]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=icon]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=icon]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-desktop=icon]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-desktop=icon]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=icon]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=icon]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=icon]>a>.tcb-mm-text>.tve-disabled-text-inner{display:none !important;}.thrv_widget_menu [data-item-display-desktop=icon-text]>a>.m-icon,.thrv_widget_menu [data-item-display-desktop=icon-text]>.m-icon,.thrv_widget_menu [data-item-display-desktop=icon-text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-desktop=icon-text]>a>.tcb-mm-text .m-icon{display:flex !important;}.thrv_widget_menu [data-item-display-desktop=icon-text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=icon-text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=icon-text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-desktop=icon-text]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-desktop=icon-text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=icon-text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=icon-text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=icon-text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}.thrv_widget_menu [data-item-display-desktop=text]>a>.m-icon,.thrv_widget_menu [data-item-display-desktop=text]>.m-icon,.thrv_widget_menu [data-item-display-desktop=text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-desktop=text]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-desktop=text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-desktop=text]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-desktop=text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}.thrv_widget_menu [data-item-display-desktop=image]>a>.m-icon,.thrv_widget_menu [data-item-display-desktop=image]>.m-icon,.thrv_widget_menu [data-item-display-desktop=image]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-desktop=image]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-desktop=image]>.tcb-mm-text,.thrv_widget_menu [data-item-display-desktop=image]>a>.tcb-mm-text{flex-grow:0 !important;}.thrv_widget_menu [data-item-display-desktop=image]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=image]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=image]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-desktop=image]>.tcb-mm-image{display:flex !important;}.thrv_widget_menu [data-item-display-desktop=image]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=image]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=image]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=image]>a>.tcb-mm-text>.tve-disabled-text-inner{display:none !important;}.thrv_widget_menu [data-item-display-desktop=image-text]>a>.m-icon,.thrv_widget_menu [data-item-display-desktop=image-text]>.m-icon,.thrv_widget_menu [data-item-display-desktop=image-text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-desktop=image-text]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-desktop=image-text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=image-text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-desktop=image-text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-desktop=image-text]>.tcb-mm-image{display:flex !important;}.thrv_widget_menu [data-item-display-desktop=image-text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=image-text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=image-text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-desktop=image-text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}body.logged-in .thrv_widget_menu .tcb-menu-display-desktop-logged-out{display:none !important;}body:not(.logged-in) .thrv_widget_menu .tcb-menu-display-desktop-logged-in{display:none !important;}:not(#_):not(#_) .thrv_widget_menu .tcb-menu-display-desktop-always{display:block !important;}@media (min-width: 768px)and (max-width: 1023px){.thrv_widget_menu[data-tve-switch-icon*=tablet] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu[data-tve-switch-icon*=tablet] .thrive-shortcode-html .tve-ham-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap{height:0;overflow:hidden;box-sizing:border-box;width:100%;background-color:#fff;z-index:9 !important;position:absolute;}.thrv_widget_menu[data-tve-switch-icon*=tablet] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu .tcb-menu-logo-wrap,.thrv_widget_menu[data-tve-switch-icon*=tablet] .thrive-shortcode-html .tve-ham-wrap .tcb-menu-logo-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu .tcb-menu-logo-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap .tcb-menu-logo-wrap{display:none !important;}.thrv_widget_menu[data-tve-switch-icon*=tablet] .thrive-shortcode-html .tve-m-trigger,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-m-trigger{display:block;width:100%;color:#333 !important;}.thrv_widget_menu[data-tve-switch-icon*=tablet].tcb-logo-split .thrive-shortcode-html,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html{display:flex;justify-content:space-between;align-items:center;}.thrv_widget_menu[data-tve-switch-icon*=tablet].tcb-logo-split .thrive-shortcode-html .tcb-hamburger-logo,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tcb-hamburger-logo{display:block;order:var(--tcb-logo-split-order,1);}.thrv_widget_menu[data-tve-switch-icon*=tablet].tcb-logo-split .thrive-shortcode-html .tve-m-trigger,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tve-m-trigger{width:auto;order:2;}.thrv_widget_menu[data-tve-switch-icon*=tablet].tcb-logo-split .thrive-shortcode-html ul,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html ul{flex-wrap:wrap !important;}.thrv_widget_menu[data-tve-switch-icon*=tablet].tcb-logo-split .thrive-shortcode-html:after,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html:after{display:none;}.thrv_widget_menu[data-tve-switch-icon*=tablet].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu:not(.tve-m-expanded),.thrv_widget_menu[data-tve-switch-icon*=tablet].tve-mobile-dropdown .tve-ham-wrap:not(.tve-m-expanded),.mega-menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu:not(.tve-m-expanded),.mega-menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown .tve-ham-wrap:not(.tve-m-expanded){visibility:hidden;display:none;}.thrv_widget_menu[data-tve-switch-icon*=tablet]:not(.tve-custom-menu-switch-icon-tablet) ul,.mega-menu[data-tve-switch-icon*=desktop]:not(.tve-custom-menu-switch-icon-tablet) ul{padding:0 !important;}}@media (max-width: 1023px){.thrv_widget_menu [data-item-display-tablet=icon]>a>.m-icon,.thrv_widget_menu [data-item-display-tablet=icon]>.m-icon,.thrv_widget_menu [data-item-display-tablet=icon]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-tablet=icon]>a>.tcb-mm-text .m-icon{display:flex !important;}.thrv_widget_menu [data-item-display-tablet=icon]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=icon]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=icon]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-tablet=icon]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-tablet=icon]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=icon]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=icon]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=icon]>a>.tcb-mm-text>.tve-disabled-text-inner{display:none !important;}.thrv_widget_menu [data-item-display-tablet=icon-text]>a>.m-icon,.thrv_widget_menu [data-item-display-tablet=icon-text]>.m-icon,.thrv_widget_menu [data-item-display-tablet=icon-text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-tablet=icon-text]>a>.tcb-mm-text .m-icon{display:flex !important;}.thrv_widget_menu [data-item-display-tablet=icon-text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=icon-text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=icon-text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-tablet=icon-text]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-tablet=icon-text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=icon-text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=icon-text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=icon-text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}.thrv_widget_menu [data-item-display-tablet=text]>a>.m-icon,.thrv_widget_menu [data-item-display-tablet=text]>.m-icon,.thrv_widget_menu [data-item-display-tablet=text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-tablet=text]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-tablet=text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-tablet=text]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-tablet=text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}.thrv_widget_menu [data-item-display-tablet=image]>a>.m-icon,.thrv_widget_menu [data-item-display-tablet=image]>.m-icon,.thrv_widget_menu [data-item-display-tablet=image]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-tablet=image]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-tablet=image]>.tcb-mm-text,.thrv_widget_menu [data-item-display-tablet=image]>a>.tcb-mm-text{flex-grow:0 !important;}.thrv_widget_menu [data-item-display-tablet=image]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=image]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=image]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-tablet=image]>.tcb-mm-image{display:flex !important;}.thrv_widget_menu [data-item-display-tablet=image]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=image]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=image]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=image]>a>.tcb-mm-text>.tve-disabled-text-inner{display:none !important;}.thrv_widget_menu [data-item-display-tablet=image-text]>a>.m-icon,.thrv_widget_menu [data-item-display-tablet=image-text]>.m-icon,.thrv_widget_menu [data-item-display-tablet=image-text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-tablet=image-text]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-tablet=image-text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=image-text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-tablet=image-text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-tablet=image-text]>.tcb-mm-image{display:flex !important;}.thrv_widget_menu [data-item-display-tablet=image-text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=image-text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=image-text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-tablet=image-text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}body.logged-in .thrv_widget_menu .tcb-menu-display-tablet-logged-out{display:none !important;}body:not(.logged-in) .thrv_widget_menu .tcb-menu-display-tablet-logged-in{display:none !important;}:not(#_):not(#_) .thrv_widget_menu .tcb-menu-display-tablet-always{display:block !important;}}@media (max-width: 767px){.thrv_widget_menu[data-tve-switch-icon*=mobile] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu,.thrv_widget_menu[data-tve-switch-icon*=mobile] .thrive-shortcode-html .tve-ham-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap{height:0;overflow:hidden;box-sizing:border-box;width:100%;background-color:#fff;z-index:9 !important;position:absolute;}.thrv_widget_menu[data-tve-switch-icon*=mobile] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu .tcb-menu-logo-wrap,.thrv_widget_menu[data-tve-switch-icon*=mobile] .thrive-shortcode-html .tve-ham-wrap .tcb-menu-logo-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html :not(.tve-ham-wrap)>ul.tve_w_menu .tcb-menu-logo-wrap,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-ham-wrap .tcb-menu-logo-wrap{display:none !important;}.thrv_widget_menu[data-tve-switch-icon*=mobile] .thrive-shortcode-html .tve-m-trigger,.mega-menu[data-tve-switch-icon*=desktop] .thrive-shortcode-html .tve-m-trigger{display:block;width:100%;color:#333 !important;}.thrv_widget_menu[data-tve-switch-icon*=mobile].tcb-logo-split .thrive-shortcode-html,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html{display:flex;justify-content:space-between;align-items:center;}.thrv_widget_menu[data-tve-switch-icon*=mobile].tcb-logo-split .thrive-shortcode-html .tcb-hamburger-logo,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tcb-hamburger-logo{display:block;order:var(--tcb-logo-split-order,1);}.thrv_widget_menu[data-tve-switch-icon*=mobile].tcb-logo-split .thrive-shortcode-html .tve-m-trigger,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html .tve-m-trigger{width:auto;order:2;}.thrv_widget_menu[data-tve-switch-icon*=mobile].tcb-logo-split .thrive-shortcode-html ul,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html ul{flex-wrap:wrap !important;}.thrv_widget_menu[data-tve-switch-icon*=mobile].tcb-logo-split .thrive-shortcode-html:after,.mega-menu[data-tve-switch-icon*=desktop].tcb-logo-split .thrive-shortcode-html:after{display:none;}.thrv_widget_menu[data-tve-switch-icon*=mobile].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu:not(.tve-m-expanded),.thrv_widget_menu[data-tve-switch-icon*=mobile].tve-mobile-dropdown .tve-ham-wrap:not(.tve-m-expanded),.mega-menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu:not(.tve-m-expanded),.mega-menu[data-tve-switch-icon*=desktop].tve-mobile-dropdown .tve-ham-wrap:not(.tve-m-expanded){visibility:hidden;display:none;}.thrv_widget_menu[data-tve-switch-icon*=mobile]:not(.tve-custom-menu-switch-icon-mobile) ul,.mega-menu[data-tve-switch-icon*=desktop]:not(.tve-custom-menu-switch-icon-mobile) ul{padding:0 !important;}.thrv_widget_menu [data-item-display-mobile=icon]>a>.m-icon,.thrv_widget_menu [data-item-display-mobile=icon]>.m-icon,.thrv_widget_menu [data-item-display-mobile=icon]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-mobile=icon]>a>.tcb-mm-text .m-icon{display:flex !important;}.thrv_widget_menu [data-item-display-mobile=icon]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=icon]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=icon]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-mobile=icon]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-mobile=icon]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=icon]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=icon]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=icon]>a>.tcb-mm-text>.tve-disabled-text-inner{display:none !important;}.thrv_widget_menu [data-item-display-mobile=icon-text]>a>.m-icon,.thrv_widget_menu [data-item-display-mobile=icon-text]>.m-icon,.thrv_widget_menu [data-item-display-mobile=icon-text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-mobile=icon-text]>a>.tcb-mm-text .m-icon{display:flex !important;}.thrv_widget_menu [data-item-display-mobile=icon-text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=icon-text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=icon-text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-mobile=icon-text]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-mobile=icon-text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=icon-text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=icon-text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=icon-text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}.thrv_widget_menu [data-item-display-mobile=text]>a>.m-icon,.thrv_widget_menu [data-item-display-mobile=text]>.m-icon,.thrv_widget_menu [data-item-display-mobile=text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-mobile=text]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-mobile=text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-mobile=text]>.tcb-mm-image{display:none !important;}.thrv_widget_menu [data-item-display-mobile=text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}.thrv_widget_menu [data-item-display-mobile=image]>a>.m-icon,.thrv_widget_menu [data-item-display-mobile=image]>.m-icon,.thrv_widget_menu [data-item-display-mobile=image]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-mobile=image]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-mobile=image]>.tcb-mm-text,.thrv_widget_menu [data-item-display-mobile=image]>a>.tcb-mm-text{flex-grow:0 !important;}.thrv_widget_menu [data-item-display-mobile=image]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=image]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=image]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-mobile=image]>.tcb-mm-image{display:flex !important;}.thrv_widget_menu [data-item-display-mobile=image]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=image]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=image]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=image]>a>.tcb-mm-text>.tve-disabled-text-inner{display:none !important;}.thrv_widget_menu [data-item-display-mobile=image-text]>a>.m-icon,.thrv_widget_menu [data-item-display-mobile=image-text]>.m-icon,.thrv_widget_menu [data-item-display-mobile=image-text]>.tcb-mm-text .m-icon,.thrv_widget_menu [data-item-display-mobile=image-text]>a>.tcb-mm-text .m-icon{display:none !important;}.thrv_widget_menu [data-item-display-mobile=image-text]>a>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=image-text]>.tcb-menu-item-image,.thrv_widget_menu [data-item-display-mobile=image-text]>a>.tcb-mm-image,.thrv_widget_menu [data-item-display-mobile=image-text]>.tcb-mm-image{display:flex !important;}.thrv_widget_menu [data-item-display-mobile=image-text]>a>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=image-text]>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=image-text]>.tcb-mm-text>.tve-disabled-text-inner,.thrv_widget_menu [data-item-display-mobile=image-text]>a>.tcb-mm-text>.tve-disabled-text-inner{display:inline-block !important;}body.logged-in .thrv_widget_menu .tcb-menu-display-mobile-logged-out{display:none !important;}body:not(.logged-in) .thrv_widget_menu .tcb-menu-display-mobile-logged-in{display:none !important;}:not(#_):not(#_) .thrv_widget_menu .tcb-menu-display-mobile-always{display:block !important;}.thrv_widget_menu[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown :not(.tve-ham-wrap)>ul.tve_w_menu.tve-m-expanded,.thrv_widget_menu[class*=tve-custom-menu-switch-icon-].tve-mobile-dropdown .tve-ham-wrap.tve-m-expanded{max-height:80vh !important;overflow-y:auto;}}.tcb-mega-empty{display:none;}.tve-regular.tcb-mega-std .tcb-mega-empty{display:list-item;opacity:0;visibility:hidden;}.tve-regular.tcb-mega-std:not(#speec) li.lvl-0{margin:0;}.tve-regular.tcb-mega-std:not(#speec) li>a{border-radius:0;position:relative;z-index:2;}.tve-regular.tcb-mega-std:not(#speec) li{position:static;}.tve-regular.tcb-mega-std:not(#speec) ul ul{position:static;box-shadow:none;background:none;}.tve-regular.tcb-mega-std:not(#speec) ul ul ul{display:block;}.tve-regular.tcb-mega-std:not(#speec) ul ul ul ul{display:none;}.tve-regular.tcb-mega-std:not(#speec) .tcb-mega-drop-inner li{cursor:default;overflow:initial;}.tve-regular.tcb-mega-std:not(#speec) .tcb-mega-drop-inner li>a{padding:4px 5px;line-height:1.2em;font-size:15px;margin:0;}.tve-regular.tcb-mega-std:not(#speec) .tcb-mega-drop-inner li>a:hover,.tve-regular.tcb-mega-std:not(#speec) .tcb-mega-drop-inner li>a.tve-state-hover{background:#f2f2f2;}.tve-regular.tcb-mega-std:not(#speec) .tcb-mega-drop-inner>ul{display:flex;align-items:stretch;flex-wrap:wrap;justify-content:flex-start;margin-top:-10px;margin-left:-30px;left:0;}.tve-regular.tcb-mega-std:not(#speec) .tcb-mega-drop-inner>ul>li{margin-top:10px;margin-left:30px;box-sizing:border-box;flex:0 1 100%;max-width:calc(25% - 30px);width:calc(25% - 30px);justify-content:flex-start;}.tve-regular.tcb-mega-std:not(#speec) .tcb-mega-drop-inner>ul>li>a{padding:8px 5px;}.tve-regular.tcb-mega-std:not(#speec) .tcb-mm-container{align-items:stretch;}.tve-regular.tcb-mega-std:not(#speec) .tcb-menu-item-container{align-items:center;}.tve-regular.tcb-mega-std .tcb-mega-drop-inner{overflow:hidden;box-shadow:0 0 3px -1px rgba(0,0,0,.3);background:#fff;padding:20px;margin:0 auto;}.tve-regular.tcb-mega-std .tcb-mega-drop-inner>ul>li{box-sizing:border-box;}.tve-regular.tcb-mega-std .tcb-mega-drop-inner>ul>li>a{font-weight:bold;border-top:1px solid #dedede;}.tve-regular.tcb-mega-std .tcb-mega-drop-inner>ul>li>a .tve-disabled-text-inner{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.tve-regular.tcb-mega-std li:hover{z-index:10;}.tve-regular.tcb-mega-std li li .tve-item-dropdown-trigger{display:none !important;}.tve-regular.tcb-mega-std .tcb-mega-drop{position:absolute;left:-9999em;top:100%;right:auto;z-index:1;width:100%;}.tve-regular.tcb-mega-std li:hover .tcb-mega-drop,.tve-regular.tcb-mega-std li.expand-children .tcb-mega-drop{left:0;right:0;}.tve-regular.tcb-mega-std.da-fade .tcb-mega-drop{opacity:0;left:0;right:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease;}.tve-regular.tcb-mega-std.da-fade li:hover .tcb-mega-drop,.tve-regular.tcb-mega-std.da-fade li.expand-children .tcb-mega-drop{visibility:visible;opacity:1;}.tve-regular.tcb-mega-std.da-slide1 .tcb-mega-drop{left:-15px;right:-15px;top:calc(100% - 1px);width:calc(100% + 30px);visibility:hidden;overflow:hidden;}.tve-regular.tcb-mega-std.da-slide1 .tcb-mega-drop-inner{transform:translateY(-105%);transition:transform .2s,opacity .2s;visibility:visible;opacity:0;margin:1px 15px 15px;}.tve-regular.tcb-mega-std.da-slide1 li:hover .tcb-mega-drop,.tve-regular.tcb-mega-std.da-slide1 li.expand-children .tcb-mega-drop{left:-15px;right:-15px;visibility:visible;}.tve-regular.tcb-mega-std.da-slide1 li:hover .tcb-mega-drop-inner,.tve-regular.tcb-mega-std.da-slide1 li.expand-children .tcb-mega-drop-inner{transform:none;opacity:1;}.tve-regular.tcb-mega-std.da-slide2 .tcb-mega-drop{transition:transform .2s;transform:scaleY(0);transform-origin:top;left:0;right:0;}.tve-regular.tcb-mega-std.da-slide2 li:hover .tcb-mega-drop,.tve-regular.tcb-mega-std.da-slide2 li.expand-children .tcb-mega-drop{transform:scaleY(1);}.tve-regular.tcb-mega-std.da-fold .tcb-mega-drop{left:0;right:0;opacity:0;transform:perspective(400px) rotate3d(1,0,0,-90deg);transition:transform .35s,opacity .35s;transform-origin:top;}@-moz-document url-prefix(){.tve-regular.tcb-mega-std.da-fold .tcb-mega-drop{visibility:hidden;}}.tve-regular.tcb-mega-std.da-fold li:hover .tcb-mega-drop,.tve-regular.tcb-mega-std.da-fold li.expand-children .tcb-mega-drop{opacity:1;transform:perspective(400px) rotate3d(0,0,0,0);}@-moz-document url-prefix(){.tve-regular.tcb-mega-std.da-fold li:hover .tcb-mega-drop,.tve-regular.tcb-mega-std.da-fold li.expand-children .tcb-mega-drop{visibility:visible;}}.tve-regular.tcb-mega-std .thrv_text_element{margin:0 0 8px;padding:0 5px;font-size:15px;}.tve-regular.tcb-mega-std .thrv_text_element:not(#inc) p,.tve-regular.tcb-mega-std .thrv_text_element:not(#inc) a{font-size:14px;margin:0;padding:0;}.tve-regular.tcb-mega-std .tcb-mm-text{flex:1 1 0;}.tve_editor_page .tve-regular.tcb-mega-std .tcb-mm-image.tcb-elem-placeholder{display:flex;justify-content:center;align-items:center;padding:4px;cursor:default;}.tve_editor_page .tve-regular.tcb-mega-std .tcb-mm-image.tcb-elem-placeholder .with-icon{cursor:pointer;padding:8px;line-height:1;justify-content:center;background-image:none;}.tve_editor_page .tve-regular.tcb-mega-std .tcb-mm-image.tcb-elem-placeholder .with-icon.nitro-lazy{background-image:none !important;}.tve_editor_page .tve-regular.tcb-mega-std .tcb-mm-image.tcb-elem-placeholder .tcb-icon{font-size:18px;display:block;}.tve_editor_page .tve-regular.tcb-mega-std .tcb--row .tcb-icon,.tve_editor_page .tve-regular.tcb-mega-std .tcb--row-reverse .tcb-icon{margin-right:0;}.tve_editor_page .tve-regular.tcb-mega-std .tcb--row .tcb-placeholder-text,.tve_editor_page .tve-regular.tcb-mega-std .tcb--row-reverse .tcb-placeholder-text{display:none;}.tve_editor_page .tve-regular.tcb-mega-std .tcb-placeholder-text{font-size:14px;}.tve-regular.tcb-mega-std .tcb-mm-image{background-size:cover;background-position:center center;position:relative;height:45px;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--row{flex-direction:row;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--row .tcb-mm-image{margin-right:8px;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--row-reverse{flex-direction:row-reverse;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--row-reverse .tcb-mm-image{margin-left:8px;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--column{flex-direction:column;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--column .tcb-mm-image{margin-bottom:10px;flex-basis:initial !important;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--column-reverse{flex-direction:column-reverse;}.tve-regular.tcb-mega-std .tcb-mm-container.tcb--column-reverse .tcb-mm-image{margin-top:10px;flex-basis:initial !important;}.tve-regular.tcb-mega-std .tcb--row .tcb-mm-image,.tve-regular.tcb-mega-std .tcb--row-reverse .tcb-mm-image{flex:0 0 45px;width:auto !important;}.tve-regular.tcb-mega-std .tcb--column .tcb-mm-image,.tve-regular.tcb-mega-std .tcb--column-reverse .tcb-mm-image{height:60px;}.tve-regular.tcb-mega-std .tcb--column .tcb-mm-text,.tve-regular.tcb-mega-std .tcb--column-reverse .tcb-mm-text{flex:initial;}.thrv_widget_menu .tcb-mm-image,.thrv_widget_menu .tcb-menu-item-image{background-size:cover;background-position:center center;position:relative;height:45px;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--row,.thrv_widget_menu .tcb--row{flex-direction:row;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--row .tcb-menu-item-image,.thrv_widget_menu .tcb-menu-img-hamburger.tcb--row .m-icon,.thrv_widget_menu .tcb--row .tcb-menu-item-image,.thrv_widget_menu .tcb--row .m-icon{margin-right:8px;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--row-reverse,.thrv_widget_menu .tcb--row-reverse{flex-direction:row-reverse;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--row-reverse .tcb-menu-item-image,.thrv_widget_menu .tcb-menu-img-hamburger.tcb--row-reverse .tcb-mm-image .m-icon,.thrv_widget_menu .tcb--row-reverse .tcb-menu-item-image,.thrv_widget_menu .tcb--row-reverse .tcb-mm-image .m-icon{margin-left:8px;}.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text){flex-direction:row;}.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text) .tcb-menu-item-image,.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text) .m-icon{order:3;margin-left:8px;margin-right:0 !important;}.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text).tcb-mm-container,.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text) .tcb-mm-container{flex-direction:row-reverse;}.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text).tcb-mm-container .tcb-mm-image,.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text) .tcb-mm-container .tcb-mm-image{margin-left:8px;}.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text).tcb-mm-container .m-icon,.thrv_widget_menu .tcb--row-reverse:not(.tcb-menu-img-hamburger):not(.tcb-mm-text) .tcb-mm-container .m-icon{order:0 !important;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--column,.thrv_widget_menu .tcb--column{flex-direction:column;justify-content:center;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--column .tcb-menu-item-image,.thrv_widget_menu .tcb-menu-img-hamburger.tcb--column .tcb-mm-image,.thrv_widget_menu .tcb--column .tcb-menu-item-image,.thrv_widget_menu .tcb--column .tcb-mm-image{flex-basis:auto !important;margin-bottom:10px;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--column .tcb-mm-text,.thrv_widget_menu .tcb--column .tcb-mm-text{flex-basis:auto !important;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--column .m-icon,.thrv_widget_menu .tcb--column .m-icon{margin-right:0 !important;margin-left:0 !important;}.thrv_widget_menu .tcb-menu-img-hamburger.tcb--column .tve-item-dropdown-trigger,.thrv_widget_menu .tcb--column .tve-item-dropdown-trigger{position:absolute;bottom:.5em;right:0;}[class*=tve-custom-menu-switch-icon-].tcb-mega-std .tcb-menu-img-hamburger .tcb--row-reverse .tcb-mm-text{flex-direction:row-reverse;}[class*=tve-custom-menu-switch-icon-].tcb-mega-std .tcb-menu-img-hamburger .tcb--column-reverse .tcb-mm-text{flex-direction:column-reverse;}[class*=tve-custom-menu-switch-icon-].tcb-mega-std .tcb-menu-img-hamburger .tcb--column .tcb-mm-text{flex-direction:column !important;flex-basis:auto !important;}[class*=tve-custom-menu-switch-icon-].tcb-mega-std .tcb-menu-img-hamburger .tcb--column>.tcb-mm-image:not(.tcb-elem-placeholder),[class*=tve-custom-menu-switch-icon-].tcb-mega-std .tcb-menu-img-hamburger .tcb--column-reverse>.tcb-mm-image:not(.tcb-elem-placeholder){width:100%;}.tcb-menu-img-hamburger .tcb--column-reverse,.tcb--column-reverse{flex-direction:column-reverse;justify-content:center;}.tcb-menu-img-hamburger .tcb--column-reverse .tcb-menu-item-image,.tcb-menu-img-hamburger .tcb--column-reverse .tcb-mm-image,.tcb--column-reverse .tcb-menu-item-image,.tcb--column-reverse .tcb-mm-image{flex-basis:auto !important;margin-top:10px;}.tcb-menu-img-hamburger .tcb--column-reverse .m-icon,.tcb--column-reverse .m-icon{margin-right:0 !important;margin-left:0 !important;}.tcb--row .tcb-menu-item-image,.tcb--row-reverse .tcb-menu-item-image{flex:0 0 45px;width:auto;}.tcb-menu-img-hamburger .tcb--column .tcb-mm-text,.tcb-menu-img-hamburger .tcb--column-reverse .tcb-mm-text{flex-basis:auto !important;}.tcb-menu-img-hamburger .tcb-mm-container .tcb-mm-image:not(.tcb-elem-placeholder){display:flex;}.tve-regular.tcb-mega-std li li .tve-disabled-text-inner{padding-right:0 !important;}.tve-regular .tve-ham-wrap>:not(.tve_w_menu){display:none !important;}.tve-regular .menu-item-has-children>.tcb--column .tve-item-dropdown-trigger,.tve-regular .menu-item-has-children>.tcb--column-reverse .tve-item-dropdown-trigger{position:absolute;right:0;}.tve-regular .menu-item-has-children>.tcb--column .tve-disabled-text-inner,.tve-regular .menu-item-has-children>.tcb--column-reverse .tve-disabled-text-inner{padding-right:1.5em;}.tve-regular .menu-item-has-children>.tcb--column .tve-item-dropdown-trigger{bottom:calc(var(--tve-line-height,2em) / 2 - .5em);}.tve-regular .menu-item-has-children>.tcb--column-reverse .tve-item-dropdown-trigger{top:calc(var(--tve-line-height,2em) / 2 - .5em);}body:not(.logged-in) .thrv_widget_menu .tcb-menu-item-image[data-d-f=user],body:not(.logged-in) .thrv_widget_menu .tcb-mm-image[data-d-f=user]{display:none !important;}body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image-text]>a>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image-text]>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image-text]>a>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image-text]>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image]>a>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image]>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image]>a>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-desktop=image]>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image-text]>a>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image-text]>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image-text]>a>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image-text]>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image]>a>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image]>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image]>a>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-tablet=image]>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image-text]>a>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image-text]>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image-text]>a>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image-text]>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image]>a>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image]>.tcb-menu-item-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image]>a>.tcb-mm-image.tcb-elem-placeholder,body:not(.tve_editor_page) .thrv_widget_menu [data-item-display-mobile=image]>.tcb-mm-image.tcb-elem-placeholder{display:none !important;}[class*=tve-custom-menu-switch-icon-].tcb-mega-std .tcb-mm-image{display:none;}[class*=tve-custom-menu-switch-icon-].tcb-mega-std .lvl-1>a .tcb-mm-text{flex:1 1 0;}[class*=tve-custom-menu-switch-icon-].tcb-mega-std .lvl-1>a .tcb-mm-text .m-icon{margin-left:calc(1em - 8px);}[class*=tve-custom-menu-switch-icon-].tcb-mega-std li.lvl-1[data-item-display-desktop=icon]>a .tcb-mm-text,[class*=tve-custom-menu-switch-icon-].tcb-mega-std li.lvl-1[data-item-display-tablet=icon]>a .tcb-mm-text,[class*=tve-custom-menu-switch-icon-].tcb-mega-std li.lvl-1[data-item-display-mobile=icon]>a .tcb-mm-text{flex:unset;}.tcb-mm-text{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;}.tcb-mm-image.tcb-elem-placeholder:not(.edit_mode),.tcb-menu-item-image.tcb-elem-placeholder:not(.edit_mode){outline:1px dashed #969fa6;}.menu-item.thrv_wrapper{margin:0;}.tcb-mega-drop-inner.thrv_wrapper{cursor:default;margin:0;padding:0;}.thrv_widget_menu[class*=tve-custom-menu-switch-icon-] .tcb-mega-drop .thrv_text_element{display:none;}.megamenu-no-items{display:none;}li.tcb-menu-logo-wrap a{min-width:80px;}.tcb-hamburger-logo{display:none;}.thrv_widget_menu:not(#_):not(#_) li button{display:none !important;}.thrv_widget_menu:not(#_):not(#_) li a{--background-image:none;background-image:var(--background-image,none) !important;}.thrv_widget_menu:not(#_):not(#_) path{transition:none !important;}.thrv_widget_menu:not(#_):not(#_) li li li:first-child{margin-top:0 !important;}.thrv_widget_menu:not(#_):not(#_) ul ul ul{padding-top:0 !important;}.thrv_widget_menu:not(#_):not(#_):not(.tcb-mega-std).tve-regular ul.tve_w_menu>li ul{min-width:fit-content;}.thrv_widget_menu:not(#_):not(#_):not(.tcb-mega-std).tve-regular ul.tve_w_menu>li ul li{min-width:fit-content;}.thrv_widget_menu:not(#_):not(#_):not(.tcb-mega-std):not(.tve-regular) .tve-disabled-text-inner{white-space:normal;}:not(.tve-editor-main-content) .thrv_widget_menu:not(#_):not(#_):not(.tve-regular) li>a.tve-jump-scroll{pointer-events:none;}:not(.tve-editor-main-content) .thrv_widget_menu:not(#_):not(#_):not(.tve-regular) li>a.tve-jump-scroll .tve-item-dropdown-trigger{pointer-events:all;}:not(.tve-editor-main-content) .thrv_widget_menu:not(#_):not(#_):not(.tve-regular) .tcb-mega-drop li li>a.tve-jump-scroll{pointer-events:all;}@media only screen and (max-width: 740px){.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container .tve_lg_input_container{padding:0 0 5px 0 !important;width:100% !important;}.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container .tve_lg_input_container .thrv_icon{margin:0 11px 19px 0;}.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container .tve_lg_input_container .thrv_icon.tve_lg_text_icon{margin-top:11px;}.thrv_lead_generation .thrv_lead_generation_container .tve_lg_input_container.tve_lg_select_container .thrv_icon{margin-right:14px;}.thrv_lead_generation.tve_leftBtn,.thrv_lead_generation.tve_centerBtn,.thrv_lead_generation.tve_rightBtn{width:100% !important;float:none !important;}}@media only screen and (max-width: 320px){.thrv_content_container_shortcode .thrv_lead_generation.tve_leftBtn,.thrv_content_container_shortcode .thrv_lead_generation.tve_centerBtn,.thrv_content_container_shortcode .thrv_lead_generation.tve_rightBtn{width:98% !important;}}@keyframes slide-wobble{0%{transform:translateX(30%);opacity:0;}25%{transform:translateX(-15%);}50%{transform:translateX(10%);}75%{transform:translateX(-5%);}100%{transform:translateX(0%);opacity:1;}}@keyframes fade-out{0%{transform:translateX(0%);opacity:1;}25%{transform:translateX(-5%);}100%{transform:translateX(100%);opacity:0;}}.tve-new-radio .tve_lg_radio_wrapper[data-value=default]:hover:not(.tve-state-expanded) .tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper[data-value=default].tve-state-hover .tve-checkmark,.tcb-filter-radio[data-value=default]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-radio[data-value=default].tve-state-hover .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);background-color:#fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=default]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-radio[data-value=default]:not(.tve-state-expanded) input:focus~.tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);background-color:#fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=default].tve-state-expanded,.tcb-filter-radio[data-value=default].tve-state-expanded{background-color:rgba(0,0,0,0);}.tve-new-radio .tve_lg_radio_wrapper[data-value=default].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=default].tve-state-expanded .tve-checkmark{background-color:var(--tcb-local-color-30800);box-shadow:0 0 0 1px var(--tcb-local-color-30800);}.tve-new-radio .tve_lg_radio_wrapper[data-value=default].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=default].tve-state-expanded .tve-checkmark:after{background-color:#fff;border:calc(var(--tcb-radio-size) / 6) solid var(--tcb-local-color-30800);}.tve-new-radio .tve_lg_radio_wrapper[data-value=default] .tve-checkmark,.tcb-filter-radio[data-value=default] .tve-checkmark{background-color:#fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-radio[data-value=style-1]:not(.tve-state-expanded) input:focus~.tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);background:#fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1]:hover:not(.tve-state-expanded),.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1].tve-state-hover,.tcb-filter-radio[data-value=style-1]:hover:not(.tve-state-expanded),.tcb-filter-radio[data-value=style-1].tve-state-hover{background:rgba(0,0,0,0);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1]:hover:not(.tve-state-expanded) .tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1].tve-state-hover .tve-checkmark,.tcb-filter-radio[data-value=style-1]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-radio[data-value=style-1].tve-state-hover .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);background:#fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1]:hover:not(.tve-state-expanded) .tve-checkmark:after,.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1].tve-state-hover .tve-checkmark:after,.tcb-filter-radio[data-value=style-1]:hover:not(.tve-state-expanded) .tve-checkmark:after,.tcb-filter-radio[data-value=style-1].tve-state-hover .tve-checkmark:after{background:var(--tcb-local-color-f2bba);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1].tve-state-expanded,.tcb-filter-radio[data-value=style-1].tve-state-expanded{background:rgba(0,0,0,0);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=style-1].tve-state-expanded .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=style-1].tve-state-expanded .tve-checkmark:after{border:calc(var(--tcb-radio-size) / 6) solid #fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-1] label,.tcb-filter-radio[data-value=style-1] label{border-radius:50px;}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-2] .tve-checkmark,.tcb-filter-radio[data-value=style-2] .tve-checkmark{background-color:rgba(142,142,142,.42);box-shadow:0 0 0 1px rgba(142,142,142,.42);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-2]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-radio[data-value=style-2]:not(.tve-state-expanded) input:focus~.tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-trewq);background-color:var(--tcb-local-color-trewq);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-2]:hover:not(.tve-state-expanded) .tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper[data-value=style-2].tve-state-hover .tve-checkmark,.tcb-filter-radio[data-value=style-2]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-radio[data-value=style-2].tve-state-hover .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-trewq);background-color:var(--tcb-local-color-trewq);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-2].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=style-2].tve-state-expanded .tve-checkmark{background-color:var(--tcb-local-color-trewq);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-2].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=style-2].tve-state-expanded .tve-checkmark:after{width:50%;height:50%;top:50%;left:50%;transform:translate(-50%,-50%);background-color:var(--tcb-local-color-30800);border:calc(var(--tcb-radio-size) / 6) solid var(--tcb-local-color-trewq);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-3] .tve-checkmark,.tcb-filter-radio[data-value=style-3] .tve-checkmark{background-color:#fff;box-shadow:0 0 0 3px #979797;}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-3]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-radio[data-value=style-3]:not(.tve-state-expanded) input:focus~.tve-checkmark{box-shadow:0 0 0 3px var(--tcb-local-color-frty6);background-color:var(--tcb-local-color-f2bba);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-3]:hover:not(.tve-state-expanded) .tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper[data-value=style-3].tve-state-hover .tve-checkmark,.tcb-filter-radio[data-value=style-3]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-radio[data-value=style-3].tve-state-hover .tve-checkmark{box-shadow:0 0 0 3px var(--tcb-local-color-frty6);background-color:var(--tcb-local-color-f2bba);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-3].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=style-3].tve-state-expanded .tve-checkmark{background-color:#fff;box-shadow:0 0 0 3px var(--tcb-local-color-30800);}.tve-new-radio .tve_lg_radio_wrapper[data-value=style-3].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=style-3].tve-state-expanded .tve-checkmark:after{background-color:var(--tcb-local-color-30800);border:calc(var(--tcb-radio-size) / 6) solid #fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-1] .tve-checkmark,.tcb-filter-radio[data-value=gradient-1] .tve-checkmark{box-shadow:0 0 0 1px #afafaf;background:#afafaf;background:linear-gradient(360deg,#afafaf 0%,#fff 100%);background-position:-1px;background-size:auto 110%;}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-1]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-radio[data-value=gradient-1]:not(.tve-state-expanded) input:focus~.tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-30800);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-1]:hover:not(.tve-state-expanded) .tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-1].tve-state-hover .tve-checkmark,.tcb-filter-radio[data-value=gradient-1]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-radio[data-value=gradient-1].tve-state-hover .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-30800);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-1].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=gradient-1].tve-state-expanded .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-frty6);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-1].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-1].tve-state-expanded .tve-checkmark:after{background:radial-gradient(circle at 50% 10%,var(--tcb-local-color-30800) 50%,rgba(80,80,80,.8) 100%);border:calc(var(--tcb-radio-size) / 6) solid #fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-2] .tve-checkmark,.tcb-filter-radio[data-value=gradient-2] .tve-checkmark{box-shadow:0 0 0 1px rgba(175,175,175,.5);background-color:rgba(175,175,175,.5);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-2] .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-2] .tve-checkmark:after{border:1px solid #fff;width:50%;height:50%;top:50%;left:50%;transform:translate(-50%,-50%);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-2]:not(.tve-state-expanded) input:focus~.tve-checkmark:after,.tcb-filter-radio[data-value=gradient-2]:not(.tve-state-expanded) input:focus~.tve-checkmark:after{border-color:var(--tcb-local-color-frty6);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-2]:hover:not(.tve-state-expanded) .tve-checkmark:after,.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-2].tve-state-hover .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-2]:hover:not(.tve-state-expanded) .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-2].tve-state-hover .tve-checkmark:after{border-color:var(--tcb-local-color-frty6);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-2].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=gradient-2].tve-state-expanded .tve-checkmark{background-color:var(--tcb-local-color-30800);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-2].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-2].tve-state-expanded .tve-checkmark:after{background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#fff),color-stop(100%,#c8a7a7));background-image:-moz-linear-gradient(bottom,#c8a7a7 0%,#fff 100%);box-shadow:0 2px 4px 0 rgba(0,0,0,.5);border:calc(var(--tcb-radio-size) / 6) solid var(--tcb-local-color-30800);width:100%;height:100%;top:0;left:0;transform:translate(0,0);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-3] .tve-checkmark,.tcb-filter-radio[data-value=gradient-3] .tve-checkmark{box-shadow:0 0 0 1px rgba(0,0,0,.5);background-color:#fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-3] .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-3] .tve-checkmark:after{box-shadow:inset 0 1px 3px 0 rgba(0,0,0,.5);background-color:rgba(0,0,0,.15);width:50%;height:50%;top:50%;left:50%;transform:translate(-50%,-50%);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-3]:hover:not(.tve-state-expanded) .tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-3].tve-state-hover .tve-checkmark,.tcb-filter-radio[data-value=gradient-3]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-radio[data-value=gradient-3].tve-state-hover .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-3]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-radio[data-value=gradient-3]:not(.tve-state-expanded) input:focus~.tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-3].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=gradient-3].tve-state-expanded .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-3].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-3].tve-state-expanded .tve-checkmark:after{background-image:radial-gradient(circle at 50% 10%,rgba(255,255,255,.2),rgba(46,46,46,.3137254902) 100%),linear-gradient(to bottom,var(--tcb-local-color-30800),var(--tcb-local-color-30800));border:calc(var(--tcb-radio-size) / 6) solid #fff;width:100%;height:100%;top:0;left:0;transform:translate(0,0);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-4] .tve-checkmark,.tcb-filter-radio[data-value=gradient-4] .tve-checkmark{box-shadow:0 0 0 1px rgba(0,0,0,.2);background-color:#fff;}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-4] .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-4] .tve-checkmark:after{box-shadow:inset -1px 1px 2px 0 rgba(0,0,0,.15);background-color:#d8d8d8;width:50%;height:50%;top:50%;left:50%;transform:translate(-50%,-50%);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-4]:hover:not(.tve-state-expanded) .tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-4].tve-state-hover .tve-checkmark,.tcb-filter-radio[data-value=gradient-4]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-radio[data-value=gradient-4].tve-state-hover .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-4]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-radio[data-value=gradient-4]:not(.tve-state-expanded) input:focus~.tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-4].tve-state-expanded .tve-checkmark,.tcb-filter-radio[data-value=gradient-4].tve-state-expanded .tve-checkmark{box-shadow:0 0 0 1px var(--tcb-local-color-flktr);}.tve-new-radio .tve_lg_radio_wrapper[data-value=gradient-4].tve-state-expanded .tve-checkmark:after,.tcb-filter-radio[data-value=gradient-4].tve-state-expanded .tve-checkmark:after{border:calc(var(--tcb-radio-size) / 6) solid #fff;background-image:radial-gradient(circle at 50% 10%,rgba(255,255,255,.2),rgba(102,102,102,.5215686275) 100%),linear-gradient(to bottom,var(--tcb-local-color-30800),var(--tcb-local-color-30800));width:100%;height:100%;top:0;left:0;transform:translate(0,0);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=default] .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6] .tve-checkmark,.tcb-filter-checkbox[data-value=default] .tve-checkmark,.tcb-filter-checkbox[data-value=style-6] .tve-checkmark{padding:1px;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=default]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=default]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-6]:not(.tve-state-expanded) input:focus~.tve-checkmark{background-image:linear-gradient(rgba(255,255,255,.9),rgba(255,255,255,.9));background-color:var(--tcb-local-color-30800);border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=default]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=default].tve-state-hover .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=default]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=default].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-6]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-6].tve-state-hover .tve-checkmark{background-image:linear-gradient(rgba(255,255,255,.9),rgba(255,255,255,.9));background-color:var(--tcb-local-color-30800);border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=default].tve-state-expanded .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=default].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-6].tve-state-expanded .tve-checkmark{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-6]:not(.tve-state-expanded) input:focus~.tve-checkmark{background-image:none;background-color:#fff;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6]:not(.tve-state-expanded) input:focus~.tve-checkmark.nitro-lazy,.tcb-filter-checkbox[data-value=style-6]:not(.tve-state-expanded) input:focus~.tve-checkmark.nitro-lazy{background-image:none !important;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-6]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-6].tve-state-hover .tve-checkmark{background-image:none;background-color:#fff;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6]:hover:not(.tve-state-expanded) .tve-checkmark.nitro-lazy,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-6].tve-state-hover .tve-checkmark.nitro-lazy,.tcb-filter-checkbox[data-value=style-6]:hover:not(.tve-state-expanded) .tve-checkmark.nitro-lazy,.tcb-filter-checkbox[data-value=style-6].tve-state-hover .tve-checkmark.nitro-lazy{background-image:none !important;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-1] .tve-checkmark,.tcb-filter-checkbox[data-value=style-1] .tve-checkmark{background-color:rgba(146,146,146,.3);border:none;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-1]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-1]:not(.tve-state-expanded) input:focus~.tve-checkmark{background-image:linear-gradient(rgba(255,255,255,.66),rgba(255,255,255,.66));background-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-1]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-1].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-1]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-1].tve-state-hover .tve-checkmark{background-image:linear-gradient(rgba(255,255,255,.66),rgba(255,255,255,.66));background-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-1].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-1].tve-state-expanded .tve-checkmark{background-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-1].tve-state-expanded .tve-checkmark svg,.tcb-filter-checkbox[data-value=style-1].tve-state-expanded .tve-checkmark svg{fill:#fff;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-2] .tve-checkmark,.tcb-filter-checkbox[data-value=style-2] .tve-checkmark{border-radius:1px;padding:1px;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-2]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-2]:not(.tve-state-expanded) input:focus~.tve-checkmark{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-2]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-2].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-2]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-2].tve-state-hover .tve-checkmark{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-2].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-2].tve-state-expanded .tve-checkmark{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-3] .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7] .tve-checkmark,.tcb-filter-checkbox[data-value=style-3] .tve-checkmark,.tcb-filter-checkbox[data-value=style-7] .tve-checkmark{border-radius:2px;border:none;padding:4px;background-color:rgba(0,0,0,.125);box-sizing:border-box;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-3] .tve-checkmark:after,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7] .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-3] .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-7] .tve-checkmark:after{content:"";display:block;position:absolute;top:1px;left:1px;width:calc(100% - 2px);height:calc(100% - 2px);background-color:rgba(0,0,0,0);border:2px solid #fff;border-radius:2px;box-sizing:border-box;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-3]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-3]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-7]:not(.tve-state-expanded) input:focus~.tve-checkmark{background-image:linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7));background-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-3]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-3].tve-state-hover .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-3]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-3].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-7]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-7].tve-state-hover .tve-checkmark{background-image:linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7));background-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-3].tve-state-expanded .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-3].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-7].tve-state-expanded .tve-checkmark{background-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-3].tve-state-expanded .tve-checkmark svg,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-expanded .tve-checkmark svg,.tcb-filter-checkbox[data-value=style-3].tve-state-expanded .tve-checkmark svg,.tcb-filter-checkbox[data-value=style-7].tve-state-expanded .tve-checkmark svg{fill:#fff;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7] .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-7] .tve-checkmark:after{background-color:#dfdfdf;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-7]:not(.tve-state-expanded) input:focus~.tve-checkmark{background-image:none;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7]:not(.tve-state-expanded) input:focus~.tve-checkmark.nitro-lazy,.tcb-filter-checkbox[data-value=style-7]:not(.tve-state-expanded) input:focus~.tve-checkmark.nitro-lazy{background-image:none !important;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-7]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-7].tve-state-hover .tve-checkmark{background-image:none;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7]:hover:not(.tve-state-expanded) .tve-checkmark.nitro-lazy,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-hover .tve-checkmark.nitro-lazy,.tcb-filter-checkbox[data-value=style-7]:hover:not(.tve-state-expanded) .tve-checkmark.nitro-lazy,.tcb-filter-checkbox[data-value=style-7].tve-state-hover .tve-checkmark.nitro-lazy{background-image:none !important;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-7].tve-state-expanded .tve-checkmark{padding:2px;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-expanded .tve-checkmark svg,.tcb-filter-checkbox[data-value=style-7].tve-state-expanded .tve-checkmark svg{fill:var(--tcb-local-color-30800);position:relative;z-index:1;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-7].tve-state-expanded .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-7].tve-state-expanded .tve-checkmark:after{background-color:#fff;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-4] .tve-checkmark,.tcb-filter-checkbox[data-value=style-4] .tve-checkmark{border:solid 1px #afafaf;background:#afafaf;background:linear-gradient(to top,#fff 30%,rgba(175,175,175,.45));display:flex;align-items:center;justify-content:center;border-radius:0;padding:2px;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-4]:not(.tve-state-expanded) input:focus~.tve-checkmark,.tcb-filter-checkbox[data-value=style-4]:not(.tve-state-expanded) input:focus~.tve-checkmark{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-4]:hover:not(.tve-state-expanded) .tve-checkmark,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-4].tve-state-hover .tve-checkmark,.tcb-filter-checkbox[data-value=style-4]:hover:not(.tve-state-expanded) .tve-checkmark,.tcb-filter-checkbox[data-value=style-4].tve-state-hover .tve-checkmark{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-4].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-4].tve-state-expanded .tve-checkmark{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-4].tve-state-expanded .tve-checkmark svg,.tcb-filter-checkbox[data-value=style-4].tve-state-expanded .tve-checkmark svg{display:flex;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5] .tve-checkmark,.tcb-filter-checkbox[data-value=style-5] .tve-checkmark{border:none;background-color:rgba(175,175,175,.5);display:flex;align-items:center;justify-content:center;border-radius:3px;padding:0;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5] .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-5] .tve-checkmark:after{content:"";display:block;border:1px solid #fff;border-radius:3px;width:calc(100% - 4px);height:calc(100% - 4px);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5]:not(.tve-state-expanded) input:focus~.tve-checkmark:after,.tcb-filter-checkbox[data-value=style-5]:not(.tve-state-expanded) input:focus~.tve-checkmark:after{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5]:hover:not(.tve-state-expanded) .tve-checkmark:after,.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5].tve-state-hover .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-5]:hover:not(.tve-state-expanded) .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-5].tve-state-hover .tve-checkmark:after{border-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5].tve-state-expanded .tve-checkmark,.tcb-filter-checkbox[data-value=style-5].tve-state-expanded .tve-checkmark{background-color:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5].tve-state-expanded .tve-checkmark svg,.tcb-filter-checkbox[data-value=style-5].tve-state-expanded .tve-checkmark svg{display:flex;position:absolute;padding:3px;box-sizing:border-box;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper[data-value=style-5].tve-state-expanded .tve-checkmark:after,.tcb-filter-checkbox[data-value=style-5].tve-state-expanded .tve-checkmark:after{border:none;background:linear-gradient(to top,#c8a7a7 0%,#fff 100%);box-shadow:0 2px 4px 0 rgba(0,0,0,.5);}.tve_lg_dropdown[data-style=style-1],.tcb-form-dropdown[data-style=style-1],.tve-dynamic-dropdown[data-style=style-1]{border-radius:0;border-color:var(--tcb-local-color-trewq);}.tve_lg_dropdown[data-style=style-1]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-1]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-1]>.tve-lg-dropdown-list{border-radius:0;box-shadow:0 0 4px 0 rgba(0,0,0,.1);border-color:var(--tcb-local-color-poiuy);}.tve_lg_dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-1]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:var(--tcb-local-color-30800,var(--tve-color)) !important;}.tve_lg_dropdown[data-style=style-1].tve-state-expanded>a,.tcb-form-dropdown[data-style=style-1].tve-state-expanded>a,.tve-dynamic-dropdown[data-style=style-1].tve-state-expanded>a{border-color:var(--tcb-local-color-poiuy);}.tve_lg_dropdown[data-style=style-1].tve-state-expanded>a .tve-item-dropdown-trigger:before,.tcb-form-dropdown[data-style=style-1].tve-state-expanded>a .tve-item-dropdown-trigger:before,.tve-dynamic-dropdown[data-style=style-1].tve-state-expanded>a .tve-item-dropdown-trigger:before{background:var(--tve-color,var(--tcb-local-color-poiuy));}.tve_lg_dropdown[data-style=style-1]:after,.tcb-form-dropdown[data-style=style-1]:after,.tve-dynamic-dropdown[data-style=style-1]:after{content:"";position:absolute;border-right:1px solid var(--tcb-local-color-trewq);height:100%;top:0;right:40px;}.tve_lg_dropdown[data-style=style-2],.tcb-form-dropdown[data-style=style-2],.tve-dynamic-dropdown[data-style=style-2]{border-radius:1px;border:1px solid var(--tcb-local-color-f83d7);}.tve_lg_dropdown[data-style=style-2] .tve-item-dropdown-trigger,.tcb-form-dropdown[data-style=style-2] .tve-item-dropdown-trigger,.tve-dynamic-dropdown[data-style=style-2] .tve-item-dropdown-trigger{color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list{margin-top:0 !important;border-radius:0;border:1px solid var(--tcb-local-color-3d798);background-color:#fff;}.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option{background-color:var(--tcb-local-color-a941t);}.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{background-color:var(--tcb-local-color-418a6);}.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-2] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:var(--tcb-local-color-30800,var(--tve-color)) !important;font-weight:600 !important;}.tve_lg_dropdown[data-style=style-3],.tcb-form-dropdown[data-style=style-3],.tve-dynamic-dropdown[data-style=style-3]{background-color:var(--tcb-local-color-30800);color:#fff;border-radius:0;}.tve_lg_dropdown[data-style=style-3]:hover,.tve_lg_dropdown[data-style=style-3].tve-state-active,.tcb-form-dropdown[data-style=style-3]:hover,.tcb-form-dropdown[data-style=style-3].tve-state-active,.tve-dynamic-dropdown[data-style=style-3]:hover,.tve-dynamic-dropdown[data-style=style-3].tve-state-active{background-color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list{margin:0 !important;border-radius:0;box-shadow:0 0 4px 0 var(--tcb-local-color-1ad9d);background:#fff;}.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#fff !important;border-bottom:1px solid var(--tcb-local-color-trewq);background-color:var(--tcb-local-color-poiuy);}.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{background-color:var(--tcb-local-color-30800);font-weight:500;}.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-3]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:#fff !important;}.tve_lg_dropdown[data-style=style-4],.tcb-form-dropdown[data-style=style-4],.tve-dynamic-dropdown[data-style=style-4]{border-radius:1px;background-color:#000;color:#fff;}.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list{border:none;border-radius:0;border-bottom-left-radius:10px;border-bottom-right-radius:10px;background-color:#000;margin-top:0 !important;width:calc(100% + 2px);}.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list::-webkit-scrollbar,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list::-webkit-scrollbar,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list::-webkit-scrollbar{width:6px;}.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list::-webkit-scrollbar-thumb,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list::-webkit-scrollbar-thumb,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list::-webkit-scrollbar-thumb{background:#fff;box-shadow:none;}.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#fff !important;}.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{background-color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-4]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:#fff !important;}.tve_lg_dropdown[data-style=style-5],.tcb-form-dropdown[data-style=style-5],.tve-dynamic-dropdown[data-style=style-5]{border-radius:0;background-color:rgba(0,0,0,.85);color:#fff;}.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list{border-radius:0;background-color:#292929;margin-top:0 !important;border:none;width:calc(100% + 2px);}.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list::-webkit-scrollbar,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list::-webkit-scrollbar,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list::-webkit-scrollbar{width:6px;}.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list::-webkit-scrollbar-thumb,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list::-webkit-scrollbar-thumb,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list::-webkit-scrollbar-thumb{background:#fff;box-shadow:none;}.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#fff !important;border-bottom:1px solid rgba(0,0,0,.32);}.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{background-color:#fff;}.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-5]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:#000 !important;}.tve_lg_dropdown[data-style=style-6],.tcb-form-dropdown[data-style=style-6],.tve-dynamic-dropdown[data-style=style-6]{background-color:#fff;color:#252525;box-shadow:0px 3px 9px 0 rgba(9,24,45,.09);border-radius:0;border-color:#fff !important;}.tve_lg_dropdown[data-style=style-6] svg,.tcb-form-dropdown[data-style=style-6] svg,.tve-dynamic-dropdown[data-style=style-6] svg{fill:#252525;}.tve_lg_dropdown[data-style=style-6]:hover,.tve_lg_dropdown[data-style=style-6].tve-state-active,.tcb-form-dropdown[data-style=style-6]:hover,.tcb-form-dropdown[data-style=style-6].tve-state-active,.tve-dynamic-dropdown[data-style=style-6]:hover,.tve-dynamic-dropdown[data-style=style-6].tve-state-active{color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-6]:hover svg,.tve_lg_dropdown[data-style=style-6].tve-state-active svg,.tcb-form-dropdown[data-style=style-6]:hover svg,.tcb-form-dropdown[data-style=style-6].tve-state-active svg,.tve-dynamic-dropdown[data-style=style-6]:hover svg,.tve-dynamic-dropdown[data-style=style-6].tve-state-active svg{fill:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-6].tve-state-expanded,.tcb-form-dropdown[data-style=style-6].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-6].tve-state-expanded{color:#252525;background-color:#fff;border-bottom-color:rgba(0,0,0,.05) !important;}.tve_lg_dropdown[data-style=style-6].tve-state-expanded svg,.tcb-form-dropdown[data-style=style-6].tve-state-expanded svg,.tve-dynamic-dropdown[data-style=style-6].tve-state-expanded svg{fill:#252525;}.tve_lg_dropdown[data-style=style-6]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-6]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-6]>.tve-lg-dropdown-list{border:none;margin:0 !important;border-radius:0;box-shadow:0px 3px 9px 0 rgba(9,24,45,.09);background-color:#fff;width:calc(100% + 2px);}.tve_lg_dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#252525 !important;background-color:#fff;}.tve_lg_dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-6]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{background-color:rgba(0,0,0,.03);font-weight:500;color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-7],.tcb-form-dropdown[data-style=style-7],.tve-dynamic-dropdown[data-style=style-7]{background-color:#fff;color:#252525;border-radius:0;box-shadow:none;border-color:#ebebeb !important;}.tve_lg_dropdown[data-style=style-7] svg,.tcb-form-dropdown[data-style=style-7] svg,.tve-dynamic-dropdown[data-style=style-7] svg{fill:#252525;}.tve_lg_dropdown[data-style=style-7]:hover,.tve_lg_dropdown[data-style=style-7].tve-state-active,.tcb-form-dropdown[data-style=style-7]:hover,.tcb-form-dropdown[data-style=style-7].tve-state-active,.tve-dynamic-dropdown[data-style=style-7]:hover,.tve-dynamic-dropdown[data-style=style-7].tve-state-active{border-color:var(--tcb-local-color-30800) !important;color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-7]:hover svg,.tve_lg_dropdown[data-style=style-7].tve-state-active svg,.tcb-form-dropdown[data-style=style-7]:hover svg,.tcb-form-dropdown[data-style=style-7].tve-state-active svg,.tve-dynamic-dropdown[data-style=style-7]:hover svg,.tve-dynamic-dropdown[data-style=style-7].tve-state-active svg{fill:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-7].tve-state-expanded,.tcb-form-dropdown[data-style=style-7].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-7].tve-state-expanded{color:#252525;background-color:#fff;border-color:#ebebeb !important;}.tve_lg_dropdown[data-style=style-7].tve-state-expanded svg,.tcb-form-dropdown[data-style=style-7].tve-state-expanded svg,.tve-dynamic-dropdown[data-style=style-7].tve-state-expanded svg{fill:#252525;}.tve_lg_dropdown[data-style=style-7]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-7]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-7]>.tve-lg-dropdown-list{border-color:#ebebeb;border-top:none;box-shadow:none;margin:0 !important;border-radius:0;background:#fff;}.tve_lg_dropdown[data-style=style-7]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-7]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-7]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-7]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-7]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-7]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#252525 !important;background-color:#fff;}.tve_lg_dropdown[data-style=style-8],.tcb-form-dropdown[data-style=style-8],.tve-dynamic-dropdown[data-style=style-8]{background-color:rgba(0,0,0,0);color:#252525;box-shadow:none;border-color:rgba(0,0,0,.12) !important;border-radius:25px !important;}.tve_lg_dropdown[data-style=style-8] svg,.tcb-form-dropdown[data-style=style-8] svg,.tve-dynamic-dropdown[data-style=style-8] svg{fill:#252525;}.tve_lg_dropdown[data-style=style-8]:hover,.tve_lg_dropdown[data-style=style-8].tve-state-active,.tcb-form-dropdown[data-style=style-8]:hover,.tcb-form-dropdown[data-style=style-8].tve-state-active,.tve-dynamic-dropdown[data-style=style-8]:hover,.tve-dynamic-dropdown[data-style=style-8].tve-state-active{color:var(--tcb-local-color-30800);border-color:rgba(0,0,0,.2) !important;}.tve_lg_dropdown[data-style=style-8]:hover svg,.tve_lg_dropdown[data-style=style-8].tve-state-active svg,.tcb-form-dropdown[data-style=style-8]:hover svg,.tcb-form-dropdown[data-style=style-8].tve-state-active svg,.tve-dynamic-dropdown[data-style=style-8]:hover svg,.tve-dynamic-dropdown[data-style=style-8].tve-state-active svg{fill:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-8].tve-state-expanded,.tcb-form-dropdown[data-style=style-8].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-8].tve-state-expanded{border-radius:25px 25px 0 0 !important;color:#252525;border-color:rgba(0,0,0,.12) !important;}.tve_lg_dropdown[data-style=style-8].tve-state-expanded svg,.tcb-form-dropdown[data-style=style-8].tve-state-expanded svg,.tve-dynamic-dropdown[data-style=style-8].tve-state-expanded svg{fill:#252525;}.tve_lg_dropdown[data-style=style-8]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-8]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-8]>.tve-lg-dropdown-list{border-color:rgba(0,0,0,.12) !important;box-shadow:none;margin:0 !important;border-top:none;border-radius:0 0 25px 25px;background-color:#fff;}.tve_lg_dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#252525 !important;background-color:hsla(0,0%,100%,.75);}.tve_lg_dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-8]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{font-weight:500;color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-9],.tcb-form-dropdown[data-style=style-9],.tve-dynamic-dropdown[data-style=style-9]{background-color:rgba(0,0,0,.2);color:#fff !important;box-shadow:none;border-color:rgba(0,0,0,0) !important;border-radius:0;}.tve_lg_dropdown[data-style=style-9]:hover,.tve_lg_dropdown[data-style=style-9].tve-state-active,.tcb-form-dropdown[data-style=style-9]:hover,.tcb-form-dropdown[data-style=style-9].tve-state-active,.tve-dynamic-dropdown[data-style=style-9]:hover,.tve-dynamic-dropdown[data-style=style-9].tve-state-active{background-color:rgba(0,0,0,.16);}.tve_lg_dropdown[data-style=style-9] svg,.tcb-form-dropdown[data-style=style-9] svg,.tve-dynamic-dropdown[data-style=style-9] svg{fill:#fff;}.tve_lg_dropdown[data-style=style-9].tve-state-expanded,.tcb-form-dropdown[data-style=style-9].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-9].tve-state-expanded{background-color:rgba(0,0,0,.2);}.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list{width:calc(100% + 2px);border:none;box-shadow:none;border-radius:0;margin:0 !important;}.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{background-color:rgba(0,0,0,.7);color:#fff !important;}.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{color:#fff !important;font-weight:500;background-color:rgba(0,0,0,.9);}.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-9]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:#fff !important;}.tve_lg_dropdown[data-style=style-10],.tcb-form-dropdown[data-style=style-10],.tve-dynamic-dropdown[data-style=style-10]{background-color:rgba(0,0,0,0);color:#fff;box-shadow:none;border-color:hsla(0,0%,100%,.7) !important;border-radius:0;}.tve_lg_dropdown[data-style=style-10]:hover,.tve_lg_dropdown[data-style=style-10].tve-state-active,.tcb-form-dropdown[data-style=style-10]:hover,.tcb-form-dropdown[data-style=style-10].tve-state-active,.tve-dynamic-dropdown[data-style=style-10]:hover,.tve-dynamic-dropdown[data-style=style-10].tve-state-active{border-color:#fff !important;}.tve_lg_dropdown[data-style=style-10] svg,.tcb-form-dropdown[data-style=style-10] svg,.tve-dynamic-dropdown[data-style=style-10] svg{fill:#fff;}.tve_lg_dropdown[data-style=style-10].tve-state-expanded,.tcb-form-dropdown[data-style=style-10].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-10].tve-state-expanded{border-color:hsla(0,0%,100%,.7) !important;}.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list{border-color:hsla(0,0%,100%,.7) !important;box-shadow:none;border-radius:0;margin:0 !important;border-top:none;}.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{background-color:rgba(37,37,37,.7);color:hsla(0,0%,100%,.75);}.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{font-weight:500;color:#fff;}.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-10]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:#fff !important;}.tve_lg_dropdown[data-style=style-11],.tcb-form-dropdown[data-style=style-11],.tve-dynamic-dropdown[data-style=style-11]{background-color:var(--tcb-local-color-30800);color:#252525;box-shadow:none;border-color:rgba(0,0,0,0) !important;border-radius:25px !important;position:relative;overflow:visible !important;}.tve_lg_dropdown[data-style=style-11] svg,.tcb-form-dropdown[data-style=style-11] svg,.tve-dynamic-dropdown[data-style=style-11] svg{fill:#252525;}.tve_lg_dropdown[data-style=style-11] span,.tcb-form-dropdown[data-style=style-11] span,.tve-dynamic-dropdown[data-style=style-11] span{z-index:90;}.tve_lg_dropdown[data-style=style-11] .tve-item-dropdown-trigger,.tcb-form-dropdown[data-style=style-11] .tve-item-dropdown-trigger,.tve-dynamic-dropdown[data-style=style-11] .tve-item-dropdown-trigger{background-color:hsla(0,0%,100%,.4);border-radius:50%;width:36px;height:36px;position:absolute;right:8px;top:10%;}.tve_lg_dropdown[data-style=style-11]:before,.tcb-form-dropdown[data-style=style-11]:before,.tve-dynamic-dropdown[data-style=style-11]:before{content:"";position:absolute !important;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-color:rgba(0,0,0,0) !important;border-radius:25px;background-color:hsla(0,0%,100%,.9);}.tve_lg_dropdown[data-style=style-11]:hover,.tve_lg_dropdown[data-style=style-11].tve-state-active,.tve_lg_dropdown[data-style=style-11].tve-state-expanded,.tcb-form-dropdown[data-style=style-11]:hover,.tcb-form-dropdown[data-style=style-11].tve-state-active,.tcb-form-dropdown[data-style=style-11].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-11]:hover,.tve-dynamic-dropdown[data-style=style-11].tve-state-active,.tve-dynamic-dropdown[data-style=style-11].tve-state-expanded{color:#fff;}.tve_lg_dropdown[data-style=style-11]:hover:before,.tve_lg_dropdown[data-style=style-11].tve-state-active:before,.tve_lg_dropdown[data-style=style-11].tve-state-expanded:before,.tcb-form-dropdown[data-style=style-11]:hover:before,.tcb-form-dropdown[data-style=style-11].tve-state-active:before,.tcb-form-dropdown[data-style=style-11].tve-state-expanded:before,.tve-dynamic-dropdown[data-style=style-11]:hover:before,.tve-dynamic-dropdown[data-style=style-11].tve-state-active:before,.tve-dynamic-dropdown[data-style=style-11].tve-state-expanded:before{content:none;}.tve_lg_dropdown[data-style=style-11]:hover svg,.tve_lg_dropdown[data-style=style-11].tve-state-active svg,.tve_lg_dropdown[data-style=style-11].tve-state-expanded svg,.tcb-form-dropdown[data-style=style-11]:hover svg,.tcb-form-dropdown[data-style=style-11].tve-state-active svg,.tcb-form-dropdown[data-style=style-11].tve-state-expanded svg,.tve-dynamic-dropdown[data-style=style-11]:hover svg,.tve-dynamic-dropdown[data-style=style-11].tve-state-active svg,.tve-dynamic-dropdown[data-style=style-11].tve-state-expanded svg{fill:#fff;}.tve_lg_dropdown[data-style=style-11]:hover .tve-item-dropdown-trigger,.tve_lg_dropdown[data-style=style-11].tve-state-active .tve-item-dropdown-trigger,.tve_lg_dropdown[data-style=style-11].tve-state-expanded .tve-item-dropdown-trigger,.tcb-form-dropdown[data-style=style-11]:hover .tve-item-dropdown-trigger,.tcb-form-dropdown[data-style=style-11].tve-state-active .tve-item-dropdown-trigger,.tcb-form-dropdown[data-style=style-11].tve-state-expanded .tve-item-dropdown-trigger,.tve-dynamic-dropdown[data-style=style-11]:hover .tve-item-dropdown-trigger,.tve-dynamic-dropdown[data-style=style-11].tve-state-active .tve-item-dropdown-trigger,.tve-dynamic-dropdown[data-style=style-11].tve-state-expanded .tve-item-dropdown-trigger{background-color:hsla(0,0%,100%,.08);}.tve_lg_dropdown[data-style=style-11].tve-state-expanded,.tcb-form-dropdown[data-style=style-11].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-11].tve-state-expanded{border-radius:25px 25px 0 0 !important;}.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list{box-shadow:none;margin:0 !important;border:none !important;border-radius:0 0 25px 25px;background-color:var(--tcb-local-color-30800);width:calc(100% + 2px);}.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#fff !important;background-color:hsla(0,0%,100%,.04);}.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{font-weight:500;background-color:hsla(0,0%,100%,.09);}.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown[data-style=style-11]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:#fff !important;}.tve_lg_dropdown[data-style=style-12],.tcb-form-dropdown[data-style=style-12],.tve-dynamic-dropdown[data-style=style-12]{background-color:rgba(0,0,0,0);color:#252525;box-shadow:none;border-color:rgba(0,0,0,0) !important;border-radius:0;border-bottom:1px solid #e1e1e1 !important;}.tve_lg_dropdown[data-style=style-12] svg,.tcb-form-dropdown[data-style=style-12] svg,.tve-dynamic-dropdown[data-style=style-12] svg{fill:#252525;}.tve_lg_dropdown[data-style=style-12]:hover,.tve_lg_dropdown[data-style=style-12].tve-state-active,.tve_lg_dropdown[data-style=style-12].tve-state-expanded,.tcb-form-dropdown[data-style=style-12]:hover,.tcb-form-dropdown[data-style=style-12].tve-state-active,.tcb-form-dropdown[data-style=style-12].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-12]:hover,.tve-dynamic-dropdown[data-style=style-12].tve-state-active,.tve-dynamic-dropdown[data-style=style-12].tve-state-expanded{color:var(--tcb-local-color-30800);border-bottom-color:var(--tcb-local-color-30800) !important;}.tve_lg_dropdown[data-style=style-12]:hover svg,.tve_lg_dropdown[data-style=style-12].tve-state-active svg,.tve_lg_dropdown[data-style=style-12].tve-state-expanded svg,.tcb-form-dropdown[data-style=style-12]:hover svg,.tcb-form-dropdown[data-style=style-12].tve-state-active svg,.tcb-form-dropdown[data-style=style-12].tve-state-expanded svg,.tve-dynamic-dropdown[data-style=style-12]:hover svg,.tve-dynamic-dropdown[data-style=style-12].tve-state-active svg,.tve-dynamic-dropdown[data-style=style-12].tve-state-expanded svg{fill:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-12]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-12]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-12]>.tve-lg-dropdown-list{box-shadow:none;margin:0 !important;border-radius:0;border:none;background-color:#fff;width:calc(100% + 2px);}.tve_lg_dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#252525 !important;background-color:#fff;}.tve_lg_dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-12]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover{font-weight:500;color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-13],.tcb-form-dropdown[data-style=style-13],.tve-dynamic-dropdown[data-style=style-13]{background-color:#f1f1f1;color:#252525;box-shadow:none;border-color:rgba(0,0,0,0) !important;border-radius:10px !important;}.tve_lg_dropdown[data-style=style-13] svg,.tcb-form-dropdown[data-style=style-13] svg,.tve-dynamic-dropdown[data-style=style-13] svg{fill:#252525;z-index:9;}.tve_lg_dropdown[data-style=style-13] .tve-disabled-text-inner,.tcb-form-dropdown[data-style=style-13] .tve-disabled-text-inner,.tve-dynamic-dropdown[data-style=style-13] .tve-disabled-text-inner{z-index:9;}.tve_lg_dropdown[data-style=style-13]:hover,.tve_lg_dropdown[data-style=style-13].tve-state-active,.tve_lg_dropdown[data-style=style-13].tve-state-expanded,.tcb-form-dropdown[data-style=style-13]:hover,.tcb-form-dropdown[data-style=style-13].tve-state-active,.tcb-form-dropdown[data-style=style-13].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-13]:hover,.tve-dynamic-dropdown[data-style=style-13].tve-state-active,.tve-dynamic-dropdown[data-style=style-13].tve-state-expanded{background-color:var(--tcb-local-color-30800);border-color:rgba(0,0,0,0) !important;color:#252525;}.tve_lg_dropdown[data-style=style-13]:hover:before,.tve_lg_dropdown[data-style=style-13].tve-state-active:before,.tve_lg_dropdown[data-style=style-13].tve-state-expanded:before,.tcb-form-dropdown[data-style=style-13]:hover:before,.tcb-form-dropdown[data-style=style-13].tve-state-active:before,.tcb-form-dropdown[data-style=style-13].tve-state-expanded:before,.tve-dynamic-dropdown[data-style=style-13]:hover:before,.tve-dynamic-dropdown[data-style=style-13].tve-state-active:before,.tve-dynamic-dropdown[data-style=style-13].tve-state-expanded:before{content:"";position:absolute !important;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-color:rgba(0,0,0,0) !important;border-radius:10px;background-color:hsla(0,0%,100%,.9);}.tve_lg_dropdown[data-style=style-13].tve-state-expanded,.tcb-form-dropdown[data-style=style-13].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-13].tve-state-expanded{border-radius:10px 10px 0px 0px !important;}.tve_lg_dropdown[data-style=style-13].tve-state-expanded:before,.tcb-form-dropdown[data-style=style-13].tve-state-expanded:before,.tve-dynamic-dropdown[data-style=style-13].tve-state-expanded:before{border-radius:10px 10px 0px 0px !important;}.tve_lg_dropdown[data-style=style-13] .tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-13] .tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-13] .tve-lg-dropdown-list{box-shadow:none;margin:0 !important;border:none;border-radius:0 0 10px 10px;background-color:#fff;width:calc(100% + 2px);}.tve_lg_dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option{border-color:#fff;color:#252525 !important;background-color:#fff;}.tve_lg_dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-13] .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{font-weight:500;color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-14],.tcb-form-dropdown[data-style=style-14],.tve-dynamic-dropdown[data-style=style-14]{background-color:rgba(0,0,0,0);color:#252525;box-shadow:none;border-color:rgba(0,0,0,0) !important;border-radius:25px !important;position:relative;overflow:visible !important;}.tve_lg_dropdown[data-style=style-14] svg,.tcb-form-dropdown[data-style=style-14] svg,.tve-dynamic-dropdown[data-style=style-14] svg{fill:#fff;}.tve_lg_dropdown[data-style=style-14] .tve-item-dropdown-trigger,.tcb-form-dropdown[data-style=style-14] .tve-item-dropdown-trigger,.tve-dynamic-dropdown[data-style=style-14] .tve-item-dropdown-trigger{background-color:var(--tcb-local-color-30800);border-radius:50%;width:36px;height:36px;position:absolute;right:8px;top:10%;}.tve_lg_dropdown[data-style=style-14] span,.tcb-form-dropdown[data-style=style-14] span,.tve-dynamic-dropdown[data-style=style-14] span{z-index:90;}.tve_lg_dropdown[data-style=style-14]:hover,.tve_lg_dropdown[data-style=style-14].tve-state-active,.tcb-form-dropdown[data-style=style-14]:hover,.tcb-form-dropdown[data-style=style-14].tve-state-active,.tve-dynamic-dropdown[data-style=style-14]:hover,.tve-dynamic-dropdown[data-style=style-14].tve-state-active{background-color:var(--tcb-local-color-30800);border-radius:25px !important;overflow:visible !important;}.tve_lg_dropdown[data-style=style-14]:hover:before,.tve_lg_dropdown[data-style=style-14].tve-state-active:before,.tcb-form-dropdown[data-style=style-14]:hover:before,.tcb-form-dropdown[data-style=style-14].tve-state-active:before,.tve-dynamic-dropdown[data-style=style-14]:hover:before,.tve-dynamic-dropdown[data-style=style-14].tve-state-active:before{content:"";position:absolute !important;left:-2px;top:-2px;width:calc(100% + 4px);height:calc(100% + 4px);border-radius:25px;border-color:rgba(0,0,0,0) !important;background-color:hsla(0,0%,100%,.9);}.tve_lg_dropdown[data-style=style-14].tve-state-expanded,.tcb-form-dropdown[data-style=style-14].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-14].tve-state-expanded{border-radius:25px 25px 0 0 !important;background-color:#fff;}.tve_lg_dropdown[data-style=style-14]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-14]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-14]>.tve-lg-dropdown-list{box-shadow:none;margin:0 !important;border:none;border-radius:0 0 25px 25px;background-color:#fff;width:calc(100% + 2px);}.tve_lg_dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{border-color:#fff;color:#252525 !important;background-color:#fff;}.tve_lg_dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-14]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{font-weight:500;color:var(--tcb-local-color-30800);}.tve_lg_dropdown[data-style=style-15],.tcb-form-dropdown[data-style=style-15],.tve-dynamic-dropdown[data-style=style-15]{background-color:#fff;color:#252525;box-shadow:none;border-color:#e1e1e1 !important;border-radius:4px !important;}.tve_lg_dropdown[data-style=style-15] svg,.tcb-form-dropdown[data-style=style-15] svg,.tve-dynamic-dropdown[data-style=style-15] svg{fill:#252525;}.tve_lg_dropdown[data-style=style-15]:hover,.tve_lg_dropdown[data-style=style-15].tve-state-active,.tcb-form-dropdown[data-style=style-15]:hover,.tcb-form-dropdown[data-style=style-15].tve-state-active,.tve-dynamic-dropdown[data-style=style-15]:hover,.tve-dynamic-dropdown[data-style=style-15].tve-state-active{border-color:var(--tcb-local-color-30800) !important;}.tve_lg_dropdown[data-style=style-15].tve-state-expanded,.tcb-form-dropdown[data-style=style-15].tve-state-expanded,.tve-dynamic-dropdown[data-style=style-15].tve-state-expanded{border-radius:4px 4px 0 0 !important;background-color:#fff;border-color:#e1e1e1 !important;}.tve_lg_dropdown[data-style=style-15]>.tve-lg-dropdown-list,.tcb-form-dropdown[data-style=style-15]>.tve-lg-dropdown-list,.tve-dynamic-dropdown[data-style=style-15]>.tve-lg-dropdown-list{border-top:none !important;box-shadow:none;margin:0 !important;border-color:#e1e1e1;border-radius:0 0 4px 4px;background-color:#fff;}.tve_lg_dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option{color:#252525 !important;background-color:#fff;}.tve_lg_dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown[data-style=style-15]>.tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{font-weight:500;color:var(--tcb-local-color-30800);}.tve_lg_country.tve-hide-country{display:none !important;}.tve_lg_country input[type=text]{background-color:var(--tve-applied-background-color,#fff);border:0;height:100%;}.tve_lg_state.tve-lg-field-disabled{opacity:.5;cursor:default;}.tve_lg_state.tve-lg-state-field-empty{opacity:.5;pointer-events:none;}.tve_lead_generated_inputs_container .tve-lg-dropdown-message-after{background-color:rgba(60,190,199,.5019607843);padding:4px 6px;font-weight:400;font-size:12px;color:rgba(0,0,0,.5);display:block;}.thrv_lead_generation_container .tve_lg_number{flex-wrap:wrap;}.thrv_lead_generation_container .tve_lg_number input{flex:1;max-width:100%;}.thrv_lead_generation_container .tve_lg_number .thrv_field_wrapper{position:relative;display:flex;flex:0 0 100%;}.thrv_lead_generation_container .tve_lg_number .thrv_field_wrapper+.thrv_text_element{flex:0 0 100%;}.thrv_lead_generation_container .tve_lg_date{flex-wrap:wrap;}.thrv_lead_generation_container .tve_lg_date input{flex:1;max-width:100%;}.thrv_lead_generation_container .tve_lg_date .thrv_field_wrapper{position:relative;display:flex;flex:0 0 100%;}.thrv_lead_generation_container .tve_lg_date .thrv_field_wrapper+.thrv_text_element{flex:0 0 100%;}.flatpickr-calendar.tve-lg-date-calendar{width:336px;padding:30px 15px 15px 15px;border:1px solid #d3d4d4;border-radius:5px;box-shadow:0px 8px 20px 0px rgba(25,31,40,.25);font-family:"Roboto",sans-serif;font-size:16px;}.flatpickr-calendar.tve-lg-date-calendar.open{display:block;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-months{margin-top:-11px;margin-bottom:26px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-months .flatpickr-monthDropdown-months,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-months .numInput{font-weight:500;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-months .flatpickr-prev-month,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-months .flatpickr-next-month{display:flex;flex-flow:row;justify-content:center;align-items:center;top:19px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-months .flatpickr-prev-month{left:15px;z-index:1;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-months .flatpickr-next-month{right:15px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-month .flatpickr-current-month .flatpickr-monthDropdown-months{color:#50565f;font-size:18px;line-height:21px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-month .numInputWrapper .numInput{color:#50565f;font-size:18px;line-height:21px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-weekdays{height:auto;margin-bottom:28px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer span.flatpickr-weekday{color:#50565f;font-size:12px;line-height:14px;font-weight:700;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-days{width:100%;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer{width:auto;min-width:unset;max-width:unset;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day{color:#50565f;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected.inRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange.inRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange.inRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected:focus,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange:focus,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange:focus,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected:hover,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange:hover,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange:hover,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected.prevMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange.prevMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange.prevMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected.nextMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange.nextMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange.nextMonthDay{color:#fff;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected.startRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange.startRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange.startRange{border-top-left-radius:8px;border-bottom-left-radius:8px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.selected.endRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.startRange.endRange,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.endRange.endRange{border-top-right-radius:8px;border-bottom-right-radius:8px;}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.flatpickr-disabled,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.flatpickr-disabled:hover,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.prevMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.nextMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.notAllowed,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.notAllowed.prevMonthDay,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.notAllowed.nextMonthDay{color:rgba(80,86,95,.3);}.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.flatpickr-disabled,.flatpickr-calendar.tve-lg-date-calendar .flatpickr-innerContainer .flatpickr-day.flatpickr-disabled:hover{color:rgba(80,86,95,.1);}.flatpickr-calendar.tve-lg-date-calendar.hasTime.noCalendar{padding-top:15px;}.flatpickr-calendar.tve-lg-date-calendar.hasTime .flatpickr-time{border:0;}.flatpickr-calendar.tve-lg-date-calendar.hasTime .flatpickr-time:not(:only-child){margin-top:15px;}.flatpickr-calendar{background:rgba(0,0,0,0);background:#fff;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08);}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible;}.flatpickr-calendar.open{display:inline-block;z-index:9999999;}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);}.flatpickr-calendar.inline{display:block;position:relative;top:2px;}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px);}.flatpickr-calendar.static.open{z-index:999;display:block;}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important;}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0;}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0;}.flatpickr-calendar.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6;}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto;}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid rgba(0,0,0,0);height:0;width:0;left:22px;}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.arrowRight:before,.flatpickr-calendar.rightMost:after,.flatpickr-calendar.arrowRight:after{left:auto;right:22px;}.flatpickr-calendar.arrowCenter:before,.flatpickr-calendar.arrowCenter:after{left:50%;right:50%;}.flatpickr-calendar:before{border-width:5px;margin:0 -5px;}.flatpickr-calendar:after{border-width:4px;margin:0 -4px;}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%;}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6;}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff;}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%;}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6;}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff;}.flatpickr-calendar:focus{outline:0;}.flatpickr-wrapper{position:relative;display:inline-block;}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-months .flatpickr-month{background:rgba(0,0,0,0);color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9);height:34px;line-height:1;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9);}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none;}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative;}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{left:0;}.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{right:0;}.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9;}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747;}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px;}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit;}.flatpickr-calendar .numInputWrapper{position:relative;height:auto;}.flatpickr-calendar .numInputWrapper input,.flatpickr-calendar .numInputWrapper span{display:inline-block;}.flatpickr-calendar .numInputWrapper input{width:100%;}.flatpickr-calendar .numInputWrapper input::-ms-clear{display:none;}.flatpickr-calendar .numInputWrapper input::-webkit-outer-spin-button,.flatpickr-calendar .numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none;}.flatpickr-calendar .numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,.15);-webkit-box-sizing:border-box;box-sizing:border-box;}.flatpickr-calendar .numInputWrapper span:hover{background:rgba(0,0,0,.1);}.flatpickr-calendar .numInputWrapper span:active{background:rgba(0,0,0,.2);}.flatpickr-calendar .numInputWrapper span:after{display:block;content:"";position:absolute;}.flatpickr-calendar .numInputWrapper span.arrowUp{top:0;border-bottom:0;}.flatpickr-calendar .numInputWrapper span.arrowUp:after{border-left:4px solid rgba(0,0,0,0);border-right:4px solid rgba(0,0,0,0);border-bottom:4px solid rgba(57,57,57,.6);top:26%;}.flatpickr-calendar .numInputWrapper span.arrowDown{top:50%;}.flatpickr-calendar .numInputWrapper span.arrowDown:after{border-left:4px solid rgba(0,0,0,0);border-right:4px solid rgba(0,0,0,0);border-top:4px solid rgba(57,57,57,.6);top:40%;}.flatpickr-calendar .numInputWrapper span svg{width:inherit;height:auto;}.flatpickr-calendar .numInputWrapper span svg path{fill:rgba(0,0,0,.5);}.flatpickr-calendar .numInputWrapper:hover{background:rgba(0,0,0,.05);}.flatpickr-calendar .numInputWrapper:hover span{opacity:1;}.flatpickr-calendar .dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;}.flatpickr-calendar .dayContainer+.dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6;}.flatpickr-current-month{font-size:135%;line-height:inherit;line-height:1;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0 0;height:34px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0;}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05);}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch \0;display:inline-block;}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,.9);}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,.9);}.flatpickr-current-month input.cur-year{background:rgba(0,0,0,0);-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-current-month input.cur-year:focus{outline:0;}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,.5);background:rgba(0,0,0,0);pointer-events:none;}.flatpickr-current-month .flatpickr-monthDropdown-months,.thrv_wrapper.thrv_lead_generation .flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist !important;-webkit-appearance:menulist !important;-moz-appearance:menulist !important;background:rgba(0,0,0,0);border:none;border-radius:0;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;box-sizing:border-box !important;-webkit-box-sizing:border-box !important;width:auto;}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none;}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,.05);}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:rgba(0,0,0,0);outline:none;padding:0;}.flatpickr-weekdays{background:rgba(0,0,0,0);text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px;}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;}span.flatpickr-weekday{cursor:default;font-size:90%;background:rgba(0,0,0,0);color:rgba(0,0,0,.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder;}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0;}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px;}.flatpickr-days:focus{outline:0;}.flatpickr-day{background:none;border:1px solid rgba(0,0,0,0);border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6;}.flatpickr-day.today{border-color:#959ea9;}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff;}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7;}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px;}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0;}.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7;}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px;}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,.3);background:rgba(0,0,0,0);border-color:rgba(0,0,0,0);cursor:default;}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,.1);}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;}.flatpickr-day.hidden{visibility:hidden;}.rangeMode .flatpickr-day{margin-top:1px;}.flatpickr-weekwrapper{float:left;}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6;}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px;}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,.3);background:rgba(0,0,0,0);cursor:default;border:none;}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;}.flatpickr-time{text-align:center;outline:0;display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-time:after{content:"";display:table;clear:both;}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left;}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939;}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939;}.flatpickr-time.hasSeconds .numInputWrapper{width:26%;}.flatpickr-time.time24hr .numInputWrapper{width:49%;}.flatpickr-time input{background:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-time input.flatpickr-hour{font-weight:bold;}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400;}.flatpickr-time input:focus{outline:0;border:0;}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400;}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee;}.flatpickr-input[readonly]{cursor:pointer;}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}.flatpickr-current-month{display:flex;align-items:center;justify-content:space-around;padding:0;}@keyframes tcb-loader{from{transform:rotate(0deg);}to{transform:rotate(359deg);}}#tve-lg-error-container{background-color:#f2dede;color:#a94442;border:1px solid #ebccd1;border-radius:1px;box-sizing:border-box !important;padding:4px 10px;position:absolute;z-index:3000000;}#tve-lg-error-container .tve-lg-err-item{line-height:1.2;font-size:14px;}#tve-lg-error-container .tve-lg-err-close{color:#a94442;display:inline-block;font-size:12px;width:12px;height:12px;position:absolute;top:50%;right:10px;margin:-6px 0 0;}#tve-lg-error-container .tve-lg-err-close:hover{text-decoration:none;}.thrv_wrapper.thrv_lead_generation{width:100%;overflow:unset !important;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container{color:#555;--tcb-applied-color:#555;font-family:Roboto,sans-serif;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container label{color:#555;font-family:Roboto,sans-serif;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=email],.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=text],.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=tel],.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=password],.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container textarea{padding:10px 15px;height:auto;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=email]:hover,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=text]:hover,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=tel]:hover,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=password]:hover,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container textarea:hover{border-color:#b7d8d1;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=email]:not(.tcb-plain-text),.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=text]:not(.tcb-plain-text),.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=tel]:not(.tcb-plain-text),.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input[type=password]:not(.tcb-plain-text),.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container textarea:not(.tcb-plain-text){color:#555;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container input::placeholder{font-family:inherit !important;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container select{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:auto;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container select:focus{border-color:#b7d8d1;box-shadow:none;outline:none;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container .tve_lg_radio_wrapper,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container .tve_lg_checkbox_wrapper{width:100%;padding:11px;display:flex !important;align-items:center;overflow:visible !important;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container .tve_lg_radio_wrapper [type=radio]:not(:checked)+label,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container .tve_lg_radio_wrapper [type=radio]:checked+label,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container .tve_lg_checkbox_wrapper [type=radio]:not(:checked)+label,.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container .tve_lg_checkbox_wrapper [type=radio]:checked+label{padding-left:28px;line-height:20px;display:flex;}.thrv_wrapper.thrv_lead_generation .tve_lead_generated_inputs_container .tcb-lg-consent .tve_lg_checkbox_wrapper{padding-top:0;padding-bottom:0;}.thrv_wrapper.thrv_lead_generation{position:relative;box-sizing:border-box;}.thrv_wrapper.thrv_lead_generation.thrv_lead_gen_hover:after{z-index:80;right:0;bottom:0;}.thrv_wrapper.thrv_lead_generation.thrv_lead_gen_hover .edit_mode,.thrv_wrapper.thrv_lead_generation.thrv_lead_gen_hover .tve-state-hover{z-index:90 !important;}.thrv_wrapper.thrv_lead_generation:after{content:"";display:block;position:absolute;top:0;left:0;}.thrv_wrapper.thrv_lead_generation.tve_leftBtn{float:left;}.thrv_wrapper.thrv_lead_generation .tve_submit_container.tve_lg_submit{margin:0;}.thrv_wrapper.thrv_lead_generation .tve_submit_container.tve_lg_submit>button{padding:13px 10px;}.thrv_wrapper.thrv_lead_generation.tve_centerBtn{margin-left:auto !important;margin-right:auto !important;float:none;}.thrv_wrapper.thrv_lead_generation.tve_rightBtn{float:right;}.thrv_wrapper.thrv_lead_generation label>.fr-wrapper{display:inline-block;}.thrv_wrapper.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container{min-width:100%;width:auto;margin-right:-2%;}.thrv_wrapper.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container .tve_lg_input_container{box-sizing:border-box !important;float:left;padding-right:2%;}.thrv_wrapper.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container .tve_lg_input_container.tve_lg_3{width:33.33%;}.thrv_wrapper.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container .tve_lg_input_container.tve_lg_2{width:50%;}.thrv_wrapper.thrv_lead_generation.thrv_lead_generation_horizontal .tve_lead_generated_inputs_container .tve_lg_input_container.tve_lg_select_container .thrv_icon{margin-right:50px;margin-top:10px;}.thrv_wrapper.thrv_lead_generation.thrv_lead_generation_horizontal .tve-captcha-container,.thrv_wrapper.thrv_lead_generation.thrv_lead_generation_horizontal .tve-turnstile-container{min-width:305px !important;margin:0 5px 5px 0;}.thrv_wrapper.thrv_lead_generation .tcb-flex-row{padding-bottom:0;padding-top:0;}.thrv_wrapper.thrv_lead_generation.tve-lead-generation-template .thrv_lead_generation_container .tve_lg_input_container.tve_lg_input{margin:10px 0;}.thrv_wrapper.thrv_lead_generation.tve-lead-generation-template .thrv_lead_generation_container .tve_lg_input_container.tve_lg_input>input{margin:0;}.thrv_wrapper.thrv_lead_generation.tve-lead-generation-template .thrv_lead_generation_container .tve_lg_input_container.tve_lg_textarea{margin:10px 0;}.thrv_wrapper.thrv_lead_generation.tve-lead-generation-template .thrv_lead_generation_container .tve_lg_input_container.tve_lg_textarea>textarea{margin:0;}.tve-lg-error{border-color:rgba(0,0,0,0) !important;box-shadow:0 0 4px #a94442 inset !important;background-repeat:no-repeat;}.thrv_lead_generation_container .tve_lg_input_container.tve_lg_input{display:flex;}.thrv_lead_generation_container .tve_lg_input_container.tve_lg_input>input{flex:1;max-width:100%;}.thrv_lead_generation_container input[type=password],.thrv_lead_generation_container input[type=email],.thrv_lead_generation_container input[type=url],.thrv_lead_generation_container input[type=text],.thrv_lead_generation_container input[type=tel],.thrv_lead_generation_container input[type=number],.thrv_lead_generation_container button,.thrv_lead_generation_container select:not(.flatpickr-monthDropdown-months),.thrv_lead_generation_container textarea{box-sizing:border-box !important;border-style:solid;border-color:#b7d8d1;border-width:1px;float:none !important;max-width:none;width:100% !important;background-color:#f8f9fa;}.thrv_lead_generation_container input[type=password]::placeholder,.thrv_lead_generation_container input[type=email]::placeholder,.thrv_lead_generation_container input[type=url]::placeholder,.thrv_lead_generation_container input[type=text]::placeholder,.thrv_lead_generation_container input[type=tel]::placeholder,.thrv_lead_generation_container input[type=number]::placeholder,.thrv_lead_generation_container button::placeholder,.thrv_lead_generation_container select:not(.flatpickr-monthDropdown-months)::placeholder,.thrv_lead_generation_container textarea::placeholder{opacity:.7;color:inherit !important;}.thrv_lead_generation_container input:hover{background-color:#fff;border-color:#1abc9c;}.thrv_lead_generation_container input[type=image]{box-sizing:border-box;}.thrv_lead_generation_container select{height:auto;}.thrv_lead_generation_container input[type=password],.thrv_lead_generation_container input[type=email],.thrv_lead_generation_container input[type=text],.thrv_lead_generation_container input[type=tel],.thrv_lead_generation_container input[type=url]{outline:none;padding:5px;}.thrv_lead_generation_container button{border-width:0;color:#fff;cursor:pointer;font-size:16px;padding:10px;}.thrv_lead_generation_container .tcb-form-loader{display:none;position:absolute;width:100%;height:100%;top:0;left:0;}span.tcb-form-loader-icon{animation:tcb-loader .7s infinite linear;display:inline-block;font-size:24px;line-height:24px;height:24px;width:24px;position:absolute;top:50%;left:50%;margin:-12px 0 0 -12px;opacity:.7;}.thrv_lead_generation_container .thrv_text_element{position:relative;z-index:1 !important;}.thrv_lead_generation_container .thrv_text_element.tve-hide{display:none !important;}.tve_lg_input_container{position:relative;z-index:1 !important;}.tve_lg_input_container.tcb-lg-consent label{font-size:14px;line-height:1.3em;}.tve_lg_input_container input[type=text],.tve_lg_input_container input[type=email],.tve_lg_input_container input[type=password],.tve_lg_input_container select:not(.flatpickr-monthDropdown-months),.tve_lg_input_container textarea,.tve_lg_input_container button,.tve_lg_input_container.tve_lg_checkbox,.tve_lg_input_container.tve_lg_radio{margin:10px 0;}.tve_lg_input_container textarea{min-height:40px;}.tve_lg_input_container.tve_lg_select_container .thrv_icon{margin-right:10px;}.tve_lg_input_container.tve_lg_checkbox.tve_black label{color:#101010;}.tve_lg_input_container.tve_lg_checkbox.tve_blue label{color:#3e68b2;}.tve_lg_input_container.tve_lg_checkbox.tve_green label{color:#1abc9c;}.tve_lg_input_container.tve_lg_checkbox.tve_orange label{color:#e67e22;}.tve_lg_input_container.tve_lg_checkbox.tve_purple label{color:#8656c1;}.tve_lg_input_container.tve_lg_checkbox.tve_red label{color:#ce271b;}.tve_lg_input_container.tve_lg_checkbox.tve_teal label{color:#387d71;}.tve_lg_input_container.tve_lg_checkbox.tve_white label{color:#d8d8d8;}.tve_lg_input_container.tve_lg_image_submit input[type=image]{max-width:100%;max-height:100%;}.tve_lg_input_container:not(.tve_lg_file):not(.tve-login-form-item) .thrv_icon{transform:translate(-50%,-50%);background:rgba(0,0,0,0);border:0;font-size:25px;position:absolute;right:0;top:47%;z-index:2;margin:0 20px 0 0;}.tve_lg_input_container:not(.tve_lg_file):not(.tve-login-form-item) .thrv_icon .tve_sc_icon{font-size:inherit;height:auto;padding:0;width:auto;}.tve_lg_input_container:not(.tve_lg_file):not(.tve-login-form-item) .thrv_icon.tve_lg_text_icon{bottom:auto;}.tve_lg_input_container.tve_lg_textarea .tve_lg_text_icon{margin-right:0;}.tve_lg_input_container .tve-password-strength-wrapper{width:25%;position:absolute;right:20px;top:50%;transform:translatey(-50%);}.tve_lg_input_container .tve-password-strength-wrapper .tve-password-strength{background-color:#e8e8e8;height:13px;width:24.6%;float:left;margin:3px 0;}.tve_lg_input_container .tve-password-strength-wrapper .tve-password-strength-text{display:none;}.tve_lg_input_container.tcb-plain-text{cursor:unset;}.tve-captcha-container,.tve-turnstile-container{display:table;position:relative;}.tve-captcha-container[data-size],.tve-turnstile-container[data-size]{margin-top:10px;margin-bottom:10px;margin-left:auto;margin-right:auto;--tve-alignment:center;}.thrv_lead_generation_vertical .tve-captcha-container,.thrv_lead_generation_vertical .tve-turnstile-container{margin:0 auto 10px auto;}.thrv_lead_generation_vertical .tve-captcha-container>div>div,.thrv_lead_generation_vertical .tve-turnstile-container>div>div{margin:0 auto 10px auto;}.thrv_lead_generation_vertical .tve-captcha-container.tve-captcha-compact,.thrv_lead_generation_vertical .tve-turnstile-container.tve-captcha-compact{width:158px;}body.rtl .thrv_lead_generation.thrv_lead_generation_horizontal .tve_lg_input_container{float:right;padding-left:2%;padding-right:0;}.thrv_lead_generation [type=radio]:checked,.thrv_lead_generation [type=radio]:not(:checked),.thrv-login-element [type=radio]:checked,.thrv-login-element [type=radio]:not(:checked){position:absolute;opacity:0;}.thrv_lead_generation [type=radio]:checked+label,.thrv_lead_generation [type=radio]:not(:checked)+label,.thrv-login-element [type=radio]:checked+label,.thrv-login-element [type=radio]:not(:checked)+label{position:relative;cursor:pointer;line-height:20px;display:flex;}.thrv_lead_generation [type=radio]:checked+label:before,.thrv_lead_generation [type=radio]:not(:checked)+label:before,.thrv-login-element [type=radio]:checked+label:before,.thrv-login-element [type=radio]:not(:checked)+label:before{content:"";position:absolute;left:0;top:0;width:18px;height:18px;border:1px solid #b9d9d2;border-radius:100%;background:#f8f9fa;transition:all .5s ease;}.thrv_lead_generation [type=radio]:checked:hover+label:before,.thrv_lead_generation [type=radio]:checked+label:before,.thrv_lead_generation [type=radio]:not(:checked):hover+label:before,.thrv-login-element [type=radio]:checked:hover+label:before,.thrv-login-element [type=radio]:checked+label:before,.thrv-login-element [type=radio]:not(:checked):hover+label:before{border-color:#1abc9c;}.thrv_lead_generation [type=radio]:disabled,.thrv-login-element [type=radio]:disabled{border-color:#c2c1c1 !important;}.thrv_lead_generation [type=radio]:disabled+label,.thrv-login-element [type=radio]:disabled+label{color:#c1c0c0 !important;}.thrv_lead_generation [type=radio]:checked+label:after,.thrv_lead_generation [type=radio]:not(:checked)+label:after,.thrv-login-element [type=radio]:checked+label:after,.thrv-login-element [type=radio]:not(:checked)+label:after{content:"";width:12px;height:12px;background:#1abc9c;position:absolute;top:4px;left:4px;border-radius:100%;-webkit-transition:all .2s ease;transition:all .2s ease;}.thrv_lead_generation [type=radio]:not(:checked)+label:after,.thrv-login-element [type=radio]:not(:checked)+label:after{opacity:0;-webkit-transform:scale(0);transform:scale(0);}.thrv_lead_generation [type=radio]:checked+label:after,.thrv-login-element [type=radio]:checked+label:after{opacity:1;-webkit-transform:scale(1);transform:scale(1);}.thrv_lead_generation [type=checkbox],.thrv-login-element [type=checkbox]{position:absolute;opacity:0;}.thrv_lead_generation [type=checkbox]+label,.thrv-login-element [type=checkbox]+label{position:relative;cursor:pointer;padding:0;display:inline-flex;align-items:flex-start;}.thrv_lead_generation [type=checkbox]+label:before,.thrv-login-element [type=checkbox]+label:before{content:"";margin-right:10px;display:inline-block;width:18px;height:18px;flex:0 0 18px;background:#f8f9fa;border:1px solid #b7d8d1;box-sizing:content-box;transition:all .5s ease;}.thrv_lead_generation [type=checkbox]:hover+label:before,.thrv-login-element [type=checkbox]:hover+label:before{background:#fff;border-color:#1abc9c;}.thrv_lead_generation [type=checkbox]:checked+label:before,.thrv-login-element [type=checkbox]:checked+label:before{background:#1abc9c;border-color:#1abc9c;}.thrv_lead_generation [type=checkbox]:disabled+label,.thrv-login-element [type=checkbox]:disabled+label{color:#b8b8b8;cursor:auto;}.thrv_lead_generation [type=checkbox]:disabled+label:before,.thrv-login-element [type=checkbox]:disabled+label:before{box-shadow:none;background:#ddd;}.thrv_lead_generation [type=checkbox]:checked+label:after,.thrv-login-element [type=checkbox]:checked+label:after{content:"";position:absolute;left:5px;top:9px;background:#fff;width:2px;height:2px;box-shadow:2px 0 0 #fff,4px 0 0 #fff,4px -2px 0 #fff,4px -4px 0 #fff,4px -6px 0 #fff,4px -8px 0 #fff;transform:rotate(45deg);}.tve_submit_container .thrv_icon:hover{cursor:pointer;}.tve_lead_generated_inputs_container,.thrv-login-element{--tcb-local-color-30800:#3b88fd;--tcb-local-color-f2bba:rgba(59,136,253,.1);--tcb-local-color-trewq:rgba(59,136,253,.3);--tcb-local-color-poiuy:rgba(59,136,253,.6);--tcb-local-color-f83d7:rgba(59,136,253,.25);--tcb-local-color-3d798:rgba(59,136,253,.4);--tcb-local-color-418a6:rgba(59,136,253,.12);--tcb-local-color-a941t:rgba(59,136,253,.05);--tcb-local-color-1ad9d:rgba(46,204,113,.1);--tcb-local-color-2dbcc:#88e7fd;--tcb-local-color-frty6:rgba(59,136,253,.45);--tcb-local-color-flktr:rgba(59,136,253,.8);--tcb-radio-size:20px;--tcb-checkbox-size:20px;--tve-color:var(--tcb-local-color-30800);}.tve-new-radio .tve_lg_radio_wrapper.tve-updated-dom label,.tve-new-checkbox .tve_lg_checkbox_wrapper.tve-updated-dom label{position:relative !important;}.tve-new-radio .tve_lg_radio_wrapper.tve-updated-dom label .tve-input-option-text,.tve-new-checkbox .tve_lg_checkbox_wrapper.tve-updated-dom label .tve-input-option-text{cursor:pointer;z-index:10;}.tve-new-radio .tve_lg_radio_wrapper label,.tve-new-checkbox .tve_lg_checkbox_wrapper label{line-height:unset !important;color:inherit !important;align-items:center;position:absolute !important;padding-left:0 !important;height:100%;width:100%;z-index:9;}.tve-new-radio .tve_lg_radio_wrapper label:before,.tve-new-radio .tve_lg_radio_wrapper label:after,.tve-new-checkbox .tve_lg_checkbox_wrapper label:before,.tve-new-checkbox .tve_lg_checkbox_wrapper label:after{display:none !important;}.tve-new-radio .tve_lg_radio_wrapper .tve-lg-error:not(:checked)+label:not(:hover)+.tve-checkmark,.tve-new-radio .tve_lg_radio_wrapper .tve-lg-error:not(:checked)+label:not(:hover) .tve-checkmark,.tve-new-checkbox .tve_lg_checkbox_wrapper .tve-lg-error:not(:checked)+label:not(:hover)+.tve-checkmark,.tve-new-checkbox .tve_lg_checkbox_wrapper .tve-lg-error:not(:checked)+label:not(:hover) .tve-checkmark{border-color:rgba(0,0,0,0);box-shadow:0 0 4px #a94442 inset;}.tve-new-radio .tve_lg_radio_wrapper .tve-lg-error:not(:checked)+label:not(:hover)+.tve-checkmark:after,.tve-new-radio .tve_lg_radio_wrapper .tve-lg-error:not(:checked)+label:not(:hover) .tve-checkmark:after,.tve-new-checkbox .tve_lg_checkbox_wrapper .tve-lg-error:not(:checked)+label:not(:hover)+.tve-checkmark:after,.tve-new-checkbox .tve_lg_checkbox_wrapper .tve-lg-error:not(:checked)+label:not(:hover) .tve-checkmark:after{box-shadow:0 0 4px #a94442 inset;}.tve-new-checkbox.tcb-lg-consent label{position:relative !important;cursor:pointer;padding:0;display:flex;align-items:flex-start;}.tve-new-checkbox.tcb-lg-consent label .tve-gdpr-text{cursor:pointer;}.tve-new-radio{position:relative;}.tve-new-radio .tve_lg_radio_wrapper{display:flex;align-items:center;padding:10px 16px;position:relative;}.tve-new-radio .tve_lg_radio_wrapper .tve-checkmark{border-radius:50px;background-color:#fff;position:relative;box-shadow:0 0 0 1px #afafaf;width:var(--tcb-radio-size);height:var(--tcb-radio-size);margin-right:10px;box-sizing:content-box;flex:0 0 auto;}.tve-new-radio .tve_lg_radio_wrapper .tve-checkmark:after{content:"";display:block;border-radius:50px;position:absolute;}.tve-new-radio .tve_lg_radio_wrapper .tve_lg_checkbox_wrapper .tve-checkmark:after{border-radius:0;}.tve-new-radio .tve_lg_radio_wrapper .tve-input-option-text{line-height:1em !important;margin:0 !important;padding:0 !important;word-break:break-word;min-width:10px;}.tve-new-radio .tve_lg_radio_wrapper.tve-state-expanded .tve-checkmark:after{background-color:var(--tcb-local-color-30800);width:100%;height:100%;border:calc(var(--tcb-radio-size) / 6) solid #fff;box-sizing:border-box;position:absolute;top:0;left:0;}.tve-new-radio .tve_lg_radio_wrapper input[type=radio],.tve-new-radio .tve_lg_radio_wrapper input[type=checkbox]{margin:0 10px 3px 0;}.tve-new-radio .tve_lg_radio_wrapper:before,.tve-new-radio .tve_lg_radio_wrapper:after{content:"";}.tve-new-radio .thrv_wrapper.thrv-columns{margin:0;}.tve-new-radio.tve_lg_radio{position:relative;padding:0 1px 0;box-sizing:border-box;margin-top:0;overflow:visible !important;}.tve-new-radio.tve_lg_radio .tve_lg_radio_label{flex:1 1 100%;}.tve-new-radio.tve_lg_radio .tve-radio-grid{display:flex;}@media (max-width: 767px){.tve-new-radio.tve_lg_radio .tve-radio-grid{display:block;width:100%;}.tve-new-radio.tve_lg_radio .tve-radio-grid .tve_lg_radio_wrapper{max-width:100% !important;}}.tve-new-radio.tve_lg_radio.tve-lg-error-multiple:after{display:block;position:absolute;left:16px;bottom:-10px;font-size:16px;color:#aa4443;}.tve-new-radio .tve_lg_checkbox.tcb-lg-consent{margin:0;padding:5px 0;}.tve-new-radio .tve_lg_checkbox.tcb-lg-consent .tve_lg_checkbox_wrapper{margin:0;}.tve-new-radio .tve_lg_checkbox.tcb-lg-consent .tve-checkmark{display:none;}.tcb-edit-mode .tve_lead_generated_inputs_container .tve-input-option-text{z-index:9;}.tve-radio-grid,.tve-checkbox-grid{--h-gutter:25px;--v-gutter:5px;--cols:4;margin-left:-25px;margin-left:calc(-1 * var(--h-gutter));margin-top:-5px;margin-top:calc(-1 * var(--v-gutter));flex-wrap:wrap;}.tcb-lg-consent .tve-checkbox-grid{--v-gutter:0px;}.tcb-lg-consent .tve-checkbox-grid{--cols:1 !important;}.tcb-lg-consent input{display:none;}.tve_lg_radio_wrapper,.tve_lg_checkbox_wrapper{margin-top:5px;margin-top:var(--v-gutter);max-width:23%;max-width:calc(100% / var(--cols) - var(--h-gutter));box-sizing:border-box !important;flex:0 0 23%;flex:0 0 calc(100% / var(--cols));margin-left:25px;margin-left:var(--h-gutter) !important;}.tve_lg_input_container.tve-new-checkbox .tve-checkbox-grid{display:flex;}.tve_lg_input_container.tve-new-checkbox .tve-input-option-text{line-height:1em;margin:0;padding:0;word-break:break-word;min-width:10px;}.tve_lg_input_container.tve-new-checkbox .tve-checkmark{background-color:#fff;position:relative;border:1px solid #afafaf;width:var(--tcb-checkbox-size);height:var(--tcb-checkbox-size);display:inline-block;flex:0 0 auto;margin-right:10px;padding:2px;border-radius:4px;}.tve_lg_input_container.tve-new-checkbox .tve-checkmark svg{width:100%;height:100%;display:none;box-sizing:border-box;fill:var(--tcb-local-color-30800);}.tve_lg_input_container.tve-new-checkbox .tve-state-expanded .tve-checkmark svg{display:block;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper{position:relative;box-sizing:border-box;}@media (max-width: 767px){.tve_lg_input_container.tve-new-checkbox .tve-checkbox-grid{display:block;width:100%;}.tve_lg_input_container.tve-new-checkbox .tve_lg_checkbox_wrapper{max-width:100%;}}.tve_lg_input_container.tve_lg_textarea:not(.tve-lg-show-counter) .tve-lg-textarea-counter,.tve-login-form-item .tve_lg_textarea:not(.tve-lg-show-counter) .tve-lg-textarea-counter{display:none;}.tve_lg_input_container.tve_lg_textarea.no-resize textarea,.tve-login-form-item .tve_lg_textarea.no-resize textarea{resize:none;}.tve_lg_input_container.tve_lg_textarea .tve-lg-textarea-counter,.tve-login-form-item .tve_lg_textarea .tve-lg-textarea-counter{text-align:right;font-size:inherit;}.tve_lg_input_container.tve_lg_textarea textarea,.tve-login-form-item .tve_lg_textarea textarea{outline:none;}:not(#tve) .thrv_text_element.tve-lg-textarea-counter .tve-fill-text-dynamic{pointer-events:none;user-select:none;font-size:inherit;text-align:right;}:not(#tve) .thrv_text_element.tve-lg-textarea-counter .tve-fill-text-dynamic.tve-counter-error{color:red !important;}.tve_lg_dropdown,.tcb-form-dropdown,.tve-dynamic-dropdown{display:flex;flex-wrap:wrap;flex-direction:column;position:relative;background-color:#fff;border:solid 1px rgba(0,0,0,.15);padding:10px;border-radius:10px;margin:10px 0;cursor:pointer !important;--row-height:45px;--rows:3;}.tve_lg_dropdown input,.tcb-form-dropdown input,.tve-dynamic-dropdown input{top:0;left:0;margin:0 !important;cursor:pointer;}.tve_lg_dropdown .tcb-plain-text,.tcb-form-dropdown .tcb-plain-text,.tve-dynamic-dropdown .tcb-plain-text{cursor:pointer;}.tve_lg_dropdown:focus-within,.tcb-form-dropdown:focus-within,.tve-dynamic-dropdown:focus-within{box-shadow:0 2px 4px var(--tcb-local-color-trewq);}.tve_lg_dropdown>a,.tcb-form-dropdown>a,.tve-dynamic-dropdown>a{display:flex;text-decoration:none !important;justify-content:space-between;outline:none;color:inherit;max-width:100%;}.tve_lg_dropdown>a .tve-disabled-text-inner,.tcb-form-dropdown>a .tve-disabled-text-inner,.tve-dynamic-dropdown>a .tve-disabled-text-inner{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.tve_lg_dropdown>a .tve-item-dropdown-trigger,.tcb-form-dropdown>a .tve-item-dropdown-trigger,.tve-dynamic-dropdown>a .tve-item-dropdown-trigger{pointer-events:none;}.tve_lg_dropdown .tve-lg-dropdown-list,.tcb-form-dropdown .tve-lg-dropdown-list,.tve-dynamic-dropdown .tve-lg-dropdown-list{position:absolute;box-sizing:content-box;top:calc(100% + 1px);left:-1px;width:100%;font-family:Rubik,sans-serif;background-color:#fff;cursor:pointer;margin-left:0 !important;padding:0 !important;margin-top:5px !important;list-style-type:none;border:1px solid rgba(0,0,0,.15);border-radius:10px;color:#94a3b0;overflow-y:auto;overflow-x:hidden;visibility:hidden;max-height:calc(var(--rows,3) * var(--row-height) + 10px);}.tve_lg_dropdown .tve-lg-dropdown-list::-webkit-scrollbar,.tcb-form-dropdown .tve-lg-dropdown-list::-webkit-scrollbar,.tve-dynamic-dropdown .tve-lg-dropdown-list::-webkit-scrollbar{width:10px;height:5px;}.tve_lg_dropdown .tve-lg-dropdown-list::-webkit-scrollbar-thumb,.tcb-form-dropdown .tve-lg-dropdown-list::-webkit-scrollbar-thumb,.tve-dynamic-dropdown .tve-lg-dropdown-list::-webkit-scrollbar-thumb{height:12px;border:2px solid rgba(0,0,0,0);background-clip:padding-box;border-radius:7px;background-color:rgba(0,0,0,.15);}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option{padding:10px;margin:0;color:rgba(0,0,0,.6);transition:all .25s ease;position:relative;display:none;}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active{background-color:var(--tcb-local-color-f2bba);}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option.tve-state-active>.tcb-plain-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover>.tcb-plain-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option.tve-state-active>.tcb-plain-text{color:var(--tcb-local-color-30800,var(--tve-color)) !important;}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tve-input-option-text,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tve-input-option-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tve-input-option-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tve-input-option-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tve-input-option-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tve-input-option-text{min-width:10px;display:inline-block;width:100%;overflow-wrap:break-word;}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover .tcb-add-block-below,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover .tcb-add-block-below,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover .tcb-add-block-below,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover .tcb-add-block-below,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:hover .tcb-add-block-below,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:hover .tcb-add-block-below{display:block;}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tcb-add-block-below,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tcb-add-block-below,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tcb-add-block-below,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tcb-add-block-below,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tcb-add-block-below,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tcb-add-block-below{display:none;position:absolute;bottom:0;}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:last-child .tcb-add-block-below,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:last-child .tcb-add-block-below,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:last-child .tcb-add-block-below,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:last-child .tcb-add-block-below,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option:last-child .tcb-add-block-below,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option:last-child .tcb-add-block-below{bottom:20px;}.tve_lg_dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tcb-plain-text,.tve_lg_dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tcb-plain-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tcb-plain-text,.tcb-form-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tcb-plain-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-lg-dropdown-option .tcb-plain-text,.tve-dynamic-dropdown .tve-lg-dropdown-list .tve-dynamic-dropdown-option .tcb-plain-text{color:inherit !important;transition:color .25s ease;}.tve_lg_dropdown.da-fade .tve-lg-dropdown-list,.tcb-form-dropdown.da-fade .tve-lg-dropdown-list,.tve-dynamic-dropdown.da-fade .tve-lg-dropdown-list{opacity:0;}.tve_lg_dropdown.da-fade.tve-state-expanded .tve-lg-dropdown-list,.tcb-form-dropdown.da-fade.tve-state-expanded .tve-lg-dropdown-list,.tve-dynamic-dropdown.da-fade.tve-state-expanded .tve-lg-dropdown-list{opacity:1;}.tve_lg_dropdown.da-slide .tve-lg-dropdown-list,.tcb-form-dropdown.da-slide .tve-lg-dropdown-list,.tve-dynamic-dropdown.da-slide .tve-lg-dropdown-list{transform:scaleY(0);transform-origin:top;}.tve_lg_dropdown.da-slide.tve-state-expanded .tve-lg-dropdown-list,.tcb-form-dropdown.da-slide.tve-state-expanded .tve-lg-dropdown-list,.tve-dynamic-dropdown.da-slide.tve-state-expanded .tve-lg-dropdown-list{transform:scaleY(1);}.tve_lg_dropdown.da-fold .tve-lg-dropdown-list,.tcb-form-dropdown.da-fold .tve-lg-dropdown-list,.tve-dynamic-dropdown.da-fold .tve-lg-dropdown-list{transform:perspective(400) rotate3d(1,0,0,-90deg);transition:transform .35s,opacity .35s;transform-origin:top;}.tve_lg_dropdown.da-fold.tve-state-expanded .tve-lg-dropdown-list,.tcb-form-dropdown.da-fold.tve-state-expanded .tve-lg-dropdown-list,.tve-dynamic-dropdown.da-fold.tve-state-expanded .tve-lg-dropdown-list{transform:perspective(400px) rotate3d(0,0,0,0);}.tve_lg_dropdown.tve-state-expanded,.tcb-form-dropdown.tve-state-expanded,.tve-dynamic-dropdown.tve-state-expanded{z-index:99 !important;overflow:visible !important;}.tve_lg_dropdown.tve-state-expanded .tve-lg-dropdown-trigger svg,.tcb-form-dropdown.tve-state-expanded .tve-lg-dropdown-trigger svg,.tve-dynamic-dropdown.tve-state-expanded .tve-lg-dropdown-trigger svg{transform:rotate(-180deg);}.tve_lg_dropdown.tve-state-expanded .tve-lg-dropdown-list,.tcb-form-dropdown.tve-state-expanded .tve-lg-dropdown-list,.tve-dynamic-dropdown.tve-state-expanded .tve-lg-dropdown-list{visibility:visible;transition:all .3s ease;}.tve_lg_dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve_lg_dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tcb-form-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option,.tcb-form-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-dynamic-dropdown-option,.tve-dynamic-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option,.tve-dynamic-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-dynamic-dropdown-option{display:block;}.tve_lg_dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option-country,.tve_lg_dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option-state,.tcb-form-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option-country,.tcb-form-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option-state,.tve-dynamic-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option-country,.tve-dynamic-dropdown.tve-state-expanded .tve-lg-dropdown-list .tve-lg-dropdown-option-state{font-weight:bold;pointer-events:none;}.tve_lg_dropdown.tve-lg-error,.tcb-form-dropdown.tve-lg-error,.tve-dynamic-dropdown.tve-lg-error{border-radius:6px;}.tve_lg_dropdown.tve-lg-error>a,.tcb-form-dropdown.tve-lg-error>a,.tve-dynamic-dropdown.tve-lg-error>a{box-shadow:0 0 4px #a94442 !important;}.tve_lg_dropdown.tcb-form-input-error:not(#_),.tcb-form-dropdown.tcb-form-input-error:not(#_),.tve-dynamic-dropdown.tcb-form-input-error:not(#_){border-color:rgba(217,43,43,.55) !important;}.tve_lg_file{padding:45px 0;margin:10px 0;}.tve_lg_file .tve-content-box-background{background-color:#f8f9fa;border:solid 1px rgba(0,0,0,.1);box-sizing:border-box;border-radius:2px;box-shadow:0 0 4px 0 rgba(0,0,0,.15);}.tve_lg_file.tve-state-active .tve-content-box-background{border-color:#597eaa;background-color:#e7f1fe;}.tve_lg_file.tcb-form-input-error:not(#_) .tve-content-box-background{border-color:rgba(217,43,43,.55);}.tve_lg_file input[type=file]{display:none;}.tve_lg_file .tcb-file-upload-btn{margin-top:8px;margin-bottom:0;}.tve_lg_file .tcb-default-upload-icon{margin-top:0;margin-bottom:16px;}.tcb-default-upload-icon{font-size:24px;--tve-icon-size:24px;background-color:#8ed1f2;padding:10px !important;border-radius:60px;}.tcb-default-upload-icon svg{color:#fff;}.tcb-file-list .tcb-file-item{position:relative;margin-top:10px;display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;padding:6px 0 8px;}.tcb-file-list .tcb-file-item.tcb-error .progress-bg{width:100% !important;background-color:#f40;}.tcb-file-list .tcb-file-item.tcb-error .tcb-file-info{color:#f40;}.tcb-file-list .tcb-file-item.tcb-done .progress-bg{background-color:#028700;width:100% !important;}.tcb-file-list .tcb-file-item.tcb-uploading .tcb-file-loader{display:block;}.tcb-file-list .tcb-file-item.tcb-uploading .tcb-file-remove{display:none;}.tcb-file-list .tcb-file-loader{display:none;position:relative !important;flex:0 0 16px;height:24px;align-self:stretch;}.tcb-file-list .tcb-file-loader .tcb-form-loader-icon{font-size:16px;line-height:16px;width:16px;height:16px;margin:-8px 0 0 -8px;}.tcb-file-list .tcb-file-icon svg{width:20px;height:auto;}.tcb-file-list .tcb-file-icon svg path{fill:#6d7a86;}.tcb-file-list .tcb-file-info{font-size:16px;line-height:1;letter-spacing:-.12px;max-width:calc(100% - 30px);flex:1 0 auto;display:flex;align-items:center;}.tcb-file-list .tcb-file-name{max-width:calc(100% - 85px);text-overflow:ellipsis;overflow:hidden;white-space:pre;padding-bottom:3px;}.tcb-file-list .tcb-file-size{font-size:14px;color:#94a3b0;flex:0 0 80px;padding-left:5px;box-sizing:border-box;}.tcb-file-list .tcb-upload-progress{position:absolute;left:0;bottom:0;right:0;width:100%;height:4px;background-color:#ccc;border-radius:2px;overflow:hidden;}.tcb-file-list .progress-bg{transition:all .15s ease-in;position:absolute;box-sizing:border-box;top:0;left:0;bottom:0;background-color:#46b2e6;}.tcb-file-list .progress-bg[data-percent="100%"]{background-color:#028700;}.tcb-file-list .tcb-file-remove{border:0;box-shadow:none;background:none;width:auto !important;min-width:0 !important;padding:2px !important;}.tcb-file-list .tcb-file-remove:hover svg path,.tcb-file-list .tcb-file-remove:active svg path{fill:#888;}.tcb-file-list .tcb-file-remove:active,.tcb-file-list .tcb-file-remove:focus{outline:none;}.tve_lg_radio_wrapper .tcb-add-block-below,.tve_lg_checkbox_wrapper .tcb-add-block-below{display:none;bottom:50%;left:100%;transform:translate(-50%);z-index:10;}.tve_lg_radio_wrapper:hover .tcb-add-block-below,.tve_lg_checkbox_wrapper:hover .tcb-add-block-below{display:flex;position:absolute;}.tve_lg_input_container.tve_lg_number .tve-lg-textarea-counter,.tve_lg_input_container.tve_lg_date .tve-lg-textarea-counter{text-align:right;font-size:inherit;}.tve-thrive-sp-container{visibility:hidden;display:none;}.tve_lg_regular_date_input .lg-date-picker{background-color:#fff !important;padding:14px 14px !important;}.tve_lg_input_container.tve_lg_date{display:block !important;}.tve_s_share_count.tve_style_6{display:flex !important;align-items:center;}.tve_s_share_count.tve_style_6 .tve_s_cnt_icon{margin-right:.667em;}.tve_s_share_count.tve_style_6 .tve_s_cnt_icon svg{fill:rgba(0,0,0,.3);width:.875em;height:.938em;}.tve_s_share_count.tve_style_6 .tve_s_cnt{margin:0;padding:0;font-size:1.167em;font-weight:300;line-height:normal;color:rgba(0,0,0,.85);}.tve_s_share_count.tve_style_6 .tve_s_cnt_label{display:none !important;}.tve_s_share_count.tve_style_7{display:flex !important;align-items:center;}.tve_s_share_count.tve_style_7 .tve_s_cnt{margin:0;padding:0;font-size:1.467em;font-weight:300;line-height:normal;color:rgba(0,0,0,.85);}.tve_s_share_count.tve_style_7 .tve_s_cnt_label{display:none !important;}.tve_s_share_count.tve_style_7 .tve_s_cnt_icon{margin-right:.667em;}.tve_s_share_count.tve_style_7 .tve_s_cnt_icon svg{fill:rgba(0,0,0,.21);width:1.125em;height:1.25em;}.tve_s_share_count.tve_style_8{display:flex !important;justify-content:center;align-items:center;margin-right:0;}.tve_s_share_count.tve_style_8 .tve_s_cnt{margin:0;padding:0;font-size:1.458em;margin-right:.4em;font-weight:300;color:#000;}.tve_s_share_count.tve_style_8 .tve_s_cnt_label{margin:0;padding:0;font-size:1.167em;color:rgba(0,0,0,.5);text-transform:capitalize;}.tve_s_share_count.tve_style_9{display:flex !important;align-items:center;margin:0;}.tve_s_share_count.tve_style_9 .tve_s_cnt{margin:0;padding:0;font-size:1.2em;font-weight:800;color:rgba(0,0,0,.85);}.tve_s_share_count.tve_style_9 .tve_s_cnt_label{display:none;}.tve_s_share_count.tve_style_9 .tve_s_cnt_icon{margin-right:.533em;}.tve_s_share_count.tve_style_9 .tve_s_cnt_icon svg{fill:rgba(0,0,0,.21);width:.813em;height:.875em;}.tve_s_share_count.tve_style_10{display:flex !important;align-items:center;}.tve_s_share_count.tve_style_10 .tve_s_cnt{margin:0;padding:0;font-size:.957em;color:#090909;margin-right:.435em;}.tve_s_share_count.tve_style_10 .tve_s_cnt_label{margin:0;padding:0;font-size:.957em;text-transform:uppercase;font-weight:bold;color:#777;}.tve_s_share_count.tve_style_11{display:flex !important;align-items:center;}.tve_s_share_count.tve_style_11 .tve_s_cnt_icon{display:none;}.tve_s_share_count.tve_style_11 .tve_s_cnt_icon svg{fill:#c5c5c5;width:.625em;height:.625em;}.tve_s_share_count.tve_style_11 .tve_s_cnt{margin:0;padding:0;font-size:.686em;color:#000;margin-right:.286em;}.tve_s_share_count.tve_style_11 .tve_s_cnt_label{margin:0;padding:0;font-size:.686em;text-transform:lowercase;font-weight:bold;color:#000;}.tve_s_share_count.tve_style_12{margin:0;display:flex !important;align-items:center;}.tve_s_share_count.tve_style_12 .tve_s_cnt{margin:0;padding:0;font-size:.524em;color:#4a4a4a;margin-right:.238em;}.tve_s_share_count.tve_style_12 .tve_s_cnt_label{margin:0;padding:0;font-size:.405em;text-transform:uppercase;letter-spacing:.43px;color:#c8c8c8;}.tve_s_share_count.tve_style_13{display:flex !important;flex-direction:column;align-items:center;justify-content:center;}.tve_s_share_count.tve_style_13 .tve_s_cnt{margin:0;padding:0;font-size:.697em;color:#090909;}.tve_s_share_count.tve_style_13 .tve_s_cnt_label{margin:0;padding:0;font-size:.441em;text-transform:uppercase;color:#c4c4c4;}.tve_s_share_count.tve_style_14{display:flex !important;justify-content:center;align-items:center;}.tve_s_share_count.tve_style_14 .tve_s_cnt{margin:0;padding:0;font-size:.75em;color:#111;font-weight:bold;margin-right:.25em;}.tve_s_share_count.tve_style_14 .tve_s_cnt_label{margin:0;padding:0;font-size:.75em;color:#7e7e7e;text-transform:capitalize;}.tve_s_share_count.tve_style_15{display:flex !important;}.tve_s_share_count.tve_style_15 .tve_s_cnt{margin:0;padding:0;color:#333;font-size:.889em;margin-right:.278em;}.tve_s_share_count.tve_style_15 .tve_s_cnt_label{margin:0;padding:0;color:#333;font-size:.889em;text-transform:capitalize;font-weight:bold;}.tve_s_share_count.tve_style_15 .tve_s_cnt_icon{display:none;}.tve_s_share_count.tve_style_15 .tve_s_cnt_icon svg{fill:#b9b9b9;width:.688em;height:.813em;}.tve_s_share_count.tve_style_16{display:flex !important;border:solid 1px #dcdcdc;border-radius:5px;}.tve_s_share_count.tve_style_16 .tve_s_cnt{margin:0;padding:0;color:#333;font-size:.738em;margin-right:.238em;}.tve_s_share_count.tve_style_16 .tve_s_cnt_label{margin:0;padding:0;color:#999;font-size:.738em;text-transform:capitalize;}.tve_s_share_count.tve_style_17{display:inline-block;}.tve_s_share_count.tve_style_17 .tve_s_cnt{margin:0;padding:0;color:#333;font-size:.889em;}.tve_s_share_count.tve_style_17 .tve_s_cnt_label{margin:0;padding:0;color:#999;font-size:.611em;text-transform:uppercase;}.tve_s_share_count.tve_style_18{display:inline-block;}.tve_s_share_count.tve_style_18 .tve_s_cnt{margin:0;padding:0;color:#333;font-size:1em;}.tve_s_share_count.tve_style_18 .tve_s_cnt_label{margin:0;padding:0;color:#999;font-size:.778em;text-transform:capitalize;}.tve_s_share_count.tve_style_1,.tve_s_share_count.tve_style_2,.tve_s_share_count.tve_style_3,.tve_s_share_count.tve_style_4,.tve_s_share_count.tve_style_5{display:inline-block;}.tve_social_custom.tve_style_6 .tve_s_icon{font-size:1em;line-height:1em;padding:.778em;}.tve_social_custom.tve_style_6 .tve_s_text{font-size:.8em;padding:0;}.tve_social_custom.tve_style_6 .tve_s_link{font-size:inherit;display:flex;align-items:center;padding:0;}.tve_social_custom.tve_style_6 .tve_s_item{padding:0 1.112em 0 0;margin:.445em .445em .445em 0;border:1px solid;text-transform:uppercase;text-align:center;}.tve_social_custom.tve_style_6 .tve_s_item:hover,.tve_social_custom.tve_style_6 .tve_s_item:active{box-shadow:0px 3px 12px 0 rgba(0,0,0,.12);}.tve_social_custom.tve_style_6.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_6.tve_social_cb .tve_s_item{padding:0;}.tve_social_custom.tve_style_6.tve_social_cb .tve_s_item:not(.tve_s_t_share):not(.tve_s_in_share):not(.tve_s_x_share):not(.tve_s_bluesky_share){min-width:4.933em;}.tve_social_custom.tve_style_6.tve_social_cb .tve_s_count{font-size:.8em;padding:0;}.tve_social_custom.tve_style_6.tve_social_ib .tve_s_item{padding:0;}.tve_social_custom.tve_style_7 .tve_s_link{font-size:inherit;display:flex;justify-content:center;align-items:center;padding:0;}.tve_social_custom.tve_style_7 .tve_s_icon{font-size:1em;line-height:1em;padding:.778em;}.tve_social_custom.tve_style_7 .tve_s_item{margin:.445em .445em .445em 0;padding:0 1.112em 0 0;border-bottom:2px solid;text-transform:uppercase;text-align:center;}.tve_social_custom.tve_style_7 .tve_s_text{font-size:.8em;padding:0px;}.tve_social_custom.tve_style_7.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_7.tve_social_cb .tve_s_count{font-size:.8em;padding-left:0px;}.tve_social_custom.tve_style_8 .tve_s_item{box-shadow:0px 1px 6px 0 rgba(0,0,0,.12);border-radius:100px;margin:.667em .667em .667em 0;padding:.556em .723em .556em .556em;text-transform:capitalize;}.tve_social_custom.tve_style_8 .tve_s_item:hover{box-shadow:0px 2px 16px 0 rgba(0,0,0,.12);}.tve_social_custom.tve_style_8 .tve_s_link{font-size:inherit;padding:0;}.tve_social_custom.tve_style_8 .tve_s_icon{font-size:1em;line-height:1em;border-radius:50%;padding:.334em;margin-right:.667em;}.tve_social_custom.tve_style_8 .tve_s_text{font-size:1em;padding:0;}.tve_social_custom.tve_style_8.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_8.tve_social_cb .tve_s_count{font-size:1em;}.tve_social_custom.tve_style_9 .tve_s_link{font-size:inherit;padding:0;display:flex;flex-direction:column;align-items:center;}.tve_social_custom.tve_style_9 .tve_s_item{padding:0;margin:1.8em 1.8em 1.8em 0;text-transform:lowercase;}.tve_social_custom.tve_style_9 .tve_s_icon{font-size:1em;padding:0;}.tve_social_custom.tve_style_9 .tve_s_text,.tve_social_custom.tve_style_9 .tve_s_count{margin-top:.533em;font-size:.8em;padding:0;line-height:normal;}.tve_social_custom.tve_style_9.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_9.tve_social_cb .tve_s_t_share,.tve_social_custom.tve_style_9.tve_social_cb .tve_s_in_share{vertical-align:top;}.tve_social_custom.tve_style_10 .tve_s_link{font-size:inherit;padding:0;display:flex;align-items:center;}.tve_social_custom.tve_style_10 .tve_s_link:hover{box-shadow:inset 0px -4px 0 0 rgba(0,0,0,.08);}.tve_social_custom.tve_style_10 .tve_s_icon{font-size:1em;line-height:1em;padding:.667em;margin-right:.834em;}.tve_social_custom.tve_style_10 .tve_s_text,.tve_social_custom.tve_style_10 .tve_s_count{font-size:1em;line-height:normal;font-weight:300;}.tve_social_custom.tve_style_10 .tve_s_item{margin:.261em .261em .261em 0px;padding:0 .834em 0 0;text-transform:uppercase;text-align:center;}.tve_social_custom.tve_style_10.tve_social_itb .tve_s_icon{border-right:1px solid rgba(0,0,0,.1);}.tve_social_custom.tve_style_10.tve_social_itb .tve_s_item:active .tve_s_icon{border-right:1px solid hsla(0,0%,100%,.5);}.tve_social_custom.tve_style_10.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_10.tve_social_cb .tve_s_item:not(.tve_s_t_share):not(.tve_s_in_share){border-right:1px solid rgba(0,0,0,.1);}.tve_social_custom.tve_style_10.tve_social_cb .tve_s_item:not(.tve_s_t_share):not(.tve_s_in_share):active{border-right:1px solid hsla(0,0%,100%,.5);}.tve_social_custom.tve_style_10.tve_social_cb .tve_s_item{padding:0;}.tve_social_custom.tve_style_10.tve_social_cb .tve_s_item .tve_s_icon{margin-right:0;}.tve_social_custom.tve_style_10.tve_social_ib .tve_s_item{padding:0;}.tve_social_custom.tve_style_10.tve_social_ib .tve_s_item .tve_s_icon{margin-right:0;}.tve_social_custom.tve_style_11 .tve_s_item{vertical-align:top;position:relative;text-transform:uppercase;}.tve_social_custom.tve_style_11 .tve_s_item .tve_s_link{display:flex;flex-direction:column;font-size:1.25em;}.tve_social_custom.tve_style_11 .tve_s_item .tve_s_link .tve_s_icon{line-height:1em;padding:.7em;box-shadow:-.6px 11px 27px 0 rgba(0,0,0,.1);background:#fff;border-radius:50%;margin:0 auto;}.tve_social_custom.tve_style_11 .tve_s_item .tve_s_link .tve_s_icon:hover{box-shadow:-.6px 11px 27px 0 rgba(0,0,0,.18);}.tve_social_custom.tve_style_11 .tve_s_item .tve_s_link .tve_s_icon:after{border-top:.3em solid #fff;border-left:.3em solid rgba(0,0,0,0);border-right:.3em solid rgba(0,0,0,0);content:"";display:block;position:absolute;top:calc(78% + .3em);}.tve_social_custom.tve_style_11.tve_social_itb .tve_s_text{font-size:.5em;text-align:center;padding:10px 0 0 0;color:#111;}.tve_social_custom.tve_style_11.tve_social_itb .tve_s_icon:after{top:calc(50% + .3em) !important;}.tve_social_custom.tve_style_11.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_11.tve_social_cb .tve_s_count{font-size:.5em;text-transform:uppercase;text-align:center;padding:10px 0 0 0;color:#111;}.tve_social_custom.tve_style_11.tve_social_cb .tve_s_item:not(.tve_s_t_share):not(.tve_s_in_share) .tve_s_icon:after{top:calc(50% + .3em) !important;}.tve_social_custom.tve_style_12{display:flex !important;}.tve_social_custom.tve_style_12 .tve_s_link{padding:0;font-size:inherit;display:flex;flex-direction:column;align-items:center;}.tve_social_custom.tve_style_12 .tve_s_icon{font-size:1em;line-height:1em;padding:.75em;}.tve_social_custom.tve_style_12 .tve_s_item{padding:0;margin:0;padding-top:.625em;padding-bottom:.625em;border-top:4px solid #fff;border-bottom:4px solid #fff;display:flex !important;align-items:center;justify-content:center;margin-right:1.0625em;text-transform:uppercase;}.tve_social_custom.tve_style_12 .tve_s_item:first-child{margin-left:1.0625em;}.tve_social_custom.tve_style_12 .tve_s_text,.tve_social_custom.tve_style_12 .tve_s_count{color:#c8c8c8;font-size:.452em;line-height:normal;padding:0;text-align:center;}.tve_social_custom.tve_style_12.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_13{display:flex !important;flex-wrap:wrap;}.tve_social_custom.tve_style_13 .tve_s_link{font-size:inherit;padding:0;display:flex;flex-direction:column;align-items:center;justify-content:center;}.tve_social_custom.tve_style_13 .tve_s_icon{font-size:1em;line-height:1em;padding:0;}.tve_social_custom.tve_style_13 .tve_s_item{padding:.888em 1em;display:flex !important;justify-content:center;align-items:center;margin:.1667em 1.667em 1.667em .1667em;text-transform:uppercase;}.tve_social_custom.tve_style_13 .tve_s_text,.tve_social_custom.tve_style_13 .tve_s_count{margin-top:.667em;font-size:.455em;line-height:normal;color:#c4c4c4;padding:0;}.tve_social_custom.tve_style_13.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_14{display:flex !important;flex-wrap:wrap;}.tve_social_custom.tve_style_14 .tve_s_link{font-size:inherit;margin-right:auto;color:#111 !important;padding:0;display:flex;align-items:center;}.tve_social_custom.tve_style_14 .tve_s_icon{font-size:1em;margin:0;padding:0;}.tve_social_custom.tve_style_14 .tve_s_item{margin:0;display:flex !important;justify-content:center;border:solid 1px;padding:1em 2em;margin-left:-1px;margin-top:-1px;text-transform:uppercase;}.tve_social_custom.tve_style_14 .tve_s_text,.tve_social_custom.tve_style_14 .tve_s_count{font-size:.6em;text-align:center;padding:0;line-height:normal;}.tve_social_custom.tve_style_14 .tve_s_count{color:#333;}.tve_social_custom.tve_style_14.tve_social_itb .tve_s_icon,.tve_social_custom.tve_style_14.tve_social_cb .tve_s_icon{margin-right:.75em;}.tve_social_custom.tve_style_14.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_15{display:flex !important;flex-wrap:wrap;}.tve_social_custom.tve_style_15 .tve_s_link{padding:0;display:flex;flex-direction:column;align-items:center;color:inherit;}.tve_social_custom.tve_style_15 .tve_s_icon{font-size:1em;padding:1em;}.tve_social_custom.tve_style_15 .tve_s_item{padding:0;margin:.5em .944em .5em 0;text-transform:uppercase;}.tve_social_custom.tve_style_15 .tve_s_text,.tve_social_custom.tve_style_15 .tve_s_count{padding:0;font-size:.611em;font-weight:600;width:100%;text-align:center;}.tve_social_custom.tve_style_15.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_16{display:flex !important;flex-wrap:wrap;}.tve_social_custom.tve_style_16 .tve_s_link{padding:0;display:flex;flex-direction:row;align-items:center;}.tve_social_custom.tve_style_16 .tve_s_icon{font-size:1em;padding:.5em;}.tve_social_custom.tve_style_16 .tve_s_item{padding:0 1.478em 0 0;margin:.238em .381em .238em 0;border-radius:5px;text-transform:capitalize;}.tve_social_custom.tve_style_16 .tve_s_text,.tve_social_custom.tve_style_16 .tve_s_count{padding:0;font-size:.762em;font-weight:500;}.tve_social_custom.tve_style_16.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_16.tve_social_cb .tve_s_item.tve_s_t_share,.tve_social_custom.tve_style_16.tve_social_cb .tve_s_item.tve_s_in_share{padding:0;}.tve_social_custom.tve_style_16.tve_social_cb .tve_s_count{min-width:1.429em;height:1.429em;display:flex;align-items:center;justify-content:center;padding:.14em;}.tve_social_custom.tve_style_16.tve_social_ib .tve_s_item{padding:0;}.tve_social_custom.tve_style_17{display:flex !important;flex-wrap:wrap;}.tve_social_custom.tve_style_17 .tve_s_link{padding:0;display:flex;flex-direction:row;align-items:center;}.tve_social_custom.tve_style_17 .tve_s_icon{font-size:1em;padding:.5em;margin-right:.727em;}.tve_social_custom.tve_style_17 .tve_s_item{padding:0;margin:.389em .833em .389em 0;text-transform:uppercase;}.tve_social_custom.tve_style_17 .tve_s_text,.tve_social_custom.tve_style_17 .tve_s_count{padding:0;font-size:.611em;font-weight:500;color:#999;}.tve_social_custom.tve_style_17.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_17.tve_social_cb .tve_s_count{min-width:1.429em;height:1.429em;display:flex;align-items:center;justify-content:center;padding:.14em;}.tve_social_custom.tve_style_18{display:flex !important;flex-wrap:wrap;}.tve_social_custom.tve_style_18 .tve_s_link{padding:0;display:flex;flex-direction:column;align-items:center;}.tve_social_custom.tve_style_18 .tve_s_icon{font-size:1em;padding:1em;color:inherit;}.tve_social_custom.tve_style_18 .tve_s_item{padding:0;margin:.778em 1.778em .778em 0;text-transform:capitalize;text-align:center;}.tve_social_custom.tve_style_18 .tve_s_text,.tve_social_custom.tve_style_18 .tve_s_count{padding:0;font-size:.778em;color:#999;}.tve_social_custom.tve_style_18.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_18.tve_social_cb .tve_s_count{min-width:1.429em;height:1.429em;display:flex;align-items:center;justify-content:center;padding:.14em;}.tve_social_custom.tve_style_1{font-size:22px;}.tve_social_custom.tve_style_1 .tve_s_link{font-size:inherit;padding:2px;}.tve_social_custom.tve_style_1 .tve_s_item{border-radius:50px;}.tve_social_custom.tve_style_1 .tve_s_text{text-shadow:0 1px 1px rgba(0,0,0,.11);}.tve_social_custom.tve_style_1 .tve_s_icon{border-radius:50px;background:#fff;font-size:1.227em;display:flex;justify-content:space-between;align-items:center;height:1.778em;line-height:1em;width:1.778em;}.tve_social_custom.tve_style_1 .tve_s_icon.thrv_wrapper{margin:0;}.tve_social_custom.tve_style_1 .tve_s_icon svg{margin:0 auto;}.tve_social_custom.tve_style_1 .tve_s_item.tve_share_item{padding-right:20px;}.tve_social_custom.tve_style_1 .tve_s_item.tve_share_item .tve_s_icon{width:unset;height:unset;padding:.409em;margin-right:10px;}.tve_social_custom.tve_style_1 .tve_s_item.tve_share_item .tve_s_text,.tve_social_custom.tve_style_1 .tve_s_item.tve_share_item .tve_s_count{padding:0;}.tve_social_custom.tve_style_1.tve_social_itb .tve_s_icon{box-shadow:0 2px 3px 0 rgba(0,0,0,.25);}.tve_social_custom.tve_style_1.tve_social_ib .tve_s_icon{background:rgba(0,0,0,0);}.tve_social_custom.tve_style_1.tve_social_ib .tve_s_item.tve_share_item{padding-right:0;}.tve_social_custom.tve_style_1.tve_social_ib .tve_s_item.tve_share_item .tve_s_icon{margin-right:0;}.tve_social_custom.tve_style_1.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item,.tve_social_custom.tve_style_1.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item{padding-right:0;}.tve_social_custom.tve_style_1.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item .tve_s_icon,.tve_social_custom.tve_style_1.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item .tve_s_icon{margin-right:0;}.tve_social_custom.tve_style_1.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_2{font-size:24px;}.tve_social_custom.tve_style_2 .tve_s_link{color:#fff !important;font-size:inherit;}.tve_social_custom.tve_style_2 .tve_s_item{border-radius:5px;}.tve_social_custom.tve_style_2 .tve_s_icon{font-size:1.167em;height:1.714em;line-height:1em;width:1.714em;}.tve_social_custom.tve_style_2 .tve_s_text{text-shadow:0 1px 1px rgba(0,0,0,.11);}.tve_social_custom.tve_style_2 .tve_s_item.tve_share_item .tve_s_icon{width:unset;height:unset;padding:.363em;}.tve_social_custom.tve_style_2.tve_social_itb .tve_s_item.tve_share_item{padding-right:20px;}.tve_social_custom.tve_style_2.tve_social_itb .tve_s_item.tve_share_item .tve_s_icon{margin-right:10px;}.tve_social_custom.tve_style_2.tve_social_itb .tve_s_item.tve_share_item .tve_s_text{padding:0;}.tve_social_custom.tve_style_2.tve_social_itb .tve_s_icon{border-right:1px solid hsla(0,0%,100%,.08);box-shadow:1px 0 0 0 rgba(0,0,0,.15);}.tve_social_custom.tve_style_2.tve_social_cb .tve_s_count{border-top-right-radius:5px;border-bottom-right-radius:5px;box-shadow:1px 0 0 1px #ccc;border-left:1px solid #ccc;background:#fff;color:#333;padding:0 15px;position:relative;}.tve_social_custom.tve_style_2.tve_social_cb .tve_s_count:before{border-top:8px solid rgba(0,0,0,0);border-bottom:8px solid rgba(0,0,0,0);border-right:8px solid #fff;content:"";display:block;height:0;margin:auto 0;position:absolute;top:0;bottom:0;left:-8px;width:0;}.tve_social_custom.tve_style_2.tve_social_cb .tve_s_item.tve_share_item{padding-right:0;}.tve_social_custom.tve_style_2.tve_social_cb .tve_s_item.tve_share_item .tve_s_icon{margin-right:10px;}.tve_social_custom.tve_style_3{font-size:24px;}.tve_social_custom.tve_style_3 .tve_s_link{color:#fff !important;font-size:inherit;}.tve_social_custom.tve_style_3 .tve_s_text{text-shadow:1px 1px 1px rgba(0,0,0,.11);}.tve_social_custom.tve_style_3 .tve_s_icon{font-size:1.167em;height:1.714em;line-height:1em;text-shadow:3px 3px 0 rgba(0,0,0,.11);width:1.714em;}.tve_social_custom.tve_style_3 .tve_s_item{border-radius:5px;}.tve_social_custom.tve_style_3 .tve_s_item:active{box-shadow:0 -3px 0 0 rgba(0,0,0,.15) inset;}.tve_social_custom.tve_style_3.tve_social_cb .tve_s_text{display:none;}.tve_social_custom.tve_style_3 .tve_s_item.tve_share_item .tve_s_icon{width:unset;height:unset;padding:.405em;}.tve_social_custom.tve_style_3.tve_social_itb .tve_s_item.tve_share_item,.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_share_item{padding-right:20px;}.tve_social_custom.tve_style_3.tve_social_itb .tve_s_item.tve_share_item .tve_s_icon,.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_share_item .tve_s_icon{margin-right:10px;}.tve_social_custom.tve_style_3.tve_social_itb .tve_s_item.tve_share_item .tve_s_text,.tve_social_custom.tve_style_3.tve_social_itb .tve_s_item.tve_share_item .tve_s_count,.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_share_item .tve_s_text,.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_share_item .tve_s_count{padding:0;}.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item,.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item{padding-right:0;}.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item .tve_s_icon,.tve_social_custom.tve_style_3.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item .tve_s_icon{margin-right:0;}.tve_social_custom.tve_style_4{font-size:22px;}.tve_social_custom.tve_style_4 .tve_s_item{padding:0;border-radius:3px;}.tve_social_custom.tve_style_4 .tve_s_link{display:flex;color:#fff !important;font-size:inherit;padding:0;}.tve_social_custom.tve_style_4 .tve_s_icon{justify-content:center;border-top-left-radius:3px;border-bottom-left-radius:3px;color:rgba(0,0,0,.5);font-size:1.25em;line-height:1em;height:1.923em;width:1.923em;}.tve_social_custom.tve_style_4 .tve_s_text{display:flex;justify-content:center;align-items:center;border-top-right-radius:3px;border-bottom-right-radius:3px;}.tve_social_custom.tve_style_4 .tve_s_item.tve_share_item .tve_s_icon{width:unset;height:unset;padding:.41em;}.tve_social_custom.tve_style_4.tve_social_itb .tve_s_item.tve_share_item{padding-right:20px;}.tve_social_custom.tve_style_4.tve_social_itb .tve_s_item.tve_share_item .tve_s_icon{margin-right:10px;}.tve_social_custom.tve_style_4.tve_social_itb .tve_s_item.tve_share_item .tve_s_text,.tve_social_custom.tve_style_4.tve_social_itb .tve_s_item.tve_share_item .tve_s_count{padding:0;}.tve_social_custom.tve_style_4.tve_social_ib .tve_s_icon{border-radius:3px;}.tve_social_custom.tve_style_4.tve_social_ib .tve_s_text{display:none;}.tve_social_custom.tve_style_4.tve_social_cb .tve_s_count{border:1px solid #c2c1c1;border-radius:3px;display:block;font-size:1.182em;line-height:1.923em;height:1.923em;margin-left:15px;padding:0 10px;position:relative;}.tve_social_custom.tve_style_4.tve_social_cb .tve_s_count:before{content:"";border-top:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,0);border-right:7px solid #c2c1c1;display:block;height:0;margin:auto 0;position:absolute;top:0;bottom:0;left:-7px;width:0;}.tve_social_custom.tve_style_4.tve_social_cb .tve_s_count:after{content:"";border-top:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,0);border-right:7px solid #fff;display:block;height:0;margin:auto 0;position:absolute;top:0;bottom:0;left:-6px;width:0;}.tve_social_custom.tve_style_5{font-size:22px;}.tve_social_custom.tve_style_5 .tve_s_link{font-size:inherit;}.tve_social_custom.tve_style_5 .tve_s_icon{font-size:1.136em;line-height:1em;height:1.92em;width:1.92em;}.tve_social_custom.tve_style_5 .tve_s_item:hover .tve_s_link,.tve_social_custom.tve_style_5 .tve_s_item:active .tve_s_link{color:#fff !important;}.tve_social_custom.tve_style_5 .tve_s_item.tve_share_item .tve_s_icon{width:unset;height:unset;padding:.445em;}.tve_social_custom.tve_style_5.tve_social_itb .tve_s_item.tve_share_item,.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_share_item{padding-right:20px;}.tve_social_custom.tve_style_5.tve_social_itb .tve_s_item.tve_share_item .tve_s_icon,.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_share_item .tve_s_icon{margin-right:10px;}.tve_social_custom.tve_style_5.tve_social_itb .tve_s_item.tve_share_item .tve_s_text,.tve_social_custom.tve_style_5.tve_social_itb .tve_s_item.tve_share_item .tve_s_count,.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_share_item .tve_s_text,.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_share_item .tve_s_count{padding:0;}.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item,.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item{padding-right:0;}.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item .tve_s_icon,.tve_social_custom.tve_style_5.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item .tve_s_icon{margin-right:0;}.tve_social_custom.tve_style_5.tve_social_cb .tve_s_text{display:none;}.tcb-social-vertical.tve_style_6{flex-direction:column;}.tcb-social-vertical.tve_style_6 .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_6 .tve_s_item:not(:last-child){margin-bottom:.667em !important;}.tcb-social-vertical.tve_style_7{align-items:center;}.tcb-social-vertical.tve_style_7 .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_7 .tve_s_item:not(:last-child){margin-bottom:.667em !important;}.tcb-social-vertical.tve_style_8{flex-direction:column;align-items:center;}.tcb-social-vertical.tve_style_8 .tve_s_share_count{flex-direction:column;align-items:center;}.tcb-social-vertical.tve_style_8 .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_8 .tve_s_item:not(:last-child){margin-bottom:.833em !important;}.tcb-social-vertical.tve_style_9 .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_9 .tve_s_item:not(:last-child){margin-bottom:2.4em !important;}.tcb-social-vertical.tve_style_10 .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_10 .tve_s_item:not(:last-child){margin-bottom:.261em !important;}.tcb-social-vertical.tve_style_10 .tve_s_share_count{flex-direction:column;}.tcb-social-vertical.tve_style_10 .tve_s_share_count .tve_s_cnt{margin:0;}.tcb-social-vertical.tve_style_10 .tve_s_share_count .tve_s_cnt_label{font-size:.652em;}.tcb-social-vertical.tve_style_11 .tve_social_items .tve_s_item{margin:0;}.tcb-social-vertical.tve_style_11 .tve_social_items .tve_s_item:not(:last-child){margin-bottom:.8em !important;}.tcb-social-vertical.tve_style_11 .tve_social_items .tve_s_item .tve_s_link .tve_s_icon:after{display:none !important;}.tcb-social-vertical.tve_style_11 .tve_s_share_count .tve_s_cnt_icon{display:flex;align-items:center;margin-right:.286em;}.tcb-social-vertical.tve_style_11 .tve_s_share_count .tve_s_cnt{margin:0;}.tcb-social-vertical.tve_style_11 .tve_s_share_count .tve_s_cnt_label{display:none;}.tcb-social-vertical.tve_style_12{flex-direction:column;}.tcb-social-vertical.tve_style_12 .tve_social_items{flex-direction:column;}.tcb-social-vertical.tve_style_12 .tve_social_items .tve_s_item{margin:0;height:2.095em;border-top:0;border-bottom:0;border-left:4px solid #fff;border-right:4px solid #fff;padding-left:.6875em;padding-right:.6875em;margin-bottom:.625em;}.tcb-social-vertical.tve_style_12 .tve_social_items .tve_s_item:first-child{margin-top:.625em;}.tcb-social-vertical.tve_style_13 .tve_social_items{flex-direction:column;}.tcb-social-vertical.tve_style_13 .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_13 .tve_s_item:not(:last-child){margin-bottom:1.944em !important;}.tcb-social-vertical.tve_style_14 .tve_social_custom{flex-direction:column;}.tcb-social-vertical.tve_style_14 .tve_s_item{margin:0 !important;margin-bottom:-1px !important;}.tcb-social-vertical.tve_style_14 .tve_s_share_count{flex-direction:column;}.tcb-social-vertical.tve_style_14 .tve_s_share_count .tve_s_cnt{margin:0;}.tcb-social-vertical.tve_style_15 .tve_social_items{flex-direction:column;}.tcb-social-vertical.tve_style_15 .tve_social_items .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_15 .tve_social_items .tve_s_item:not(:last-child){margin-bottom:.5em !important;}.tcb-social-vertical.tve_style_15 .tve_s_share_count .tve_s_cnt_icon{display:flex;align-items:center;margin-right:.278em;}.tcb-social-vertical.tve_style_15 .tve_s_share_count .tve_s_cnt{margin:0;}.tcb-social-vertical.tve_style_15 .tve_s_share_count .tve_s_cnt_label{display:none;}.tcb-social-vertical.tve_style_16 .tve_social_items{flex-direction:column;}.tcb-social-vertical.tve_style_16 .tve_social_items .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_16 .tve_social_items .tve_s_item:not(:last-child){margin-bottom:.238em !important;}.tcb-social-vertical.tve_style_16 .tve_s_share_count{border:none;flex-direction:column;}.tcb-social-vertical.tve_style_16 .tve_s_share_count .tve_s_cnt{margin:0;border-radius:5px;border:solid 1px #dcdcdc;padding:.714em;}.tcb-social-vertical.tve_style_17 .tve_social_items{flex-direction:column;}.tcb-social-vertical.tve_style_17 .tve_social_items .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_17 .tve_social_items .tve_s_item:not(:last-child){margin-bottom:.722em !important;}.tcb-social-vertical.tve_style_18 .tve_social_items{flex-direction:column;}.tcb-social-vertical.tve_style_18 .tve_social_items .tve_s_item{margin:0 !important;}.tcb-social-vertical.tve_style_18 .tve_social_items .tve_s_item:not(:last-child){margin-bottom:.778em !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item{border-color:var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item:hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item:hover .tve_s_count,.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item.tve-state-hover .tve_s_count{color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item:hover .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_6 .tve_s_item.tve-state-hover .tve_s_icon{fill:#fff !important;color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_7 .tve_s_item{border-color:var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_7 .tve_s_item .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_7 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_7 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)),linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item .tve_s_link{color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item .tve_s_link .tve_s_icon{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item .tve_s_count{color:var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item:hover .tve_s_link,.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item.tve-state-hover .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item:hover .tve_s_link .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_8 .tve_s_item.tve-state-hover .tve_s_link .tve_s_icon{background-image:linear-gradient(#fff,#fff);}.thrv_social_custom.tcb-custom-branding-social .tve_style_9 .tve_s_item .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_9 .tve_s_item .tve_s_link:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_9 .tve_s_item .tve_s_link.tve-state-hover{color:#111 !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_10 .tve_s_item .tve_s_link{color:#fff !important;background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_11 .tve_s_item .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_11 .tve_s_item .tve_s_link:hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_11 .tve_s_item .tve_s_link:hover .tve_s_count,.thrv_social_custom.tcb-custom-branding-social .tve_style_11 .tve_s_item .tve_s_link.tve-state-hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_11 .tve_s_item .tve_s_link.tve-state-hover .tve_s_count{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_12 .tve_s_item .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_12 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_12 .tve_s_item.tve-state-hover{border-color:var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item.tve_s_item{border:1px solid var(--tcb-social-share-master-color);box-shadow:.824em .885em 0 0 var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item.tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover{box-shadow:.412em .442em 0 0 var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item.tve_s_item:hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item.tve_s_item:hover .tve_s_count,.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover .tve_s_count{color:#000;}.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item{border-color:#d0cece;}.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));border-color:var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item:hover .tve_s_link,.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item.tve-state-hover .tve_s_link{color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item:hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item:hover .tve_s_count,.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_item.tve-state-hover .tve_s_count{color:#fff;}.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_14 .tve_s_count{color:var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item{background-image:linear-gradient(#f7f7f7,#f7f7f7);}.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item .tve_s_link{color:#646464 !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item .tve_s_count{color:rgba(51,51,51,.73);background-color:#e2e2e2;}.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item:hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item:hover .tve_s_count,.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item.tve-state-hover .tve_s_count{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item:hover .tve_s_link,.thrv_social_custom.tcb-custom-branding-social .tve_style_15 .tve_s_item.tve-state-hover .tve_s_link{color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_16 .tve_s_item{color:#fff;background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_16 .tve_s_item .tve_s_text{color:#ededed !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_16 .tve_s_item .tve_s_count{color:var(--tcb-social-share-master-color) !important;background-color:hsla(0,0%,100%,.8);border-radius:100px;}.thrv_social_custom.tcb-custom-branding-social .tve_style_17 .tve_s_item .tve_s_icon{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));color:#fff !important;border-radius:100px;}.thrv_social_custom.tcb-custom-branding-social .tve_style_17 .tve_s_item:hover .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_17 .tve_s_item.tve-state-hover .tve_s_icon{background-image:linear-gradient(rgba(255,255,255,.6),rgba(255,255,255,.6)),linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_18 .tve_s_item .tve_s_icon{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_18 .tve_s_item:hover .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_18 .tve_s_item.tve-state-hover .tve_s_icon{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color)) !important;color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_1 .tve_s_item{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_1 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_1 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_1 .tve_s_item:active{background-image:linear-gradient(rgba(255,255,255,.05),rgba(255,255,255,.1)),linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_1.tve_social_ib .tve_s_icon{fill:#fff !important;color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_1.tve_social_itb .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_1.tve_social_cb .tve_s_icon{fill:var(--tcb-social-share-master-color) !important;color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_2 .tve_s_item{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));border:1px solid var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_2 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_2 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));border:1px solid var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_2 .tve_s_item:active{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));border:1px solid var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_3 .tve_s_item{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_3 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_3 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_3 .tve_s_item:active{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item .tve_s_text{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item:hover .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item:hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item.tve-state-hover .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item.tve-state-hover .tve_s_text{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item:active .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_4 .tve_s_item:active .tve_s_text{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_4.tve_social_cb .tve_s_item .tve_s_count{color:var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item{border:2px solid var(--tcb-social-share-master-color);}.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item .tve_s_link{color:var(--tcb-social-share-master-color) !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item:hover,.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item:hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item:hover .tve_s_count,.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item.tve-state-hover .tve_s_count{color:#fff;}.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item:hover .tve_s_icon,.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item.tve-state-hover .tve_s_icon{fill:#fff !important;color:#fff !important;}.thrv_social_custom.tcb-custom-branding-social .tve_style_5 .tve_s_item:active{border-color:var(--tcb-social-share-master-color);background-image:linear-gradient(var(--tcb-social-share-master-color),var(--tcb-social-share-master-color));}.tve_s_fb_share{--tcb-social-color-style-6:#3569b4;}.tve_s_t_share{--tcb-social-color-style-6:#29ace0;}.tve_s_x_share{--tcb-social-color-style-6:#333;}.tve_s_in_share{--tcb-social-color-style-6:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-6:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-6:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-6:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-7:#3569b4;}.tve_s_t_share{--tcb-social-color-style-7:#29ace0;}.tve_s_x_share{--tcb-social-color-style-7:#333;}.tve_s_in_share{--tcb-social-color-style-7:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-7:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-7:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-7:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-8:#3569b4;}.tve_s_t_share{--tcb-social-color-style-8:#29ace0;}.tve_s_x_share{--tcb-social-color-style-8:#333;}.tve_s_in_share{--tcb-social-color-style-8:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-8:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-8:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-8:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-9:#3569b4;}.tve_s_t_share{--tcb-social-color-style-9:#29ace0;}.tve_s_x_share{--tcb-social-color-style-9:#333;}.tve_s_in_share{--tcb-social-color-style-9:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-9:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-9:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-9:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-10:#3569b4;}.tve_s_t_share{--tcb-social-color-style-10:#29ace0;}.tve_s_x_share{--tcb-social-color-style-10:#333;}.tve_s_in_share{--tcb-social-color-style-10:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-10:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-10:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-10:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-11:#3569b4;}.tve_s_t_share{--tcb-social-color-style-11:#29ace0;}.tve_s_x_share{--tcb-social-color-style-11:#333;}.tve_s_in_share{--tcb-social-color-style-11:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-11:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-11:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-11:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-12:#3569b4;}.tve_s_t_share{--tcb-social-color-style-12:#29ace0;}.tve_s_x_share{--tcb-social-color-style-12:#333;}.tve_s_in_share{--tcb-social-color-style-12:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-12:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-12:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-12:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-13:#3569b4;}.tve_s_t_share{--tcb-social-color-style-13:#29ace0;}.tve_s_x_share{--tcb-social-color-style-13:#333;}.tve_s_in_share{--tcb-social-color-style-13:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-13:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-13:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-13:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-14:#111;}.tve_s_t_share{--tcb-social-color-style-14:#111;}.tve_s_x_share{--tcb-social-color-style-14:#111;}.tve_s_in_share{--tcb-social-color-style-14:#111;}.tve_s_pin_share{--tcb-social-color-style-14:#111;}.tve_s_xing_share{--tcb-social-color-style-14:#111;}.tve_s_bluesky_share{--tcb-social-color-style-14:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-15:#3569b4;}.tve_s_t_share{--tcb-social-color-style-15:#29ace0;}.tve_s_x_share{--tcb-social-color-style-15:#333;}.tve_s_in_share{--tcb-social-color-style-15:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-15:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-15:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-15:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-16:#3569b4;}.tve_s_t_share{--tcb-social-color-style-16:#29ace0;}.tve_s_x_share{--tcb-social-color-style-16:#333;}.tve_s_in_share{--tcb-social-color-style-16:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-16:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-16:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-16:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-17:#181818;}.tve_s_t_share{--tcb-social-color-style-17:#181818;}.tve_s_x_share{--tcb-social-color-style-17:#181818;}.tve_s_in_share{--tcb-social-color-style-17:#181818;}.tve_s_pin_share{--tcb-social-color-style-17:#181818;}.tve_s_xing_share{--tcb-social-color-style-17:#181818;}.tve_s_bluesky_share{--tcb-social-color-style-17:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-18:#3569b4;}.tve_s_t_share{--tcb-social-color-style-18:#29ace0;}.tve_s_x_share{--tcb-social-color-style-18:#333;}.tve_s_in_share{--tcb-social-color-style-18:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-18:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-18:#00605e;}.tve_s_bluesky_share{--tcb-social-color-style-18:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-1:#3569b4;}.tve_s_t_share{--tcb-social-color-style-1:#3bceff;}.tve_s_x_share{--tcb-social-color-style-1:#111;}.tve_s_in_share{--tcb-social-color-style-1:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-1:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-1:#00605e;}.tve_s_yt_share{--tcb-social-color-style-1:#ec162c;}.tve_s_tiktok_share{--tcb-social-color-style-1:#111;}.tve_s_bluesky_share{--tcb-social-color-style-1:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-2:#284f9b;}.tve_s_t_share{--tcb-social-color-style-2:#1f92cb;}.tve_s_x_share{--tcb-social-color-style-2:#212121;}.tve_s_in_share{--tcb-social-color-style-2:#015a9c;}.tve_s_pin_share{--tcb-social-color-style-2:#b9191a;}.tve_s_xing_share{--tcb-social-color-style-2:#004947;}.tve_s_yt_share{--tcb-social-color-style-2:#d74546;}.tve_s_tiktok_share{--tcb-social-color-style-2:#212121;}.tve_s_bluesky_share{--tcb-social-color-style-2:#0073df;}.tve_s_fb_share{--tcb-social-color-style-3:#3569b4;}.tve_s_t_share{--tcb-social-color-style-3:#29ace0;}.tve_s_x_share{--tcb-social-color-style-3:#111;}.tve_s_in_share{--tcb-social-color-style-3:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-3:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-3:#00605e;}.tve_s_yt_share{--tcb-social-color-style-3:#ec162c;}.tve_s_tiktok_share{--tcb-social-color-style-3:#111;}.tve_s_bluesky_share{--tcb-social-color-style-3:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-4:#3569b4;}.tve_s_t_share{--tcb-social-color-style-4:#29ace0;}.tve_s_x_share{--tcb-social-color-style-4:#333;}.tve_s_in_share{--tcb-social-color-style-4:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-4:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-4:#00605e;}.tve_s_yt_share{--tcb-social-color-style-4:#ec162c;}.tve_s_tiktok_share{--tcb-social-color-style-4:#575757;}.tve_s_bluesky_share{--tcb-social-color-style-4:#1083fe;}.tve_s_fb_share{--tcb-social-color-style-5:#3569b4;}.tve_s_t_share{--tcb-social-color-style-5:#29ace0;}.tve_s_x_share{--tcb-social-color-style-5:#333;}.tve_s_in_share{--tcb-social-color-style-5:#0177b5;}.tve_s_pin_share{--tcb-social-color-style-5:#cf2123;}.tve_s_xing_share{--tcb-social-color-style-5:#00605e;}.tve_s_ig_share{--tcb-social-color-style-5:#111;}.tve_s_yt_share{--tcb-social-color-style-5:#ec162c;}.tve_s_tiktok_share{--tcb-social-color-style-5:#111;}.tve_s_bluesky_share{--tcb-social-color-style-5:#1083fe;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item{border-color:var(--tcb-social-color-style-6);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item .tve_s_link{color:var(--tcb-social-color-style-6) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--tcb-social-color-style-6),var(--tcb-social-color-style-6));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover .tve_s_count,.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover .tve_s_count{color:#fff;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item:hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_6 .tve_s_item.tve-state-hover .tve_s_icon{fill:#fff !important;color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item{border-color:var(--tcb-social-color-style-7);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item .tve_s_link{color:var(--tcb-social-color-style-7) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_7 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)),linear-gradient(var(--tcb-social-color-style-7),var(--tcb-social-color-style-7));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_link{color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_link .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_link .tve_s_icon{background-image:linear-gradient(var(--tcb-social-color-style-8),var(--tcb-social-color-style-8));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item .tve_s_count{color:var(--tcb-social-color-style-8);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item:hover .tve_s_link,.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item.tve-state-hover .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item:hover .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item.tve-state-hover .tve_s_link{color:var(--tcb-social-color-style-8) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item:hover .tve_s_link .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item.tve-state-hover .tve_s_link .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item:hover .tve_s_link .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_8 .tve_s_item.tve-state-hover .tve_s_link .tve_s_icon{background-image:linear-gradient(#fff,#fff);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_9 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_9 .tve_s_item .tve_s_link{color:var(--tcb-social-color-style-9) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_9 .tve_s_item .tve_s_link:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_9 .tve_s_item .tve_s_link.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_9 .tve_s_item .tve_s_link:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_9 .tve_s_item .tve_s_link.tve-state-hover{color:#111 !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_10 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_10 .tve_s_item{color:#fff !important;background-image:linear-gradient(var(--tcb-social-color-style-10),var(--tcb-social-color-style-10)) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link{color:var(--tcb-social-color-style-11) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link:hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link:hover .tve_s_count,.thrv_social:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link.tve-state-hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link.tve-state-hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link:hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link:hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link.tve-state-hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_11 .tve_s_item .tve_s_link.tve-state-hover .tve_s_count{color:var(--tcb-social-color-style-11) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_12 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_12 .tve_s_item .tve_s_link{color:var(--tcb-social-color-style-12) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_12 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_12 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_12 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_12 .tve_s_item.tve-state-hover{border-top-color:var(--tcb-social-color-style-12) !important;border-left-color:var(--tcb-social-color-style-12) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item .tve_s_link{color:var(--tcb-social-color-style-13) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item{border:1px solid var(--tcb-social-color-style-13);box-shadow:.824em .885em 0 0 var(--tcb-social-color-style-13);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover{box-shadow:.412em .442em 0 0 var(--tcb-social-color-style-13);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item:hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item:hover .tve_s_count,.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item:hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item:hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_13 .tve_s_item.tve_s_item.tve-state-hover .tve_s_count{color:#000;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_link{color:var(--tcb-social-color-style-14) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item{border-color:#d0cece;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-color-style-14),var(--tcb-social-color-style-14));border-color:var(--tcb-social-color-style-14);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover .tve_s_link,.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover .tve_s_link{color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover .tve_s_count,.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item:hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_14 .tve_s_item.tve-state-hover .tve_s_count{color:#fff;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item{background-image:linear-gradient(#f7f7f7,#f7f7f7);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item .tve_s_link{color:#646464 !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item .tve_s_count{color:rgba(51,51,51,.73);background-color:#e2e2e2;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-social-color-style-15),var(--tcb-social-color-style-15));color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover .tve_s_count,.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover .tve_s_count{background-image:linear-gradient(var(--tcb-social-color-style-15),var(--tcb-social-color-style-15));color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover .tve_s_link,.thrv_social:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item:hover .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_15 .tve_s_item.tve-state-hover .tve_s_link{color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_16 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_16 .tve_s_item{color:#fff;background-image:linear-gradient(var(--tcb-social-color-style-16),var(--tcb-social-color-style-16));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_16 .tve_s_item .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_16 .tve_s_item .tve_s_text{color:#ededed !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_16 .tve_s_item .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_16 .tve_s_item .tve_s_count{color:var(--tcb-social-color-style-16) !important;background-color:hsla(0,0%,100%,.8);border-radius:100px;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_17 .tve_s_item .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_17 .tve_s_item .tve_s_icon{background-color:var(--tcb-social-color-style-17,#181818) !important;color:#fff !important;border-radius:100px;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_17 .tve_s_item:hover .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_17 .tve_s_item.tve-state-hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_17 .tve_s_item:hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_17 .tve_s_item.tve-state-hover .tve_s_icon{background-color:#999 !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item .tve_s_icon{color:var(--tcb-social-color-style-18) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item.tve-state-hover{color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item:hover .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item.tve-state-hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item:hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_18 .tve_s_item.tve-state-hover .tve_s_icon{color:#fff !important;background-image:linear-gradient(var(--tcb-social-color-style-18),var(--tcb-social-color-style-18)) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item{background-image:linear-gradient(var(--tcb-social-color-style-1),var(--tcb-social-color-style-1));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--tcb-social-color-style-1),var(--tcb-social-color-style-1));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item:active,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_1 .tve_s_item:active{background-image:linear-gradient(rgba(255,255,255,.05),rgba(255,255,255,.1)),linear-gradient(var(--tcb-social-color-style-1),var(--tcb-social-color-style-1));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_1.tve_social_ib .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_1.tve_social_ib .tve_s_icon{fill:#fff !important;color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_1.tve_social_itb .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_1.tve_social_cb .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_1.tve_social_itb .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_1.tve_social_cb .tve_s_icon{fill:var(--tcb-social-color-style-1) !important;color:var(--tcb-social-color-style-1) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item{background-image:linear-gradient(var(--tcb-social-color-style-2),var(--tcb-social-color-style-2));border:1px solid var(--tcb-social-color-style-2);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--tcb-social-color-style-2),var(--tcb-social-color-style-2));border:1px solid var(--tcb-social-color-style-2);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item:active,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_2 .tve_s_item:active{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),linear-gradient(var(--tcb-social-color-style-2),var(--tcb-social-color-style-2));border:1px solid var(--tcb-social-color-style-2);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item{background-image:linear-gradient(var(--tcb-social-color-style-3),var(--tcb-social-color-style-3));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--tcb-social-color-style-3),var(--tcb-social-color-style-3));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item:active,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_3 .tve_s_item:active{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),linear-gradient(var(--tcb-social-color-style-3),var(--tcb-social-color-style-3));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item{--background-image:var(--tcb-social-color-style-4);--background-color:var(--tcb-social-color-style-4);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item .tve_s_text{background:linear-gradient(var(--background-image,var(--background-color,var(--tcb-social-color-style-4))),var(--background-image,var(--background-color,var(--tcb-social-color-style-4))));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:hover .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item.tve-state-hover .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item.tve-state-hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item.tve-state-hover .tve_s_text{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--background-image,var(--background-color,var(--tcb-social-color-style-4))),var(--background-image,var(--background-color,var(--tcb-social-color-style-4))));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:active .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:active .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:active .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4 .tve_s_item:active .tve_s_text{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),linear-gradient(var(--background-image,var(--background-color,var(--tcb-social-color-style-4))),var(--background-image,var(--background-color,var(--tcb-social-color-style-4))));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb{--background-image:var(--tcb-social-color-style-4);--background-color:var(--tcb-social-color-style-4);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item{background:linear-gradient(var(--background-image,var(--background-color,var(--tcb-social-color-style-4))),var(--background-image,var(--background-color,var(--tcb-social-color-style-4))));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--background-image,var(--background-color,var(--tcb-social-color-style-4))),var(--background-image,var(--background-color,var(--tcb-social-color-style-4))));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item:active,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4.tve_social_itb .tve_s_item:active{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),linear-gradient(var(--background-image,var(--background-color,var(--tcb-social-color-style-4))),var(--background-image,var(--background-color,var(--tcb-social-color-style-4))));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_4.tve_social_cb .tve_s_item .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_4.tve_social_cb .tve_s_item .tve_s_count{color:var(--tcb-social-color-style-4);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item{border:2px solid var(--tcb-social-color-style-5);}.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item .tve_s_link,.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item .tve_s_link,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item .tve_s_icon{color:var(--tcb-social-color-style-5) !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover,.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),linear-gradient(var(--tcb-social-color-style-5),var(--tcb-social-color-style-5));}.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover .tve_s_count,.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover .tve_s_count,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover .tve_s_text,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover .tve_s_count{color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover .tve_s_icon,.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:hover .tve_s_icon,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item.tve-state-hover .tve_s_icon{fill:#fff !important;color:#fff !important;}.thrv_social:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:active,.thrv_social_custom:not(.tcb-custom-branding-social) .tve_style_5 .tve_s_item:active{border-color:var(--tcb-social-color-style-5);background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),linear-gradient(var(--tcb-social-color-style-5),var(--tcb-social-color-style-5));}.tve_s_item{--tcb-local-color-style-1:linear-gradient(to bottom right,var(--tcb-local-color-f2bba) 50%,var(--tcb-local-color-trewq) 50%);--tcb-local-color-style-2:var(--tcb-local-color-f3080);--tcb-local-color-style-3:var(--tcb-local-color-f3080);--tcb-local-color-style-4:var(--tcb-local-color-f3080);--tcb-local-color-style-5:var(--tcb-local-color-f3080);--tcb-local-color-style-6:var(--tcb-local-color-f2bba);--tcb-local-color-style-7:var(--tcb-local-color-f2bba);--tcb-local-color-style-8:var(--tcb-local-color-f2bba);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_1 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_1 .tve_s_item{border-radius:50%;background-image:linear-gradient(to bottom right,var(--tcb-local-color-f2bba) 50%,var(--tcb-local-color-trewq) 50%);fill:#fff;color:#fff;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_1 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_1 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_1 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_1 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(to bottom right,var(--tcb-local-color-f2bba) 50%,var(--tcb-local-color-trewq) 50%);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_2 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_2 .tve_s_item{border-radius:50%;background-color:var(--tcb-local-color-f3080);fill:#fff !important;color:#fff !important;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_2 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_2 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_2 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_2 .tve_s_item.tve-state-hover{background-color:var(--tcb-local-color-trewq);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_3 .tve_s_text,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_4 .tve_s_text,.thrive_author_links.tcb-custom-branding-social .tve_links_style_3 .tve_s_text,.thrive_author_links.tcb-custom-branding-social .tve_links_style_4 .tve_s_text{display:none;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_3 .tve_s_item,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_4 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_3 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_4 .tve_s_item{border-radius:3px;border:1px solid var(--tcb-local-color-f3080);background-color:rgba(0,0,0,0);fill:var(--tcb-local-color-f3080);color:var(--tcb-local-color-f3080);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_3 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_3 .tve_s_item.tve-state-hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_4 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_4 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_3 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_3 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_4 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_4 .tve_s_item.tve-state-hover{border-color:var(--tcb-local-color-poiuy);fill:var(--tcb-local-color-poiuy);color:var(--tcb-local-color-poiuy);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_4 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_4 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_4 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_4 .tve_s_item.tve-state-hover{border-color:var(--tcb-local-color-f3080);background-color:var(--tcb-local-color-f3080);fill:#fff !important;color:#fff !important;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_5 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_5 .tve_s_item{fill:var(--tcb-local-color-f3080);color:var(--tcb-local-color-f3080);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_5 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_5 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_5 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_5 .tve_s_item.tve-state-hover{fill:var(--tcb-local-color-poiuy);color:var(--tcb-local-color-poiuy);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_6 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_6 .tve_s_item{border-radius:50%;color:#fff;background-image:linear-gradient(var(--tcb-local-color-trewq),var(--tcb-local-color-trewq));}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_6 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_6 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_6 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-trewq),var(--tcb-local-color-trewq));}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_text,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_text{display:none;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item{border-radius:0;border:2px solid var(--tcb-local-color-trewq);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item .tve_s_icon,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item .tve_s_icon{color:var(--tcb-local-color-trewq);fill:var(--tcb-local-color-trewq);}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item .tve_s_icon:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item .tve_s_icon.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item .tve_s_icon:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item .tve_s_icon.tve-state-hover{color:#fff;fill:#fff;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item.tve-state-hover{background-color:var(--tcb-local-color-trewq);border-color:var(--tcb-local-color-trewq);color:#fff;fill:#fff;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item:hover svg,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_7 .tve_s_item.tve-state-hover svg,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item:hover svg,.thrive_author_links.tcb-custom-branding-social .tve_links_style_7 .tve_s_item.tve-state-hover svg{fill:#fff;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_8 .tve_s_text,.thrive_author_links.tcb-custom-branding-social .tve_links_style_8 .tve_s_text{display:none;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_8 .tve_s_item,.thrive_author_links.tcb-custom-branding-social .tve_links_style_8 .tve_s_item{border-radius:2px;box-shadow:0 2px 5px 2px rgba(0,0,0,.25);background-image:linear-gradient(var(--tcb-local-color-trewq),var(--tcb-local-color-trewq));fill:#fff;color:#fff;}:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_8 .tve_s_item:hover,:not(#tve).thrv_social_follow.tcb-custom-branding-social .tve_links_style_8 .tve_s_item.tve-state-hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_8 .tve_s_item:hover,.thrive_author_links.tcb-custom-branding-social .tve_links_style_8 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-trewq),var(--tcb-local-color-trewq));}.tve_s_x_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(51,51,51,.8) 50%,#000 50%);--tcb-local-color-style-2:#000;--tcb-local-color-style-3:#000;--tcb-local-color-style-4:#000;--tcb-local-color-style-5:#000;--tcb-local-color-style-6:#000;--tcb-local-color-style-7:#000;--tcb-local-color-style-8:#000;}.tve_s_t_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(66,179,234,.8) 50%,#42b3ea 50%);--tcb-local-color-style-2:#42b3ea;--tcb-local-color-style-3:#42b3ea;--tcb-local-color-style-4:#42b3ea;--tcb-local-color-style-5:#42b3ea;--tcb-local-color-style-6:#42b3ea;--tcb-local-color-style-7:#42b3ea;--tcb-local-color-style-8:#42b3ea;}.tve_s_fb_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(53,105,180,.8) 50%,#3569b4 50%);--tcb-local-color-style-2:#3569b4;--tcb-local-color-style-3:#3569b4;--tcb-local-color-style-4:#3569b4;--tcb-local-color-style-5:#3569b4;--tcb-local-color-style-6:#3569b4;--tcb-local-color-style-7:#3569b4;--tcb-local-color-style-8:#3569b4;}.tve_s_in_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(1,119,181,.8) 50%,#0177b5 50%);--tcb-local-color-style-2:#0177b5;--tcb-local-color-style-3:#0177b5;--tcb-local-color-style-4:#0177b5;--tcb-local-color-style-5:#0177b5;--tcb-local-color-style-6:#0177b5;--tcb-local-color-style-7:#0177b5;--tcb-local-color-style-8:#0177b5;}.tve_s_pin_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(242,48,60,.8) 50%,#f2303c 50%);--tcb-local-color-style-2:#f2303c;--tcb-local-color-style-3:#f2303c;--tcb-local-color-style-4:#f2303c;--tcb-local-color-style-5:#f2303c;--tcb-local-color-style-6:#f2303c;--tcb-local-color-style-7:#f2303c;--tcb-local-color-style-8:#f2303c;}.tve_s_xing_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(0,96,99,.8) 50%,#006063 50%);--tcb-local-color-style-2:#006063;--tcb-local-color-style-3:#006063;--tcb-local-color-style-4:#006063;--tcb-local-color-style-5:#006063;--tcb-local-color-style-6:#006063;--tcb-local-color-style-7:#006063;--tcb-local-color-style-8:#006063;}.tve_s_yt_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(236,22,44,.8) 50%,#ec162c 50%);--tcb-local-color-style-2:#ec162c;--tcb-local-color-style-3:#ec162c;--tcb-local-color-style-4:#ec162c;--tcb-local-color-style-5:#ec162c;--tcb-local-color-style-6:#ec162c;--tcb-local-color-style-7:#ec162c;--tcb-local-color-style-8:#ec162c;}.tve_s_g_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(224,75,53,.8) 50%,#e04b35 50%);--tcb-local-color-style-2:#e04b35;--tcb-local-color-style-3:#e04b35;--tcb-local-color-style-4:#e04b35;--tcb-local-color-style-5:#e04b35;--tcb-local-color-style-6:#e04b35;--tcb-local-color-style-7:#e04b35;--tcb-local-color-style-8:#e04b35;}.tve_s_ig_share{--tcb-local-color-style-1:linear-gradient(to bottom right,rgba(23,23,22,.8) 50%,#171716 50%);--tcb-local-color-style-2:#171716;--tcb-local-color-style-3:#171716;--tcb-local-color-style-4:#171716;--tcb-local-color-style-5:#171716;--tcb-local-color-style-6:#171716;--tcb-local-color-style-7:#171716;--tcb-local-color-style-8:#171716;}.tve_s_bluesky_share{--tcb-local-color-style-1:linear-gradient(to bottom right,#0085ff 50%,#1083fe 50%);--tcb-local-color-style-2:#1083fe;--tcb-local-color-style-3:#1083fe;--tcb-local-color-style-4:#1083fe;--tcb-local-color-style-5:#1083fe;--tcb-local-color-style-6:#1083fe;--tcb-local-color-style-7:#1083fe;--tcb-local-color-style-8:#1083fe;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_x_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_t_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_fb_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_in_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_pin_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_xing_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_yt_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_g_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_ig_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_bluesky_share{background-image:linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6),var(--tcb-local-color-style-6)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_x_share{border-color:var(--tcb-local-color-style-7,#000);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_x_share .tve_s_icon{color:var(--tcb-local-color-style-7,#000);fill:var(--tcb-local-color-style-7,#000);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_x_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_x_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#000);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_x_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_x_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share{border-color:var(--tcb-local-color-style-7,#42b3ea);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share .tve_s_icon{color:var(--tcb-local-color-style-7,#42b3ea);fill:var(--tcb-local-color-style-7,#42b3ea);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#42b3ea);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share{border-color:var(--tcb-local-color-style-7,#3569b4);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share .tve_s_icon{color:var(--tcb-local-color-style-7,#3569b4);fill:var(--tcb-local-color-style-7,#3569b4);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#3569b4);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share{border-color:var(--tcb-local-color-style-7,#0177b5);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share .tve_s_icon{color:var(--tcb-local-color-style-7,#0177b5);fill:var(--tcb-local-color-style-7,#0177b5);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#0177b5);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share{border-color:var(--tcb-local-color-style-7,#f2303c);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share .tve_s_icon{color:var(--tcb-local-color-style-7,#f2303c);fill:var(--tcb-local-color-style-7,#f2303c);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#f2303c);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share{border-color:var(--tcb-local-color-style-7,#006063);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share .tve_s_icon{color:var(--tcb-local-color-style-7,#006063);fill:var(--tcb-local-color-style-7,#006063);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#006063);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share{border-color:var(--tcb-local-color-style-7,#ec162c);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share .tve_s_icon{color:var(--tcb-local-color-style-7,#ec162c);fill:var(--tcb-local-color-style-7,#ec162c);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#ec162c);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share{border-color:var(--tcb-local-color-style-7,#e04b35);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share .tve_s_icon{color:var(--tcb-local-color-style-7,#e04b35);fill:var(--tcb-local-color-style-7,#e04b35);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#e04b35);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_ig_share{border-color:var(--tcb-local-color-style-7,#171716);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_ig_share .tve_s_icon{color:var(--tcb-local-color-style-7,#171716);fill:var(--tcb-local-color-style-7,#171716);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_ig_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_ig_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#171716);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_ig_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_ig_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_bluesky_share{border-color:var(--tcb-local-color-style-7,#1083fe);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_bluesky_share .tve_s_icon{color:var(--tcb-local-color-style-7,#1083fe);fill:var(--tcb-local-color-style-7,#1083fe);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_bluesky_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_bluesky_share.tve-state-hover{background-color:var(--tcb-local-color-style-7,#1083fe);}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_bluesky_share:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_bluesky_share.tve-state-hover .tve_s_icon{color:#fff;fill:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_x_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#000),var(--tcb-local-color-style-8,#000)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_x_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_x_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#000),var(--tcb-local-color-style-8,#000)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_t_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#42b3ea),var(--tcb-local-color-style-8,#42b3ea)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_t_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_t_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#42b3ea),var(--tcb-local-color-style-8,#42b3ea)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_fb_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#3569b4),var(--tcb-local-color-style-8,#3569b4)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_fb_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_fb_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#3569b4),var(--tcb-local-color-style-8,#3569b4)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_in_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#0177b5),var(--tcb-local-color-style-8,#0177b5)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_in_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_in_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#0177b5),var(--tcb-local-color-style-8,#0177b5)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_pin_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#f2303c),var(--tcb-local-color-style-8,#f2303c)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_pin_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_pin_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#f2303c),var(--tcb-local-color-style-8,#f2303c)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_xing_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#006063),var(--tcb-local-color-style-8,#006063)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_xing_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_xing_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#006063),var(--tcb-local-color-style-8,#006063)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_yt_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#ec162c),var(--tcb-local-color-style-8,#ec162c)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_yt_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_yt_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#ec162c),var(--tcb-local-color-style-8,#ec162c)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_g_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#e04b35),var(--tcb-local-color-style-8,#e04b35)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_g_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_g_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#e04b35),var(--tcb-local-color-style-8,#e04b35)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_ig_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#171716),var(--tcb-local-color-style-8,#171716)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_ig_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_ig_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#171716),var(--tcb-local-color-style-8,#171716)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_bluesky_share{background-image:linear-gradient(var(--tcb-local-color-style-8,#1083fe),var(--tcb-local-color-style-8,#1083fe)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_bluesky_share:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_bluesky_share.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,#1083fe),var(--tcb-local-color-style-8,#1083fe)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item{background-image:linear-gradient(var(--tcb-local-color-style-6,var(--tcb-local-color-f2bba)),var(--tcb-local-color-style-6,var(--tcb-local-color-f2bba))) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-6,var(--tcb-local-color-f2bba)),var(--tcb-local-color-style-6,var(--tcb-local-color-f2bba))) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item{border-color:var(--tcb-local-color-style-7,var(--tcb-local-color-trewq)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item .tve_s_icon{color:var(--tcb-local-color-style-7,var(--tcb-local-color-trewq)) !important;fill:var(--tcb-local-color-style-7,var(--tcb-local-color-trewq)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve-state-hover{background-image:linear-gradient(var(--tcb-local-color-style-7,var(--tcb-local-color-trewq)),var(--tcb-local-color-style-7,var(--tcb-local-color-trewq))) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item:hover .tve_s_icon,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_7 .tve_s_item.tve-state-hover .tve_s_icon{color:#fff !important;fill:#fff !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item{background-image:linear-gradient(var(--tcb-local-color-style-8,var(--tcb-local-color-trewq)),var(--tcb-local-color-style-8,var(--tcb-local-color-trewq))) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-style-8,var(--tcb-local-color-trewq)),var(--tcb-local-color-style-8,var(--tcb-local-color-trewq))) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_2 .tve_s_ig_share.tve_s_item{background-image:linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_2 .tve_s_ig_share.tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_2 .tve_s_ig_share.tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_ig_share.tve_s_item{background-image:linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_ig_share.tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_6 .tve_s_ig_share.tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_ig_share.tve_s_item{background-image:linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_ig_share.tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_8 .tve_s_ig_share.tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_1 .tve_s_item{border-radius:50%;background-image:var(--tcb-local-color-style-1) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_1 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_1 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),var(--tcb-local-color-style-1) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_2 .tve_s_item{border-radius:50%;background-image:linear-gradient(var(--tcb-local-color-style-2),var(--tcb-local-color-style-2)) !important;fill:#fff;color:#fff;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_2 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_2 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.3),rgba(255,255,255,.3)),linear-gradient(var(--tcb-local-color-style-2),var(--tcb-local-color-style-2)) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_3 .tve_s_text{display:none;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_3 .tve_s_item{border-radius:3px;border-color:var(--tcb-local-color-style-3) !important;border:1px solid var(--tcb-local-color-style-3);background:rgba(0,0,0,0);fill:var(--tcb-local-color-style-3) !important;color:var(--tcb-local-color-style-3) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_4 .tve_s_item{border-radius:3px;border-color:var(--tcb-local-color-style-4) !important;border:1px solid var(--tcb-local-color-style-4);background:rgba(0,0,0,0);fill:var(--tcb-local-color-style-4) !important;color:var(--tcb-local-color-style-4) !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_4 .tve_s_item:hover,.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_4 .tve_s_item.tve-state-hover{border-color:var(--tcb-local-color-style-4) !important;background-color:var(--tcb-local-color-style-4) !important;fill:#fff !important;color:#fff !important;}.thrv_social_follow:not(.tcb-custom-branding-social) .tve_social_custom.tve_links_style_5 .tve_s_item{fill:var(--tcb-local-color-style-5) !important;color:var(--tcb-local-color-style-5) !important;}.thrv_social_follow,.thrive_author_links{--tcb-local-color-f3080:#171716;--tcb-local-color-f2bba:rgba(23,23,22,.5);--tcb-local-color-trewq:rgba(23,23,22,.7);--tcb-local-color-poiuy:rgba(23,23,22,.35);--tcb-local-color-f83d7:rgba(23,23,22,.4);--tcb-local-color-frty6:rgba(23,23,22,.2);--tcb-local-color-flktr:rgba(23,23,22,.8);--tve-color:var(--tcb-local-color-f3080);}.thrv_social_follow .tve_social_custom.tve_links_style_1 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_1 .tve_s_item{border-radius:50%;background:linear-gradient(to bottom right,var(--tcb-local-color-f2bba) 50%,var(--tcb-local-color-trewq) 50%);fill:#fff;color:#fff;}.thrv_social_follow .tve_social_custom.tve_links_style_1 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_1 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_1 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_1 .tve_s_item.tve-state-hover{background:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(to bottom right,var(--tcb-local-color-f2bba) 50%,var(--tcb-local-color-trewq) 50%);}.thrv_social_follow .tve_social_custom.tve_links_style_2 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_2 .tve_s_item{border-radius:50%;background:var(--tcb-local-color-f3080);fill:#fff;color:#fff;}.thrv_social_follow .tve_social_custom.tve_links_style_2 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_2 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_2 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_2 .tve_s_item.tve-state-hover{background:var(--tcb-local-color-trewq);}.thrv_social_follow .tve_social_custom.tve_links_style_3 .tve_s_text,.thrv_social_follow .tve_social_custom.tve_links_style_4 .tve_s_text,.thrive_author_links .tve_social_custom.tve_links_style_3 .tve_s_text,.thrive_author_links .tve_social_custom.tve_links_style_4 .tve_s_text{display:none;}.thrv_social_follow .tve_social_custom.tve_links_style_3 .tve_s_item,.thrv_social_follow .tve_social_custom.tve_links_style_4 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_3 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_4 .tve_s_item{border-radius:3px;border:1px solid var(--tcb-local-color-f3080);background:rgba(0,0,0,0);fill:var(--tcb-local-color-f3080);color:var(--tcb-local-color-f3080);}.thrv_social_follow .tve_social_custom.tve_links_style_3 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_3 .tve_s_item.tve-state-hover,.thrv_social_follow .tve_social_custom.tve_links_style_4 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_4 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_3 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_3 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_4 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_4 .tve_s_item.tve-state-hover{border-color:var(--tcb-local-color-poiuy);fill:var(--tcb-local-color-poiuy);color:var(--tcb-local-color-poiuy);}.thrv_social_follow .tve_social_custom.tve_links_style_4 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_4 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_4 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_4 .tve_s_item.tve-state-hover{border-color:var(--tcb-local-color-f3080);background-color:var(--tcb-local-color-f3080);fill:#fff;color:#fff;}.thrv_social_follow .tve_social_custom.tve_links_style_5 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_5 .tve_s_item{fill:var(--tcb-local-color-f3080);color:var(--tcb-local-color-f3080);}.thrv_social_follow .tve_social_custom.tve_links_style_5 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_5 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_5 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_5 .tve_s_item.tve-state-hover{fill:var(--tcb-local-color-poiuy);color:var(--tcb-local-color-poiuy);}.thrv_social_follow .tve_social_custom.tve_links_style_6 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_6 .tve_s_item{border-radius:50%;color:#fff;background:var(--tcb-local-color-trewq);}.thrv_social_follow .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_6 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_6 .tve_s_item.tve-state-hover{background:rgba(var(--tcb-local-color-trewq),.8);}.thrv_social_follow .tve_social_custom.tve_links_style_7 .tve_s_text,.thrive_author_links .tve_social_custom.tve_links_style_7 .tve_s_text{display:none;}.thrv_social_follow .tve_social_custom.tve_links_style_7 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_7 .tve_s_item{border-radius:0;border:2px solid var(--tcb-local-color-trewq);}.thrv_social_follow .tve_social_custom.tve_links_style_7 .tve_s_item .tve_s_icon,.thrive_author_links .tve_social_custom.tve_links_style_7 .tve_s_item .tve_s_icon{color:var(--tcb-local-color-trewq);fill:var(--tcb-local-color-trewq);}.thrv_social_follow .tve_social_custom.tve_links_style_7 .tve_s_item .tve_s_icon:hover,.thrv_social_follow .tve_social_custom.tve_links_style_7 .tve_s_item .tve_s_icon.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_7 .tve_s_item .tve_s_icon:hover,.thrive_author_links .tve_social_custom.tve_links_style_7 .tve_s_item .tve_s_icon.tve-state-hover{color:#fff;fill:#fff;}.thrv_social_follow .tve_social_custom.tve_links_style_7 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_7 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_7 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_7 .tve_s_item.tve-state-hover{background-color:var(--tcb-local-color-trewq);color:#fff;fill:#fff;}.thrv_social_follow .tve_social_custom.tve_links_style_8 .tve_s_text,.thrive_author_links .tve_social_custom.tve_links_style_8 .tve_s_text{display:none;}.thrv_social_follow .tve_social_custom.tve_links_style_8 .tve_s_item,.thrive_author_links .tve_social_custom.tve_links_style_8 .tve_s_item{border-radius:2px;box-shadow:0 2px 5px 2px rgba(0,0,0,.25);background-image:linear-gradient(var(--tcb-local-color-trewq),var(--tcb-local-color-trewq));fill:#fff;color:#fff;}.thrv_social_follow .tve_social_custom.tve_links_style_8 .tve_s_item:hover,.thrv_social_follow .tve_social_custom.tve_links_style_8 .tve_s_item.tve-state-hover,.thrive_author_links .tve_social_custom.tve_links_style_8 .tve_s_item:hover,.thrive_author_links .tve_social_custom.tve_links_style_8 .tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(var(--tcb-local-color-trewq),var(--tcb-local-color-trewq));}.thrv_social_default .tve_social_items .tve_s_item{float:left;margin:0 10px 10px 0;height:22px;}.thrv_social_default .tve_social_items .tve_s_item iframe{vertical-align:initial;}.thrv_social_default .tve_social_items .tve_s_item.tve_s_fb_share span{display:block !important;}.thrv_social_default .tve_social_items .tve_s_item.tve_s_fb_like{overflow:hidden;}.thrv_social_default .tve_social_items .tve_s_item.tve_s_fb_like span{display:block !important;}.thrv_social_default .tve_social_items .tve_s_item.tve_s_pin_share.tve_s_pin_share_count{margin-right:30px;}.thrv_social_custom.tcb-social-full-width{min-width:100% !important;}.thrv_social_custom.tcb-social-full-width.tcb-social-vertical .tve_social_items{flex-direction:column;}.thrv_social_custom.tcb-social-full-width.tcb-social-vertical .tve_social_items .tve_s_item{display:flex !important;margin-right:0;}.thrv_social_custom.tcb-social-full-width .tve_social_items{display:flex !important;width:100% !important;}.thrv_social_custom.tcb-social-full-width .tve_social_items.tve_style_2 .tve_s_text{width:100%;}.thrv_social_custom.tcb-social-full-width .tve_social_items.tve_style_4 .tve_s_item a{display:flex;}.thrv_social_custom.tcb-social-full-width .tve_social_items.tve_style_4 .tve_s_item a .tve_s_text{width:100%;}.thrv_social_custom.tcb-social-full-width .tve_social_items.tve_style_13 .tve_s_item{width:100% !important;}.thrv_social_custom.tcb-social-full-width .tve_social_items.tve_style_14{flex-wrap:nowrap;}.thrv_social_custom.tcb-social-full-width .tve_social_items .tve_s_item{flex-basis:100%;cursor:pointer;}.thrv_social_custom.tcb-social-full-width .tve_social_items .tve_s_item .tve_s_text,.thrv_social_custom.tcb-social-full-width .tve_social_items .tve_s_item .tve_s_counter{text-align:center;white-space:nowrap;}.thrv_social_custom:not(.tcb-social-full-width):not(.tve_style_12) .tve_s_item:last-child{margin-right:0;}.thrv_social_custom.tcb-social-common-width.tcb-social-vertical .tve_social_items{flex-direction:column;}.thrv_social_custom.tcb-social-common-width.tcb-social-vertical .tve_social_items .tve_s_item{margin-right:0;}.thrv_social_custom.tcb-social-common-width.tcb-social-full-width .tve_social_items{flex-wrap:nowrap;width:100% !important;}.thrv_social_custom.tcb-social-common-width.tcb-social-full-width .tve_social_items .tve_s_text,.thrv_social_custom.tcb-social-common-width.tcb-social-full-width .tve_social_items .tve_s_counter{white-space:nowrap;}.thrv_social_custom.tcb-social-common-width .tve_social_items{display:flex;flex-wrap:wrap;}.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_1.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_1.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_3.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_3.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_5.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_5.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item{padding-right:20px;}.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_1.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item .tve_s_icon,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_1.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item .tve_s_icon,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_3.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item .tve_s_icon,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_3.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item .tve_s_icon,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_5.tve_social_cb .tve_s_item.tve_s_t_share.tve_share_item .tve_s_icon,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_5.tve_social_cb .tve_s_item.tve_s_in_share.tve_share_item .tve_s_icon{margin-right:10px;}.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_2 .tve_s_text{width:100%;}.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_7.tve_social_cb .tve_s_link{justify-content:flex-start;}.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_16.tve_social_cb .tve_s_item.tve_s_t_share,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_16.tve_social_cb .tve_s_item.tve_s_in_share{padding:0 1.478em 0 0;}.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_13.tve_social_cb .tve_s_item.tve_s_t_share .tve_s_icon,.thrv_social_custom.tcb-social-common-width .tve_social_items.tve_style_13.tve_social_cb .tve_s_item.tve_s_in_share .tve_s_icon{padding-bottom:1em;}.thrv_social_custom.tcb-social-common-width .tve_social_items .tve_s_item{align-items:center;}.thrv_social_custom.tcb-social-full-width:not(.tcb-social-vertical) .tve_social_items{flex-wrap:wrap;box-sizing:border-box;}.thrv_social_custom.tcb-social-full-width:not(.tcb-social-vertical) .tve_social_items .tve_s_item{max-width:100% !important;flex:1 0 100px;min-width:min-content;}.thrv_social_custom.tcb-social-common-width:not(.tcb-social-vertical) .tve_social_items{align-items:flex-start;}.thrv_social_custom.tcb-social-common-width .tve_social_items{flex-wrap:wrap !important;box-sizing:border-box !important;}@media (max-width: 767px){.tcb-social-common-width .tve_social_ib .tve_s_item{width:min-content;}}.tve_s_fb_share.tve_share_item .tve_s_icon:before{content:"" !important;}.tve_s_t_share.tve_share_item .tve_s_icon:before{content:"" !important;}.tve_s_x_share.tve_share_item .tve_s_icon:before{content:"" !important;}.tve_s_in_share.tve_share_item .tve_s_icon:before{content:"" !important;}.tve_s_pin_share.tve_share_item .tve_s_icon:before{content:"" !important;}.tve_s_xing_share.tve_share_item .tve_s_icon:before{content:"" !important;}.tve_s_bluesky_share.tve_share_item .tve_s_icon:before{content:"" !important;}.tve_social_custom{display:table;}.tve_social_custom .tve_s_item{display:inline-block;vertical-align:middle;text-decoration:none;margin-top:5px;margin-right:10px;line-height:1.5em;}.tve_social_custom .tve_s_item.thrv_wrapper{margin-top:5px;margin-bottom:5px;}.tve_social_custom .tve_s_item:not(:last-child){margin-right:10px;}.rtl .tve_social_custom .tve_s_item:not(:first-child){margin-right:10px !important;}.rtl .tve_social_custom .tve_s_item:first-child{margin-right:0 !important;}.tve_social_custom .tve_s_item.tve_s_g_share{display:none !important;}.tve_social_custom .tve_s_item.tve_s_t_share .tve_s_count,.tve_social_custom .tve_s_item.tve_s_in_share .tve_s_count{display:none !important;}.tve_social_custom .tve_s_item.tve_s_x_share .tve_s_count,.tve_social_custom .tve_s_item.tve_s_in_share .tve_s_count{display:none !important;}.tve_social_custom .tve_s_item.tve_s_x_share .tve_s_count,.tve_social_custom .tve_s_item.tve_s_bluesky_share .tve_s_count{display:none !important;}.tve_social_custom .tve_s_link{box-shadow:none;display:table;border:0;text-decoration:none !important;color:#fff;}.tve_social_custom .tve_s_link:hover{text-decoration:none;}.tve_social_custom .tve_s_icon{display:flex;justify-content:center;align-items:center;text-align:center;vertical-align:middle;}.tve_social_custom .tve_s_icon.thrv_wrapper{margin:0;}.tve_social_custom .tve_s_icon svg.tcb-icon{fill:currentColor;color:currentColor;}.tve_social_custom .tve_s_text{display:table-cell;font-size:inherit;padding:0 20px 0 10px;vertical-align:middle;white-space:nowrap;flex-grow:1;}.tve_social_custom .tve_s_count{display:none;}.tve_social_custom.tve_social_ib .tve_s_text{display:none;}.tve_social_custom.tve_social_cb .tve_s_count{display:table-cell;font-size:inherit;padding:0 20px 0 10px;vertical-align:middle;}.tcb-social-vertical{display:flex;flex-direction:column;}.thrv_social_custom.tve_style_11{position:relative;}.thrv_social_custom.tve_style_12{background-color:#fff;box-shadow:0 0 60px 0 rgba(8,8,28,.05);padding:1px;border-radius:15px;}.thrv_social_custom .tve_s_share_count{display:none;vertical-align:middle;text-align:center;margin-right:10px;}.thrv_social_custom .tve_s_share_count .tve_s_cnt{margin:1px;display:block;font-size:2.1875em;font-weight:bold;}.thrv_social_custom .tve_s_share_count .tve_s_cnt_label{display:block;font-size:1.25em;margin:1px 10px 1px 1px;}.thrv_social_custom .tve_s_share_count a:hover{text-decoration:none;}.thrv_social_custom .tve_social_items{display:inline-block;vertical-align:middle;}@-moz-keyframes blink-text{0%{opacity:1;}50%{opacity:0;}100%{opacity:1;}}@-webkit-keyframes blink-text{0%{opacity:1;}50%{opacity:0;}100%{opacity:1;}}@keyframes blink-text{0%{opacity:1;}50%{opacity:0;}100%{opacity:1;}}.tve_count_loading .tve_s_count{-webkit-animation-name:blinker;-webkit-animation-duration:1s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-name:blink-text;-moz-animation-duration:1s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;animation-name:blink-text;animation-duration:1s;animation-timing-function:linear;animation-iteration-count:infinite;}.thrv_social_custom,.thrv_social_default{display:flex !important;align-items:center;justify-content:center;max-width:max-content;}.thrv_social_custom.tve_share_left,.thrv_social_default.tve_share_left{flex-direction:row;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_6,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_6{margin-right:2.267em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_7,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_7{margin-right:1.533em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_8,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_8{margin-right:2.083em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_9,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_9{margin-right:2.533em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_10,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_10{margin-right:1.043em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_11,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_11{margin-right:1.2em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_12,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_12{margin-left:2.19em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_13,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_13{margin-right:1.818em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_14,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_14{margin-right:1.3em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_15,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_15{margin-right:1.222em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_16,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_16{margin-right:.476em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_17,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_17{margin-right:1em;}.thrv_social_custom.tve_share_left .tve_s_share_count.tve_style_18,.thrv_social_default.tve_share_left .tve_s_share_count.tve_style_18{margin-right:.444em;}.thrv_social_custom.tve_share_left.tcb-social-vertical .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical .tve_s_share_count{align-self:center;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_6 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_6 .tve_s_share_count{height:2.8em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_7 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_7 .tve_s_share_count{height:2.733em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_9 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_9 .tve_s_share_count{height:2.333em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_10 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_10 .tve_s_share_count{margin-top:0;margin-right:.783em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_11 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_11 .tve_s_share_count{margin-top:0;margin-right:.914em;height:3.167em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_12 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_12 .tve_s_share_count{margin-top:1.429em;height:2.095em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_13 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_13 .tve_s_share_count{height:4.724em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_14 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_14 .tve_s_share_count{margin-top:0;margin-right:.5em;height:3.111em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_15 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_15 .tve_s_share_count{margin-top:0;margin-right:1.056em;height:3.167em;align-items:center;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_16 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_16 .tve_s_share_count{margin-top:0;margin-right:.714em;}.thrv_social_custom.tve_share_left.tcb-social-vertical.tve_style_18 .tve_s_share_count,.thrv_social_default.tve_share_left.tcb-social-vertical.tve_style_18 .tve_s_share_count{height:4.167em;display:flex !important;flex-direction:column;justify-content:center;}.thrv_social_custom.tve_share_right,.thrv_social_default.tve_share_right{flex-direction:row-reverse;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_6,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_6{margin-left:2.267em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_7,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_7{margin-left:1.533em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_8,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_8{margin-left:2.083em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_9,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_9{margin-left:2.533em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_10,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_10{margin-left:1.043em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_11,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_11{margin-left:1.2em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_12,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_12{margin-right:2.19em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_13,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_13{margin-left:1.818em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_14,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_14{margin-left:1.3em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_15,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_15{margin-left:1.222em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_16,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_16{margin-left:.476em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_17,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_17{margin-left:1em;}.thrv_social_custom.tve_share_right .tve_s_share_count.tve_style_18,.thrv_social_default.tve_share_right .tve_s_share_count.tve_style_18{margin-left:.444em;}.thrv_social_custom.tve_share_right.tcb-social-vertical .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical .tve_s_share_count{align-self:center;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_6 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_6 .tve_s_share_count{height:2.8em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_7 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_7 .tve_s_share_count{height:2.733em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_9 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_9 .tve_s_share_count{height:2.333em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_10 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_10 .tve_s_share_count{margin-top:0;margin-right:.783em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_11 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_11 .tve_s_share_count{margin-top:0;margin-right:.914em;height:3.167em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_12 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_12 .tve_s_share_count{margin-top:1.429em;height:2.095em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_13 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_13 .tve_s_share_count{height:4.724em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_14 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_14 .tve_s_share_count{margin-top:0;margin-right:.5em;height:3.111em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_15 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_15 .tve_s_share_count{margin-top:0;margin-right:1.056em;height:3.167em;align-items:center;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_16 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_16 .tve_s_share_count{margin-top:0;margin-right:.714em;}.thrv_social_custom.tve_share_right.tcb-social-vertical.tve_style_18 .tve_s_share_count,.thrv_social_default.tve_share_right.tcb-social-vertical.tve_style_18 .tve_s_share_count{height:4.167em;display:flex !important;flex-direction:column;justify-content:center;}.thrv_social_custom.tve_share_top,.thrv_social_default.tve_share_top{flex-direction:column;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_6,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_6{margin-bottom:.7em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_7,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_7{margin-bottom:1.533em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_8,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_8{margin-bottom:.917em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_9,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_9{margin-bottom:.733em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_10,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_10{margin-bottom:1.043em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_11,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_11{margin-bottom:1.2em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_12,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_12{margin-top:1.905em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_13,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_13{margin-bottom:1.576em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_14,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_14{margin-bottom:1.3em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_15,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_15{margin-bottom:1.222em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_16,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_16{margin-bottom:.476em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_17,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_17{margin-bottom:.722em;}.thrv_social_custom.tve_share_top .tve_s_share_count.tve_style_18,.thrv_social_default.tve_share_top .tve_s_share_count.tve_style_18{margin-bottom:.444em;}.thrv_social_custom.tve_share_top:not(.tcb-social-vertical) .tve_s_item,.thrv_social_default.tve_share_top:not(.tcb-social-vertical) .tve_s_item{margin-top:0;}.thrv_social_custom.tve_share_top.tcb-social-vertical.tve_style_10 .tve_s_share_count,.thrv_social_default.tve_share_top.tcb-social-vertical.tve_style_10 .tve_s_share_count{margin-top:0;margin-bottom:.783em;}.thrv_social_custom.tve_share_top.tcb-social-vertical.tve_style_11 .tve_s_share_count,.thrv_social_default.tve_share_top.tcb-social-vertical.tve_style_11 .tve_s_share_count{margin-top:0;margin-bottom:.914em;}.thrv_social_custom.tve_share_top.tcb-social-vertical.tve_style_14 .tve_s_share_count,.thrv_social_default.tve_share_top.tcb-social-vertical.tve_style_14 .tve_s_share_count{margin-top:0;margin-bottom:.5em;}.thrv_social_custom.tve_share_top.tcb-social-vertical.tve_style_15 .tve_s_share_count,.thrv_social_default.tve_share_top.tcb-social-vertical.tve_style_15 .tve_s_share_count{margin-top:0;margin-bottom:1.056em;}.thrv_social_custom.tve_share_top.tcb-social-vertical.tve_style_16 .tve_s_share_count,.thrv_social_default.tve_share_top.tcb-social-vertical.tve_style_16 .tve_s_share_count{margin-top:0;margin-bottom:.714em;}.thrv_social_custom.tve_share_bottom,.thrv_social_default.tve_share_bottom{flex-direction:column-reverse;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_6,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_6{margin-top:.7em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_7,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_7{margin-top:1.533em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_8,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_8{margin-top:.917em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_9,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_9{margin-top:.733em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_10,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_10{margin-top:1.043em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_11,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_11{margin-top:1.2em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_12,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_12{margin-bottom:1.905em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_13,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_13{margin-top:1.576em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_14,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_14{margin-top:1.3em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_15,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_15{margin-top:1.222em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_16,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_16{margin-top:.476em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_17,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_17{margin-top:.722em;}.thrv_social_custom.tve_share_bottom .tve_s_share_count.tve_style_18,.thrv_social_default.tve_share_bottom .tve_s_share_count.tve_style_18{margin-top:.444em;}.thrv_social_custom.tve_share_bottom:not(.tcb-social-vertical) .tve_s_item,.thrv_social_default.tve_share_bottom:not(.tcb-social-vertical) .tve_s_item{margin-bottom:0;}.thrv_social_custom.tve_share_bottom.tcb-social-vertical.tve_style_10 .tve_s_share_count,.thrv_social_default.tve_share_bottom.tcb-social-vertical.tve_style_10 .tve_s_share_count{margin-bottom:0;margin-top:.783em;}.thrv_social_custom.tve_share_bottom.tcb-social-vertical.tve_style_11 .tve_s_share_count,.thrv_social_default.tve_share_bottom.tcb-social-vertical.tve_style_11 .tve_s_share_count{margin-bottom:0;margin-top:.914em;}.thrv_social_custom.tve_share_bottom.tcb-social-vertical.tve_style_14 .tve_s_share_count,.thrv_social_default.tve_share_bottom.tcb-social-vertical.tve_style_14 .tve_s_share_count{margin-bottom:0;margin-top:.5em;}.thrv_social_custom.tve_share_bottom.tcb-social-vertical.tve_style_15 .tve_s_share_count,.thrv_social_default.tve_share_bottom.tcb-social-vertical.tve_style_15 .tve_s_share_count{margin-bottom:0;margin-top:1.056em;}.thrv_social_custom.tve_share_bottom.tcb-social-vertical.tve_style_16 .tve_s_share_count,.thrv_social_default.tve_share_bottom.tcb-social-vertical.tve_style_16 .tve_s_share_count{margin-bottom:0;margin-top:.714em;}.thrv_social_custom.tve_leftBtn,.thrv_social_default.tve_leftBtn{float:left;margin-right:10px;}.thrv_social_custom.tve_rightBtn,.thrv_social_default.tve_rightBtn{float:right;margin-left:10px;}.thrv_social_custom.tve_centerBtn,.thrv_social_default.tve_centerBtn{display:table;margin-left:auto;margin-right:auto;}.tqb-social-share-badge-container .tve_social_custom.tve_social_cb .tve_s_item.tve_share_item{padding-right:0;}.tve_style_1.tve_social_itb .tve_s_item{box-shadow:0 1px 1px 0 rgba(0,0,0,.28) inset,0 1px 1px 0 hsla(0,0%,100%,.7);}.tve_style_1.tve_social_ib .tve_s_item{box-shadow:0 2px 3px 0 rgba(0,0,0,.25);}.tve_style_2 .tve_s_item{box-shadow:0 1px 0 0 hsla(0,0%,100%,.5) inset,0 1px 1px 0 rgba(0,0,0,.24);}.tve_style_3 .tve_s_item{box-shadow:0 -4px 0 0 rgba(0,0,0,.15) inset;}.thrv_social_follow .tve_social_items,.thrive_author_links .tve_social_items{line-height:1em;}.thrv_social_follow .tve_social_items.social_full_width,.thrive_author_links .tve_social_items.social_full_width{margin-left:auto;margin-right:auto;display:table;float:none;}.thrv_social_follow .tve_s_icon:before,.thrive_author_links .tve_s_icon:before{content:none !important;}.thrv_social_follow .tve_s_link,.thrive_author_links .tve_s_link{display:inline-block;}.thrv_social_follow .tve_s_item.thrv_wrapper,.thrive_author_links .tve_s_item.thrv_wrapper{margin-top:4px;margin-bottom:4px;}.thrv_social_follow .tve_social_custom .tcb-social-follow,.thrive_author_links .tve_social_custom .tcb-social-follow{position:relative;}.thrv_social_follow .tve_social_custom .tve_s_icon,.thrive_author_links .tve_social_custom .tve_s_icon{padding:.6em;height:1.5em;width:1.5em;display:flex;box-sizing:content-box;border:unset !important;}.thrv_social_follow .tve_social_custom .tve_s_text,.thrive_author_links .tve_social_custom .tve_s_text{display:none;}.thrv_social_follow .tve_social_custom svg.tcb-icon,.thrive_author_links .tve_social_custom svg.tcb-icon{fill:currentColor;color:currentColor;height:1.5em;width:1.5em;vertical-align:bottom;}.thrv_social_follow .tve_social_custom .tve_sc_icon,.thrive_author_links .tve_social_custom .tve_sc_icon{fill:currentColor;color:currentColor;font-size:1.5em;vertical-align:bottom;}.thrv_social_follow .tve_social_custom .tve_s_item,.thrive_author_links .tve_social_custom .tve_s_item{margin-right:.3em;position:relative;z-index:1;overflow:hidden;vertical-align:bottom;}.thrv_social_follow .tve_social_custom .tve_s_item:last-of-type,.thrive_author_links .tve_social_custom .tve_s_item:last-of-type{margin-right:0;}.thrv_social_follow .tve_social_custom .tve_s_item a,.thrive_author_links .tve_social_custom .tve_s_item a{display:flex;padding:0;color:unset !important;fill:none !important;}body:not(.tve_editor_page) .thrv_social_follow .tve_s_item a[href=""],body:not(.tve_editor_page) .thrive_author_links .tve_s_item a[href=""]{display:none;}.tve_social_items a{font-size:unset;}.thrv_author_follow .tve_social_custom.tve_style_1 .tve_s_ig_share.tve_s_item,.thrv_author_follow .tve_social_custom.tve_style_2 .tve_s_ig_share.tve_s_item,.thrv_author_follow .tve_social_custom.tve_style_3 .tve_s_ig_share.tve_s_item,.thrv_author_follow .tve_social_custom.tve_style_4 .tve_s_ig_share.tve_s_item{background-image:linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv_author_follow .tve_social_custom.tve_style_1 .tve_s_ig_share.tve_s_item:hover,.thrv_author_follow .tve_social_custom.tve_style_1 .tve_s_ig_share.tve_s_item.tve-state-hover,.thrv_author_follow .tve_social_custom.tve_style_2 .tve_s_ig_share.tve_s_item:hover,.thrv_author_follow .tve_social_custom.tve_style_2 .tve_s_ig_share.tve_s_item.tve-state-hover,.thrv_author_follow .tve_social_custom.tve_style_3 .tve_s_ig_share.tve_s_item:hover,.thrv_author_follow .tve_social_custom.tve_style_3 .tve_s_ig_share.tve_s_item.tve-state-hover,.thrv_author_follow .tve_social_custom.tve_style_4 .tve_s_ig_share.tve_s_item:hover,.thrv_author_follow .tve_social_custom.tve_style_4 .tve_s_ig_share.tve_s_item.tve-state-hover{background-image:linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(45deg,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%) !important;}.thrv-page-section{position:relative;box-sizing:border-box !important;}.thrv-page-section .tve-page-section-out{position:absolute;width:100%;height:100%;left:0;top:0;box-sizing:border-box;transition:box-shadow .5s ease;overflow:hidden;}.thrv-page-section .tve-page-section-out .tve-bg-section-drag-down{width:100%;background:#3dbfe8;position:absolute;bottom:0;cursor:ns-resize;z-index:100001;height:2px;display:none;transition:all .35s ease;outline:10px solid rgba(0,0,0,0);}.thrv-page-section .tve-page-section-out .tve-bg-section-drag-down:hover{background:#29799c;height:7px;}.thrv-page-section .tve-page-section-out .tve-bg-section-drag-down:before{content:"";display:block;height:12px;width:100%;position:absolute;transition:all .5s ease;background:rgba(0,0,0,0);z-index:100003;}.thrv-page-section .tve-page-section-out .tve-bg-section-drag-down:before{top:-12px;}.thrv-page-section .tve-page-section-out .tve-bg-section-drag-down span{font-family:Rubik,sans-serif;color:#29799c;position:absolute;top:-30px;left:50%;}.thrv-page-section .tve-page-section-out.focused{box-shadow:0 12px 0 0 rgba(61,191,232,.5);}.thrv-page-section .tve-page-section-out.focused .tve-bg-section-drag-down{z-index:100002;}.thrv-page-section .tve-page-section-out.focused .tve-bg-section-drag-down:before{background-color:rgba(61,191,232,.5);}.thrv-page-section.tve-height-update .tve-page-section-in{min-height:150px;}.thrv-page-section.edit_mode .tve-bg-section-drag-down{display:block;}.thrv-page-section .tve-page-section-in{box-sizing:border-box;margin-right:auto;margin-left:auto;position:relative;z-index:1;min-height:40px;}.thrv-page-section .tve-page-section-in.tve-section-full-height{min-height:100vh !important;}.thrv-page-section.tcb-window-width .tve-page-section-in{padding-left:0;padding-right:0;}.thrv-page-section.on_hover:not(.edit_mode) .tve-bg-section-drag-down{display:block;}.tve-page-section-in>.thrv_wrapper:first-child,.tve-page-section-in>.tcb-clear:first-child>.thrv_wrapper{margin-top:0;}.tve-page-section-in>.thrv_wrapper:last-child,.tve-page-section-in>.tcb-clear:last-child>.thrv_wrapper{margin-bottom:0;}[data-styled-scrollbar="1"]{scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0);scrollbar-width:thin;overflow-x:hidden !important;}[data-styled-scrollbar="1"]:hover{scrollbar-color:rgba(108,110,113,.4) rgba(0,0,0,0);}[data-styled-scrollbar="1"]:hover::-webkit-scrollbar-thumb{background-color:rgba(108,110,113,.4);}[data-styled-scrollbar="1"]:hover::-webkit-scrollbar-thumb:hover{background-color:rgba(108,110,113,.7);}[data-styled-scrollbar="1"]::-webkit-scrollbar{width:7px;}[data-styled-scrollbar="1"]::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0);border-radius:7px;}[data-styled-scrollbar="1"]::-webkit-scrollbar-corner{background:rgba(0,0,0,0);}.thrv_wrapper .tve-content-box-background{position:absolute;width:100%;height:100% !important;left:0;top:0;overflow:hidden;background-clip:padding-box;}.thrv_wrapper.thrv-content-box{box-sizing:border-box;position:relative;min-height:10px;}.thrv_wrapper.thrv-content-box div:not(.thrv_icon):not(.ui-resizable-handle):not(.tve-auxiliary-icon-element){box-sizing:border-box;}.thrv_wrapper.thrv-content-box[data-style]{padding:30px;}.thrv_wrapper.thrv-content-box.cb_style_3{margin-bottom:28px;}.thrv_wrapper.thrv-content-box.cb_style_9{margin-bottom:33px;}.thrv_wrapper.thrv-content-box.cb_style_10{margin-bottom:30px;}.thrv_wrapper.thrv-content-box.cb_style_12{margin-bottom:40px;}.thrv_wrapper.thrv-content-box.cb_style_14{margin-top:31px;margin-bottom:31px;}.thrv_wrapper.thrv-content-box .cb_style_12-cb>.tcb-replaceable-placeholder,.thrv_wrapper.thrv-content-box .cb_style_11-cb>.tcb-replaceable-placeholder,.thrv_wrapper.thrv-content-box .cb_style_9-cb>.tcb-replaceable-placeholder,.thrv_wrapper.thrv-content-box .cb_style_8-cb>.tcb-replaceable-placeholder,.thrv_wrapper.thrv-content-box .cb_style_2-cb>.tcb-replaceable-placeholder,.thrv_wrapper.thrv-content-box .cb_style_1-cb>.tcb-replaceable-placeholder{color:#fff;}.tve-cb{display:inline-block;vertical-align:middle;clear:both;overflow:visible;width:100%;z-index:1;position:relative;min-height:10px;}.tve-cb .tve_cb_cnt{padding:20px;}.thrv_wrapper.thrv_content_reveal .tve_reveal_container{outline:none;display:inline-block;vertical-align:middle;clear:both;overflow:visible;width:100%;z-index:1;min-height:40px;position:relative;}@keyframes slide-wobble{0%{transform:translateX(30%);opacity:0;}25%{transform:translateX(-15%);}50%{transform:translateX(10%);}75%{transform:translateX(-5%);}100%{transform:translateX(0%);opacity:1;}}@keyframes fade-out{0%{transform:translateX(0%);opacity:1;}25%{transform:translateX(-5%);}100%{transform:translateX(100%);opacity:0;}}.tve_faq{transition:all,.5s,ease;background:#e4e4e4;}.tve_faq.tve_oFaq{background:#f8f8f8;}.tve_faq.tve_oFaq:hover{background:#f8f8f8 !important;}.tve_faq .tve_faqC{display:none;padding:10px 37px;}.tve_faq .tve_faqB:hover{cursor:pointer;}.tve_faq .tve_faqB:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.tve_faq h4{cursor:pointer;box-sizing:border-box !important;width:auto !important;padding:0 0 0 18px !important;font-size:100%;margin:0 !important;clear:none;}.tve_faq .tve_toggle{display:inline-block;position:absolute;width:13px;height:13px;top:20px;transform:rotate(0deg);}.tve_faq .tve_toggle_open{transform:rotate(90deg);}.tve_faq .tve_faqB{cursor:pointer;padding:17px;position:relative;}:not(#tve) .thrv_toggle_shortcode{position:relative;}:not(#tve) .thrv_toggle_shortcode .tve_faq:hover{background:#1abc9c;}:not(#tve) .thrv_toggle_shortcode .tve_faq:hover>.tve_faqI>.tve_faqB h4:not(.tve_toggle_open_text){color:#fff !important;}:not(#tve) .thrv_toggle_shortcode .tve_faq:hover>.tve_faqI>.tve_faqB span:not(.tve_toggle_open){fill:#fff;}:not(#tve) .thrv_toggle_shortcode .tve_faq.tve_oFaq:hover{background:#f8f8f8 !important;}:not(#tve) .thrv_toggle_shortcode .tve_faq.ui-sortable-handle:hover{background:rgba(0,0,0,.2) !important;outline:1px dashed rgba(0,0,0,.5) !important;}:not(#tve) .thrv_toggle_shortcode #tcb-toggle-panel{position:absolute;left:100%;top:100%;margin-bottom:-20px;}:not(#tve) .thrv_toggle .tve-toggle-grid{display:flex;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;}@media (max-width: 767px){:not(#tve) .thrv_toggle .tve-toggle-grid{flex-wrap:wrap;}}:not(#tve) .thrv_toggle .tve-toggle-column{box-sizing:border-box;flex:0 1 100%;justify-content:flex-start;width:100%;}:not(#tve) .thrv_toggle .thrv_toggle_item{background:rgba(0,0,0,0);position:relative;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title{display:flex;align-items:center;padding:10px;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve_toggle{display:none;position:relative;top:0;transition:all .25s ease;transform:rotate(var(--animation-angle,0deg));}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve_toggle path{fill:currentColor;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .thrv_text_element{width:100%;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve-toggle-text{width:100% !important;font-size:20px;line-height:2em;padding:0 !important;margin:0 !important;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve-toggle-text:before{display:none;}@media (max-width: 767px){:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve-toggle-text{white-space:pre-wrap;}}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-show-icon .tve_toggle{display:flex;margin-right:8px;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-icon-right{flex-direction:row-reverse;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-icon-right .tve_toggle{margin-right:0;margin-left:8px;}:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-icon-right .tve-toggle-text{flex:1;}:not(#tve) .thrv_toggle .thrv_toggle_item .tve_faqC{display:none;padding:0;border:none;}:not(#tve) .thrv_toggle .thrv_toggle_item .tve_faqC>.thrv_wrapper{margin:0;position:relative;}:not(#tve) .thrv_toggle .thrv_toggle_item .tcb-add-block-below{display:none;}:not(#tve) .thrv_toggle .thrv_toggle_item:hover .tcb-add-block-below{display:flex;position:absolute;bottom:0;}:not(#tve) .thrv_toggle.tve-draggable .tve-toggle-text{pointer-events:none;}:not(#tve) .thrv_toggle.toggle-edit-mode .tve_faqC,:not(#tve) .thrv_toggle.toggle-edit-mode .tve-toggle-text{pointer-events:all;}.thrv_toggle .tve-toggle-grid .thrv_toggle_item{margin-top:var(--toggle-vertical-space,7px);}@media (min-width: 1024px){.thrv_toggle .tve-toggle-grid .thrv_toggle_item:first-child{margin-top:0;}}@media (max-width: 1023px){.tve-toggle-grid>.tve-toggle-column>.thrv_toggle_item:first-child{margin-top:0;}}@media (max-width: 767px){.tve-toggle-grid>.tve-toggle-column:first-child>.thrv_toggle_item:first-child{margin-top:0;}.tve-toggle-grid>.tve-toggle-column:not(:first-child)>.thrv_toggle_item:first-child{margin-top:var(--toggle-vertical-space,7px);}}.thrv_toggle[data-ct-name=Original]{background-color:#f4f5f8;padding:14px;}.thrv_toggle[data-ct-name=Original] .thrv_toggle_item:hover:not(.tve-state-expanded){box-shadow:rgba(0,0,0,.06) 0 0 18px 0;}.thrv_toggle[data-ct-name=Original] .thrv_toggle_item .tve-state-expanded{box-shadow:rgba(0,0,0,.06) 0 0 18px 0;}.thrv_toggle[data-ct-name=Original] .tve-toggle-column{width:calc(50% - 8px);margin-left:8px;}.thrv_toggle[data-ct-name=Original] .thrv_toggle_title{box-shadow:none;background-color:#fff;padding:20px;}.thrv_toggle[data-ct-name=Original] .thrv_toggle_title .tve-toggle-text{color:var(--tve-color,var(--tcb-local-color-f4f0d));}.thrv_toggle[data-ct-name=Original] .thrv_toggle_title .tve_toggle{color:#50565f;font-size:17px;width:17px;height:17px;}.thrv_toggle[data-ct-name=Original] .tve_faqC .thrv_toggle_content{padding:30px 22px;}.thrv_toggle[data-ct-name=Original] .tve_faqC .thrv_toggle_content .tve-content-box-background{background:#fff;}.thrv_toggle[data-ct-name=Original] .tve_faqC .tve-cb p{color:#6e6e6e;font-size:15px;}.thrv_tw_qs .thrv_tw_qs_container{cursor:pointer;border-radius:3px;background-color:#f4f4f4;color:#686868;text-decoration:inherit;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_quote{padding:20px;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_quote p{margin:0;color:dimgray;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_qs_button{margin-bottom:-1px;margin-right:-1px;text-decoration:inherit;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_qs_button .fr-wrapper{display:inline-block;text-decoration:inherit;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_qs_button>span{text-decoration:inherit;border-radius:3px;cursor:pointer;padding:5px 20px;display:inline-block;color:#fff;background-color:#00aced;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_qs_button>span i{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAQCAMAAADH72RtAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAEczdu1XuiHczmWZEIqpHsQjkAAAAa0lEQVR42lXOWQ7DIAxF0eeJIaT1/ndbZLsiOT9I1yCMY9odpxHS5e5qfUE5U/fAC+xi2CRLmzHT8SFPC5ics5bFABZ/msB4Balfjwvbra9HG/EJHYG+UkFRrG7V9kP/23YkitR4EB6IcPwA6H4IT5+JKNgAAAAASUVORK5CYII=");background-repeat:no-repeat;background-position:0 50%;padding-left:20px;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_qs_button>span i.nitro-lazy{background-image:none !important;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_qs_button>span span{padding:0;background-image:none;}.thrv_tw_qs .thrv_tw_qs_container .thrv_tw_qs_button>span span.nitro-lazy{background-image:none !important;}.thrv_tw_qs:hover .thrv_tw_qs_container,.thrv_tw_qs.tve-state-hover .thrv_tw_qs_container{background-color:#5fd0fa;}.thrv_tw_qs:hover .thrv_tw_qs_container .thrv_tw_quote p,.thrv_tw_qs.tve-state-hover .thrv_tw_qs_container .thrv_tw_quote p{color:#fff;}.thrv_tw_qs:hover .thrv_tw_qs_container .thrv_tw_qs_button>span,.thrv_tw_qs.tve-state-hover .thrv_tw_qs_container .thrv_tw_qs_button>span{background-color:#009bd6;}.thrv_tw_qs.tve-twitter-x .thrv_tw_qs_container{background-color:#f4f4f4;color:#686868;}.thrv_tw_qs.tve-twitter-x .thrv_tw_qs_container .thrv_tw_quote p{color:#333 !important;}.thrv_tw_qs.tve-twitter-x .thrv_tw_qs_container .thrv_tw_qs_button>span{color:#fff;background-color:#000;}.thrv_tw_qs.tve-twitter-x .thrv_tw_qs_container .thrv_tw_qs_button>span i{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAMAAADDpiTIAAADAFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8HPQsIAAAA/3RSTlMAAQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpLTE1O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");background-size:85%;}.thrv_tw_qs.tve-twitter-x .thrv_tw_qs_container .thrv_tw_qs_button>span i.nitro-lazy{background-image:none !important;}.thrv_tw_qs.tve-twitter-x:hover .thrv_tw_qs_container,.thrv_tw_qs.tve-twitter-x.tve-state-hover .thrv_tw_qs_container{background-color:#333;}.thrv_tw_qs.tve-twitter-x:hover .thrv_tw_qs_container .thrv_tw_quote p,.thrv_tw_qs.tve-twitter-x.tve-state-hover .thrv_tw_qs_container .thrv_tw_quote p{color:#fff !important;}.thrv_tw_qs.tve-twitter-x:hover .thrv_tw_qs_container .thrv_tw_qs_button>span,.thrv_tw_qs.tve-twitter-x.tve-state-hover .thrv_tw_qs_container .thrv_tw_qs_button>span{background-color:#000;}.tve-progress-bar{background-color:#ebecf1;border-radius:5px;font-size:18px;position:relative;overflow:hidden;}.tve-progress-bar .thrv-inline-text{padding:2px 10px;min-width:30px;}.tve_progress_bar_fill{background-color:#1bbc9b;}.tve_progress_bar_fill_wrapper{width:20%;}.tve-progress-bar-label{color:#fff;display:block;font-weight:300;line-height:26px;overflow:visible;max-width:80%;padding:10px 0px;position:absolute;top:0;bottom:0;left:10px;z-index:3;}.tve-progress-bar-label .thrv-inline-text{display:block;margin:0px;}.tve-progress-bar-wrapper{margin:30px 0;--progress-height:25px;--nodes-completed:1;--nodes-completed-dual:1.5;--progress:20%;--progress-dual:50%;--padding-left:0px;--padding-right:0px;--candy-width:max(var(--progress-height),24px);}.tve-progress-bar-wrapper,.tve-progress-bar-wrapper *{box-sizing:border-box;}.tve-progress-bar-wrapper.with-labels .tve-progress-label-wrapper{display:flex;}.tve-progress-bar-wrapper.with-dual-progress .tve-progress-line--fill-dual{display:block !important;}.tve-progress-bar-wrapper[data-label-position=above] .tve-progress{flex-direction:column-reverse;}.tve-progress-bar-wrapper[data-label-position=below] .tve-progress{flex-direction:column;}.tve-progress-bar-wrapper .tve-progress{position:relative;display:flex;justify-content:space-between;flex-direction:column;}.tve-progress-bar-wrapper .tve-line-wrapper{position:relative;height:100%;display:flex;align-items:center;width:100%;min-height:var(--progress-height);padding:0;}.tve-progress-bar-wrapper .tve-line-wrapper .tve-progress-label{display:none;}.tve-progress-bar-wrapper .tve-line-wrapper:last-child:not(:nth-of-type(2)){display:none !important;}.tve-progress-bar-wrapper .tve-line-wrapper .tve-progress-line{min-height:var(--progress-height);background-color:var(--bar-color,#f00);width:calc(100% - var(--padding-left) - var(--padding-right));position:absolute;box-sizing:border-box;}.tve-progress-bar-wrapper .tve-line-wrapper .tve-progress-line--background{z-index:11;--bar-color:rgba(255,0,0,.1);}.tve-progress-bar-wrapper .tve-line-wrapper .tve-progress-line--fill{z-index:13;--bar-color:rgba(255,0,0,1);width:calc(var(--progress) - var(--padding-left) - var(--padding-right));}.tve-progress-bar-wrapper .tve-line-wrapper .tve-progress-line--fill-dual{display:none;z-index:12;--bar-color:rgba(255,0,0,.5);width:calc(var(--progress-dual) - var(--padding-left) - var(--padding-right));}.tve-progress-bar-wrapper .tve-line-wrapper .tve-progress-line.candy-stripes{background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.5),rgba(255,255,255,.5) calc(var(--candy-width) / 4),var(--bar-color) calc(var(--candy-width) / 4),var(--bar-color) calc(var(--candy-width) / 2));animation:candy-stripes .6s linear infinite;background-size:1000% 100%;}.tve-progress-bar-wrapper .tve-steps-wrapper{display:flex;align-items:center;}.tve-progress-bar-wrapper .tve-progress-label-wrapper{display:none;justify-content:space-between;}.tve-progress-bar-wrapper .tve-step{display:flex;flex-direction:column;position:relative;}.tve-progress-bar-wrapper[data-type=nodes].with-labels .tve-progress-label-wrapper--simple{display:none;}.tve-progress-bar-wrapper[data-type=nodes].with-labels .tve-progress-label-wrapper--nodes .tve-progress-label{position:absolute;}.tve-progress-bar-wrapper[data-type=nodes].with-labels .tve-progress-label-wrapper--nodes .tve-progress-label:first-of-type{position:static;}.tve-progress-bar-wrapper[data-type=nodes].with-labels .tve-progress-label-wrapper--nodes .tve-progress-label:last-of-type{position:static;}.tve-progress-bar-wrapper[data-type=simple] .tve-steps-wrapper .tve-progress-node{display:none;}.tve-progress-bar-wrapper[data-type=simple] .tve-steps-wrapper .tve-line-wrapper:not(:nth-child(2)){display:none;}.tve-progress-bar-wrapper[data-type=simple] .tve-steps-wrapper .tve-line-wrapper .tve-progress-line--fill{display:flex;align-items:center;}.tve-progress-bar-wrapper[data-type=simple].with-labels .tve-progress-label-wrapper--nodes{display:none;}.tve-progress-bar-wrapper[data-type=simple].with-labels[data-label-position=inside] .tve-line-wrapper{overflow:hidden;}.tve-progress-bar-wrapper[data-type=simple].with-labels[data-label-position=inside] .tve-line-wrapper .tve-progress-label{display:block;--tve-font-size:calc(var(--progress-height) - 7px);max-height:var(--progress-height);z-index:14;overflow:hidden;line-height:1em;margin-left:5px;}.tve-progress-bar-wrapper[data-type=simple].with-labels[data-label-position=inside] .tve-progress-label-wrapper--simple{display:none;}.tve-progress-bar-wrapper[data-type=simple].with-labels[data-label-position=above] .tve-progress-label-wrapper--simple,.tve-progress-bar-wrapper[data-type=simple].with-labels[data-label-position=below] .tve-progress-label-wrapper--simple{display:block;}.tve-progress-bar-wrapper[data-type=simple].thrv_data_element_start .tve-progress-line--fill{animation:new-progress-fill var(--anim-speed,3s) linear;}.tve-progress-bar-wrapper[data-type=simple].thrv_data_element_start .tve-progress-line--fill-dual{animation:new-progress-fill-second var(--anim-speed,3s) linear;}.tve-progress-bar-wrapper .tve-progress-node{margin:0;padding:5px;}.tve-progress-bar-wrapper .tve-progress-node,.tve-progress-bar-wrapper .tve-progress-node *{box-sizing:content-box !important;}.tve-progress-bar-wrapper .tve-progress-node .tve-progress-icon{margin:0;display:flex;align-items:center;justify-content:center;}.tve-progress-icon{--tve-icon-size:30px;font-size:30px;width:30px;height:30px;}:not(#progress) .tve-progress-bar-wrapper[data-type=simple].with-labels[data-label-position=inside] .tve-line-wrapper .tve-progress-label,:not(#progress) .tve-progress-bar-wrapper[data-type=simple].with-labels[data-label-position=inside] .tve-line-wrapper .tve-progress-label *{font-size:min(var(--progress-height) - 7px,var(--tve-font-size)) !important;}@keyframes new-progress-fill{0%{width:min(var(--progress,100%),var(--anim-start,0%));}100%{width:calc(var(--progress) - var(--padding-left) - var(--padding-right));}}@keyframes new-progress-fill-second{0%{width:var(--anim-start,0%);}100%{width:calc(var(--progress-dual) - var(--padding-left) - var(--padding-right));}}@keyframes candy-stripes{0%{background-position:0 0;}100%{background-position:calc(var(--candy-width) * -3 / 4) 0px;}}@media (min-width: 1024px){.tve-progress-bar-wrapper[data-type=nodes][data-label-display-d=sides] .tve-progress-label-wrapper--nodes .tve-progress-label{display:none;}.tve-progress-bar-wrapper[data-type=nodes][data-label-display-d=sides] .tve-progress-label-wrapper--nodes .tve-progress-label:first-of-type,.tve-progress-bar-wrapper[data-type=nodes][data-label-display-d=sides] .tve-progress-label-wrapper--nodes .tve-progress-label:last-of-type{display:block;}}@media (min-width: 768px)and (max-width: 1023px){.tve-progress-bar-wrapper[data-type=nodes][data-label-display-t=sides] .tve-progress-label-wrapper--nodes .tve-progress-label{display:none;}.tve-progress-bar-wrapper[data-type=nodes][data-label-display-t=sides] .tve-progress-label-wrapper--nodes .tve-progress-label:first-of-type,.tve-progress-bar-wrapper[data-type=nodes][data-label-display-t=sides] .tve-progress-label-wrapper--nodes .tve-progress-label:last-of-type{display:block;}}@media (max-width: 767px){.tve-progress-bar-wrapper[data-type=nodes][data-label-display-m=sides] .tve-progress-label-wrapper--nodes .tve-progress-label{display:none;}.tve-progress-bar-wrapper[data-type=nodes][data-label-display-m=sides] .tve-progress-label-wrapper--nodes .tve-progress-label:first-of-type,.tve-progress-bar-wrapper[data-type=nodes][data-label-display-m=sides] .tve-progress-label-wrapper--nodes .tve-progress-label:last-of-type{display:block;}}.tve_fill_counter_circle_inner{stroke:#1abc9c;}.thrv-fill-counter{border-radius:100%;display:table;color:#1abc9c;}.thrv-fill-counter.tve_normalfc.thrv_data_element_start .tve_fill_counter_circle circle{animation:fill-counter-svg-general 2s linear;}@supports (-webkit-touch-callout: none){.tve_fill_counter_n .tve_fill_counter_circle circle{transition:none !important;}}@keyframes fill-counter-svg-general{from{stroke-dasharray:0 3000;}}.thrv-testimonial{padding:0;margin-top:0;margin-bottom:0;}.tcb-testimonial-image{text-align:center;}.tve-testimonial-content p{padding-right:60px;}.thrv-testimonial-icon-one{font-size:40px;width:40px;color:#d6dde2;}.thrv-testimonial-icon-two{font-size:40px;width:40px;position:absolute;left:40px;top:45px;}.thrv-testimonial-template-one{background-color:#fff;}.thrv-testimonial-template-one .tve_image_caption{margin:0 auto;}.thrv-testimonial-template-one .thrv_wrapper p{margin:0;}.thrv-testimonial-template-one .thrv_wrapper .thrv_icon{margin-bottom:20px;}.thrv-testimonial-template-one .thrv_wrapper .tve_image_caption{margin:0 auto;}.thrv-testimonial-template-one .tve-testimonial-author{font-size:20px;color:#555;}.thrv-testimonial-template-one .tve-testimonial-role{font-size:12px;color:#a6b2b7;}.thrv-testimonial-template-two{background-color:#e785a1;position:relative;font-size:22px;}.thrv-testimonial-template-two .tve_image_frame{width:100%;}.thrv-testimonial-template-two .tve_image_frame .tve_image{width:100%;}@media only screen and (max-width: 774px){.thrv-testimonial-template-two .tve_image_frame .tve_image{width:240px;}}.thrv-testimonial-template-two .tve_image_caption{margin:0;}.thrv-testimonial-template-two .tcb-flex-row{padding:0;}.thrv-testimonial-template-two .tcb-flex-col{position:relative;padding-top:0;}.thrv-testimonial-template-two .tcb-flex-col .tcb-col{padding:0;}.thrv-testimonial-template-two .tcb-flex-col:last-of-type .tcb-col{padding:38px 65px 40px 95px;}.thrv-testimonial-template-two .tcb-flex-col:last-of-type .tcb-col .thrv_text_element{clear:both;}.thrv-testimonial-template-two p{margin:0 0 40px 0;color:#fff;}.thrv-testimonial-template-two .tve-testimonial-author{font-size:14px;margin:0;}.thrv-testimonial-template-two .tve-testimonial-role{font-size:10px;margin:0;}.thrv-rating{display:table;}.thrv-rating svg{width:1em;height:1em;display:inline-block;}svg .masterCard-style-1-st0{fill:#1a2f59;}svg .masterCard-style-1-st1{fill:#f16022;}svg .masterCard-style-1-st2{fill:#ec1d25;}svg .masterCard-style-1-st3{fill:#f9a11b;}svg .visa-style-1-st0{fill:#3554a5;}svg .visa-style-1-st1{fill:#fff;}svg .americanExpress-style-1-st0{fill:#38a1d8;}svg .americanExpress-style-1-st1{fill:#fff;}svg .payPal-style-1-st0{fill:#f3f3f3;}svg .payPal-style-1-st1{fill-rule:evenodd;clip-rule:evenodd;fill:#02a2d3;}svg .payPal-style-1-st2{fill-rule:evenodd;clip-rule:evenodd;fill:#234190;}svg .discover-style-1-st0{fill:#faa21b;}svg .discover-style-1-st1{fill:#fff;}svg .applePay-style-1-st0{fill:#231f20;}svg .applePay-style-1-st1{fill:#fff;}svg .bitcoin-style-1-st0{fill:#f7931a;}svg .bitcoin-style-1-st1{fill:#fff;}svg .googlePay-style-1-st0{fill:#4285f4;}svg .googlePay-style-1-st1{fill:#34a853;}svg .googlePay-style-1-st2{fill:#fbbc04;}svg .googlePay-style-1-st3{fill:#ea4335;}svg .googlePay-style-1-st4{fill:#fff;}svg .visa-style-2-st0{fill:#f3f3f3;}svg .visa-style-2-st1{fill:#0b67b2;}svg .visa-style-2-st2{fill:#faa634;}svg .masterCard-style-2-st0{fill:#1a2f59;}svg .masterCard-style-2-st1{fill:#d82431;}svg .masterCard-style-2-st2{fill:#f1ab3c;}svg .masterCard-style-2-st3{fill:#fff;}svg .americanExpress-style-2-st0{fill:#38a1d8;}svg .americanExpress-style-2-st1{fill:#f1f2f2;}svg .payPal-style-2-st0{fill:#f3f3f3;}svg .payPal-style-2-st1{fill:#2791c3;}svg .payPal-style-2-st2{fill:#27356a;}svg .discover-style-2-st0{fill:#f3f3f3;}svg .discover-style-2-st1{fill:#faa21b;}svg .discover-style-2-st2{fill:#23201f;}svg .discover-style-2-st3{fill:#f48025;}svg .bitcoin-style-2-st0{fill:#201d1f;}svg .bitcoin-style-2-st1{fill:#f7931a;}svg .googlePay-style-2-st0{fill:#f3f4f8;}svg .googlePay-style-2-st1{fill:#5f6368;}svg .googlePay-style-2-st2{fill:#4285f4;}svg .googlePay-style-2-st3{fill:#34a853;}svg .googlePay-style-2-st4{fill:#fbbc04;}svg .googlePay-style-2-st5{fill:#ea4335;}svg .applePay-style-2-st0{fill:none;stroke:#231f20;stroke-width:2;stroke-miterlimit:10;}svg .applePay-style-2-st1{fill:#231f20;}svg .americanExpress-style-3-st0{fill:#38a1d8;}svg .americanExpress-style-3-st1{fill:#f3f3f3;}svg .discover-style-3-st0{fill:#f3f3f3;}svg .discover-style-3-st1{fill:#faa21b;}svg .discover-style-3-st2{fill:#23201f;}svg .masterCard-style-3-st0{fill:#1a2f59;}svg .masterCard-style-3-st1{fill:#f16022;}svg .masterCard-style-3-st2{fill:#ec1d25;}svg .masterCard-style-3-st3{fill:#f9a11b;}svg .masterCard-style-3-st4{fill:#f3f3f3;}svg .payPal-style-3-st0{fill:#f3f3f3;}svg .payPal-style-3-st1{fill:#0b67b2;}svg .payPal-style-3-st2{fill:#02a2d3;}svg .visa-style-3-st0{fill:#f3f3f3;}svg .visa-style-3-st1{fill:#0b67b2;}svg .visa-style-3-st2{fill:#faa634;}svg .applePay-style-3-st0{fill:#231f20;}svg .bitcoin-style-3-st0{fill:#e8e3df;}svg .bitcoin-style-3-st1{fill:#f7931a;}svg .bitcoin-style-3-st2{fill:#262424;}svg .googlePay-style-3-st0{fill:#f3f4f8;}svg .googlePay-style-3-st1{fill:#5f6368;}svg .googlePay-style-3-st2{fill:#ea4335;}svg .googlePay-style-3-st3{fill:#4285f4;}svg .googlePay-style-3-st4{fill:#fbbc04;}svg .googlePay-style-3-st5{fill:#34a853;}svg .americanExpress-style-4-st0{fill:#595e60;}svg .discover-style-4-st0{fill:#595e60;}svg .masterCard-style-4-st0{fill:#595e60;}svg .payPal-style-4-st0{fill:#595e60;}svg .visa-style-4-st0{fill:#595e60;}svg .applePay-style-4-st0{fill:#595e60;}svg .applePay-style-4-st1{fill:#fff;}svg .bitcoin-style-4-st0{fill:#595e60;}svg .bitcoin-style-4-st1{fill:#fff;}svg .googlePay-style-4-st0{fill:#595e60;}svg .googlePay-style-4-st1{fill:#f3f4f8;}svg .googlePay-style-4-st2{fill:#5f6368;}svg .googlePay-style-4-st3{fill:#4285f4;}svg .googlePay-style-4-st4{fill:#34a853;}svg .googlePay-style-4-st5{fill:#fbbc04;}svg .googlePay-style-4-st6{fill:#ea4335;}svg .googlePay-style-4-st7{fill:none;stroke:#231f20;stroke-width:2;stroke-miterlimit:10;}svg .googlePay-style-4-st8{fill:#fff;}svg .googlePay-style-4-st9{fill:#231f20;}.thrv-credit{display:table;}.thrv-credit svg{display:inline-block;width:2em;height:2em;}.thrv-credit .tcb-bitcoin-card,.thrv-credit .tcb-googlePay-card,.thrv-credit .tcb-applePay-card{padding-left:2px;}.thrv_responsive_video{width:100%;min-width:100px;}.thrv_responsive_video video{max-width:100%;position:relative;}.thrv_responsive_video .tcb-video-float-container{transition:all .5s ease-out,margin 0s;}.thrv_responsive_video .tcb-video-float-container.top-left .video_overlay .overlay_play_button svg,.thrv_responsive_video .tcb-video-float-container.top-right .video_overlay .overlay_play_button svg,.thrv_responsive_video .tcb-video-float-container.bottom-left .video_overlay .overlay_play_button svg,.thrv_responsive_video .tcb-video-float-container.bottom-right .video_overlay .overlay_play_button svg,.thrv_responsive_video .tcb-video-float-container.keep-original .video_overlay .overlay_play_button svg{max-height:50%;}.thrv_responsive_video.tcb-no-perspective{perspective:none !important;}#tve_editor .thrv_responsive_video{box-sizing:border-box;}.tcb-no-transform{transform:none !important;}.tcb-icon{display:inline-block;width:1em;height:1em;line-height:1em;vertical-align:middle;stroke-width:0;stroke:currentColor;fill:currentColor;box-sizing:content-box;transform:rotate(var(--tcb-icon-rotation-angle,0deg));}.tve_editor_page .tcb-icon{transition:transform .25s ease;}.tcb-icon .fa-secondary{opacity:.4;}svg.tcb-icon path:not([fill=none]),symbol[id^=tcb-icon-] path:not([fill=none]){fill:inherit !important;stroke:inherit !important;transition:none;}.thrv_icon{text-align:center;}.thrv_icon .tcb-icon-inline{box-sizing:content-box !important;display:inline-block;font-size:inherit;height:auto;width:auto;text-align:center;text-decoration:none !important;background-clip:padding-box;}.tve-ios-browser{background-clip:content-box;}.m-icons .fa-secondary{opacity:.4;}.tcb-icon-gradient svg.tcb-icon path:not([fill=none]){fill:var(--tcb-gradient-default-value,"inherit") !important;}.tcb-icon-gradient.tve-state-hover svg.tcb-icon path:not([fill=none]),.tcb-icon-gradient:hover svg.tcb-icon path:not([fill=none]){fill:var(--tcb-gradient-hover-value,var(--tcb-gradient-default-value,"inherit")) !important;}.tcb-icon-gradient[data-style-d*=inverted] svg.tcb-icon path:not([fill=none]),.tcb-icon-gradient[data-style-t*=inverted] svg.tcb-icon path:not([fill=none]),.tcb-icon-gradient[data-style-m*=inverted] svg.tcb-icon path:not([fill=none]){fill:inherit !important;}.tve-avatar-picker-element{--tve-avatar-image-size:240px;--tve-avatar-icon-size:14px;min-height:var(--tve-avatar-image-size);max-width:var(--tve-avatar-image-size);width:100%;}.tve-avatar-picker-element .tve-avatar-picker-image{min-height:inherit;max-width:inherit;box-sizing:border-box;background-size:cover;background-repeat:no-repeat;background-position:center center;}.tve-avatar-picker-element .tve-avatar-edit-icon svg{width:var(--tve-avatar-icon-size);height:var(--tve-avatar-icon-size);}.tve-avatar-picker-element:not([data-button-type=button]){position:relative;}.tve-avatar-picker-element:not([data-button-type=button]) .tve-avatar-edit-text{opacity:0 !important;display:none;}.tve-avatar-picker-element:not([data-button-type=button]) .tve-avatar-edit-icon svg{fill:#fff;}.tve-avatar-picker-element[data-button-type=overlay]{--tve-avatar-icon-size:clamp(14px,calc(var(--tve-avatar-image-size) / 10),42px);}.tve-avatar-picker-element[data-button-type=overlay]:hover .tve-avatar-edit-button{display:inline-block;}.tve-avatar-picker-element[data-button-type=overlay] .tve-avatar-edit-button{display:none;margin:0;padding:0;top:0;left:0;position:absolute;width:100% !important;height:100%;background:rgba(0,0,0,.5);}.tve-avatar-picker-element[data-button-type=overlay] .tve-avatar-edit-button .tve-avatar-edit-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}.tve-avatar-picker-element[data-button-type=icon]{--distance-from-edge:calc(var(--tve-avatar-image-size) / 2 * .42 - 35px);}.tve-avatar-picker-element[data-button-type=icon][data-icon-position=top-left] .tve-avatar-edit-button{left:var(--distance-from-edge);}.tve-avatar-picker-element[data-button-type=icon][data-icon-position=top-right] .tve-avatar-edit-button{right:var(--distance-from-edge);}.tve-avatar-picker-element[data-button-type=icon] .tve-avatar-edit-button{margin:0;top:var(--distance-from-edge);position:absolute;width:38px !important;height:38px !important;padding:9px 10px 12px 11px;border:solid 2px hsla(0,0%,100%,.16);border-radius:50%;background-color:rgba(0,0,0,.74);}.tve-avatar-picker-element[data-button-type=button]{display:flex;}.tve-avatar-picker-element[data-button-type=button][data-button-position=top]{flex-direction:column-reverse;}.tve-avatar-picker-element[data-button-type=button][data-button-position=right]{flex-direction:row;}.tve-avatar-picker-element[data-button-type=button][data-button-position=bottom]{flex-direction:column;}.tve-avatar-picker-element[data-button-type=button][data-button-position=left]{flex-direction:row-reverse;}.tve-avatar-picker-element[data-button-type=button][data-button-position=left],.tve-avatar-picker-element[data-button-type=button][data-button-position=right]{align-items:center;justify-content:space-between;}.tve-avatar-picker-element[data-button-type=button][data-button-position=left] .tve-avatar-picker-image,.tve-avatar-picker-element[data-button-type=button][data-button-position=right] .tve-avatar-picker-image{flex:45% 0 1;}.tve-avatar-picker-element[data-button-type=button][data-button-position=left] .tve-avatar-edit-button,.tve-avatar-picker-element[data-button-type=button][data-button-position=right] .tve-avatar-edit-button{flex:45% 1 0;}.tve-avatar-picker-element[data-button-type=button] .tve-avatar-edit-icon{height:12px;width:12px;}.tve-avatar-picker-element[data-button-type=button] .tve-avatar-edit-icon svg{fill:#0c054a;}.tve-avatar-picker-element[data-button-type=button] .tve-avatar-edit-button{padding:10px;border-radius:12px;background-color:#eeecff !important;}.tve-avatar-picker-element[data-button-type=button] .tve-avatar-edit-text{color:#0c054a;font-size:12px;display:inline-block;}[data-modal-type=avatar-picker]{--tve-connection-type-width:216px;}[data-modal-type=avatar-picker] .tve-modal-content{display:flex;justify-content:space-between;padding:55px 20px !important;}[data-modal-type=avatar-picker] .tve-modal-content>div{flex-basis:50%;}[data-modal-type=avatar-picker] .tve-avatar-picker-title{font-family:Arial;font-size:18px;font-weight:bold;margin-bottom:24px;}[data-modal-type=avatar-picker] .tve-avatar-connections-list{display:flex;flex-direction:column;min-width:200px;margin-right:10px;}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item{border:solid 1px #dadce0;padding:5px;margin-top:10px;border-radius:4px;width:var(--tve-connection-type-width);}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item:hover{background-color:rgba(66,133,244,.04);border-color:#d2e3fc;}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item[data-selected=true]{background-color:rgba(66,133,244,.1);}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item[data-selected=true] .tve-avatar-extra-options{display:flex !important;}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item>button{background:rgba(0,0,0,0) !important;border:0;width:100%;padding:3px 10px;color:#0a0a0a !important;display:flex;align-items:center;font-size:14px;font-family:Arial,Helvetica,sans-serif;}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item>button>svg{margin-right:10px;width:18px;height:18px;}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item .tve-avatar-extra-options{margin-top:3px;display:none;justify-content:space-between;}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item .tve-avatar-extra-options>input{border:1px solid #ccc !important;border-radius:3px;padding:0 10px !important;height:30px;font-size:14px;width:100%;}[data-modal-type=avatar-picker] .tve-avatar-connections-list .tve-avatar-connection-item .tve-avatar-extra-options>button{width:36px;height:29px;border:0;margin:0 0 0 5px;padding:0 10px;border-radius:3px;background-color:#00ab47;color:#fff;font-family:none;font-size:large;}[data-modal-type=avatar-picker] .tve-avatar-image-preview{margin:0 auto;width:100px;height:100px;border-radius:50%;background-size:cover;background-repeat:no-repeat;background-position:center center;}.thrv-button,.thrv-button-group-item,.tve-form-button{display:table !important;max-width:100%;margin-left:auto;margin-right:auto;}.thrv-button.thrv_wrapper,.thrv-button-group-item.thrv_wrapper,.tve-form-button.thrv_wrapper{padding:0;}.thrv-button .tcb-plain-text,.thrv-button-group-item .tcb-plain-text,.tve-form-button .tcb-plain-text{cursor:pointer;}.tve-form-button{position:relative;z-index:1;}.tve-form-button:focus-within .tve-form-button-submit{box-shadow:0 2px 4px rgba(142,142,142,.5);}@-moz-document url-prefix(){.thrv-button,.thrv-button-group-item,.tve-form-button{line-height:0;}}.tcb-with-icon:not(.tcb-flip) .tcb-button-texts{padding-left:15px;}.tcb-with-icon.tcb-flip .tcb-button-icon{padding-left:15px;}.tcb-with-icon .tcb-button-icon{display:block;}.tcb-with-icon .tcb-button-icon .thrv_wrapper.thrv_icon{margin:0;}.tve-state-hover[data-button-style=gradient]{background-image:linear-gradient(90deg,#118e75 0%,#1abc9c 100%);}.tve-state-hover .tcb-button-link{background-color:#15a288 !important;}a.tcb-button-link{background-color:#1abc9c;padding:12px 15px;font-size:18px;box-sizing:border-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;align-items:center;-webkit-align-items:center;overflow:hidden;width:100%;text-align:center;line-height:1.2em;}a.tcb-button-link:hover{background-color:#15a288;}.tcb-flip a.tcb-button-link{flex-direction:row-reverse;}.thrv-button a.tcb-button-link,.thrv-button-group-item a.tcb-button-link,.tve-form-button a.tcb-button-link{text-decoration:none !important;color:#fff;}a.tcb-button-link>span:before{position:absolute;content:"";display:none;top:-100px;bottom:-100px;width:1px;left:10px;background-color:#007900;}a.tcb-button-link .tcb-button-icon .tve_sc_icon{font-style:normal !important;font-weight:normal !important;text-decoration:none !important;}span.tcb-button-texts{color:inherit;display:block;flex:1 1 auto;-webkit-flex:1;position:relative;}span.tcb-button-texts>span{display:block;padding:0;}.tcb-with-divider:not(.tcb-flip) span.tcb-button-texts{padding-left:20px;}.tcb-with-divider:not(.tcb-flip) span.tcb-button-texts:before{display:block;}.tcb-button-text.tcb-highlight-added span:not([class*=tcb-text-highlight-]){background-color:var(--tcb-text-highlight-color,transparent) !important;z-index:0;}span.tcb-button-icon{display:none;font-size:1em;line-height:0;position:relative;color:inherit;}.tcb-with-divider.tcb-flip span.tcb-button-icon{padding-left:20px;}.tcb-with-divider.tcb-flip span.tcb-button-icon:before{display:block;left:5px;}span.tcb-button-icon .tcb-icon{height:1em;}.thrv-button-group{text-align:center;}.thrv-button-group .thrv-button-group-item{display:inline-block !important;margin-top:0;margin-bottom:0;}.thrv-button-group .thrv-button-group-item.tcb-active-state a{box-shadow:none;}.thrv-button-group .thrv-button-group-item.tcb-active-state a:hover{box-shadow:none;}.thrv_wrapper.thrv-pricing-table{padding:0;}.thrv_wrapper.thrv-pricing-table .thrv-button-group .thrv-button-group-item{margin-left:20px;}@media (max-width: 767px){.thrv_wrapper.thrv-pricing-table .thrv-button-group .thrv-button-group-item{margin-left:0;}}.thrv_wrapper.thrv-pricing-table .thrv-button-group .thrv-button-group-item .tcb-button-link{height:100%;padding:10px 35px;background-color:#fff;font-size:13px;font-weight:600;color:#858585;text-transform:uppercase;}.thrv_wrapper.thrv-pricing-table .thrv-button-group .thrv-button-group-item.tcb-active-state a{background-color:#29c1ec;color:#fff;}.thrv_wrapper.thrv-pricing-table .thrv-button-group .thrv-button-group-item.tve-state-hover .tcb-button-link{box-shadow:0 4px 14px 0 rgba(110,125,131,.25);}.thrv_wrapper.thrv-pricing-table .thrv-button-group .thrv-button-group-item:not(.tcb-active-state).tve-state-hover a.tcb-button-link{background-color:#fff !important;}.thrv_wrapper.thrv-pricing-table .tcb-pricing-table-box-container{margin-top:40px;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col{margin:0;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tcb-pt-cb-wrapper{padding:59px 33px 35px;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tcb-pt-button .tcb-pt-button-link{background-color:#85959a;font-size:13px;text-transform:uppercase;padding:10px 29px;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tve-cb .tcb-pt-card-title,.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tve-cb .tcb-pt-card-description{margin:0 0 26px;color:#c0cad1;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tve-cb .tcb-pt-card-title{color:#85959a;font-size:17px;text-transform:uppercase;margin-bottom:10px;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tve-cb .tcb-pt-card-description p{font-size:13px;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tve-cb li{color:#879198;font-size:14px;text-align:left;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tve-cb .tcb-pt-button{margin-bottom:0;}.thrv_wrapper.thrv-pricing-table .tcb-flex-col .tve-cb p{margin-bottom:0;}.thrv_wrapper.thrv-pricing-table .tcb-pricing-table-box-container .tcb-pt-featured-box{margin-top:0;}.thrv_wrapper.thrv-pricing-table .tcb-pricing-table-box-container .tcb-pt-featured-box .tcb-pt-cb-wrapper{height:100%;}.thrv_wrapper.thrv-pricing-table .tcb-pricing-table-box-container .tcb-pt-featured-box .tve-content-box-background{border-top-color:#29c1ec;}.thrv_wrapper.thrv-pricing-table .tcb-pricing-table-box-container .tcb-pt-featured-box .tcb-pt-card-title{color:#29c1ec;}.thrv_wrapper.thrv-pricing-table .tcb-pricing-table-box-container .tcb-pt-featured-box .tcb-pt-button .tcb-pt-button-link{background-color:#29c1ec;}.tcb-pt-button .tcb-pt-button-link{border-radius:50px;}.tcb-pt-button .tcb-pt-button-link:hover{transition:box-shadow .35s ease-in;box-shadow:0 4px 14px 0 rgba(110,125,131,.25);}.tcb-pt-button.tve-state-hover .tcb-pt-button-link{box-shadow:0 4px 14px 0 rgba(110,125,131,.25);background-color:#85959a !important;}.tcb-pt-featured-box .tcb-pt-button .tcb-pt-button-link:hover{transition:box-shadow .35s ease-in;box-shadow:0 4px 14px 0 rgba(36,123,160,.5);}.tcb-pt-featured-box .tcb-pt-button.tve-state-hover .tcb-pt-button-link{box-shadow:0 4px 14px 0 rgba(36,123,160,.5);background-color:#29c1ec !important;}.tcb-pt-card{border-radius:4px;border-top:6px solid #85959a;box-shadow:0 10px 24px 0 rgba(0,0,0,.15);background-color:#fff;}.tcb-pt-card-content{text-align:center;}.tcb-pricing-table-box-container{margin-left:-16px;}.thrv-pricing-table .thrv-button-group-item .tcb-button-link{border:1px solid #e6e9eb;border-radius:50px;}.thrv-pricing-table .thrv-button-group-item.tcb-active-state .tcb-button-link{border-color:#29c1ec;}.thrv-pricing-table .tcb-pt-price{display:inline-block;vertical-align:top;font-size:17px;}.thrv-pricing-table .tcb-pt-price p{color:#50565f;font-style:normal;}.thrv-pricing-table .tcb-pt-currency{padding-top:8px;margin-right:-5px;}.thrv-pricing-table .tcb-pt-value p{font-size:37px;}.thrv-pricing-table .tcb-pt-period{vertical-align:bottom;padding-bottom:8px;margin-left:-5px;}.thrv-pricing-table .tcb-pt-period p{color:#c0cad1;}.thrv-pricing-table .tcb-button-link:hover{box-shadow:0 4px 14px 0 rgba(110,125,131,.25);}.thrv-pricing-table .tcb-active-state .tcb-button-link:hover{box-shadow:none;}.thrv_wrapper.thrv-divider{padding-top:20px;padding-bottom:20px;margin:0;}.thrv_wrapper.thrv-divider hr{margin:0;}.thrv_wrapper.thrv-divider.tve-vert-divider{padding:0;min-height:100%;}.thrv_wrapper.thrv-divider.tve-vert-divider hr{height:100% !important;background-repeat:repeat-y !important;border:none !important;min-width:1px;}.thrv_wrapper.thrv-divider.tve-vert-divider hr.tve_sep-1{background-image:linear-gradient(#d9d9d9,#d9d9d9);}.tve_sep-1{border-style:solid !important;border-top:0 !important;border-left:0 !important;border-right:0 !important;min-width:10px;}.tve_sep-2,.tve_sep-3,.tve_sep-4,.tve_sep-5{background-repeat:repeat-x;width:100%;min-width:10px;}.thrv_contents_table .tve_contents_table{box-sizing:border-box;}.tve_ct_title{background-color:#1abc9c;}.tve-toc{--tve-toc-indent:30px;position:relative;height:auto !important;}.tve-toc div:not(.thrv_icon){box-sizing:border-box;}.tve-toc .tve_ct_content{flex-wrap:wrap;}.tve-toc .ct_column{max-width:100%;}.tve-toc .ct_column div{max-width:100%;}.tve-toc .ct_column:not(:last-child){padding-right:5px;}.tve-toc .ct_column:not(:first-child){padding-left:5px;}.tve-toc.canvas-mode:before{content:none;}.tve-toc .tve-toc-list{position:relative;}.tve-toc .tve-toc-heading{margin:0;color:var(--tve-color);display:flex;align-items:baseline;}.tve-toc .tve-toc-heading.tve-toc-heading-level1{margin-left:var(--tve-toc-indent);}.tve-toc .tve-toc-heading.tve-toc-heading-level2{margin-left:calc(var(--tve-toc-indent) * 2);}.tve-toc .tve-toc-heading .tve-toc-anchor,.tve-toc .tve-toc-heading .tve-toc-number{overflow:hidden;display:flex;align-items:center;text-decoration:inherit !important;color:inherit;line-height:inherit;font:inherit;letter-spacing:inherit;overflow-wrap:break-word;}.tve-toc .tve-toc-heading .tve-toc-anchor:hover,.tve-toc .tve-toc-heading .tve-toc-anchor.tve-state-hover,.tve-toc .tve-toc-heading .tve-toc-anchor.tve-state-expanded,.tve-toc .tve-toc-heading .tve-toc-number:hover,.tve-toc .tve-toc-heading .tve-toc-number.tve-state-hover,.tve-toc .tve-toc-heading .tve-toc-number.tve-state-expanded{color:inherit;line-height:inherit;font:inherit;letter-spacing:inherit;}.tve-toc .tve-toc-number:not(:empty){margin-right:.4em;}.tve-toc .tve-toc-number:not(:empty).thrv_wrapper{margin:3px;}.tve-toc .ct_column{background-image:none !important;}.tve-toc .ct_column.nitro-lazy{background-image:none !important;}.tve-toc .tve-vert-divider{display:none;}.tve-toc .tve-vert-divider:not(:last-child){display:block;}.tve-toc.tve-toc-expandable .tve-toc-title{cursor:pointer !important;}.tve-toc.tve-toc-expandable .tve-toc-title *{cursor:pointer !important;}.tve-toc.tve-toc-expandable .tve-toc-title-icon{display:none !important;}.tve-toc .tve-toc-title{width:100%;z-index:1;position:relative;}.tve-toc .tve-toc-title.show-icon .tve-toc-title-icon{display:flex !important;justify-content:center;align-items:center;}.tve-toc .tve-toc-title.reverse>.tve-cb{flex-direction:row-reverse;}.tve-toc .tve-toc-title.reverse .tve-toc-title-icon{margin-right:0;margin-left:8px;}.tve-toc .tve-toc-title>.tve-cb{display:flex;justify-content:center;align-items:center;overflow:visible;}.tve-toc .tve-toc-title .tve-toc-title-icon{display:none !important;color:var(--tve-color);margin-right:8px;transition:transform .25s ease;transform:rotate(var(--animation-angle,0deg));}.tve-toc .tve-toc-title .thrv_text_element{width:100%;}.tve-toc .tve-toc-bullet{height:100%;display:flex;align-items:center;justify-content:center;box-sizing:content-box;cursor:pointer !important;min-width:fit-content;}.tve-toc .tve-toc-bullet.thrv_wrapper{margin:5px;}.tve-toc .tve-toc-number{cursor:pointer !important;min-width:fit-content;}.tve-toc .tve-toc-number:not(:empty){margin-right:.4em;}.tve-toc .tve-toc-bullet,.tve-toc .tve-toc-number{align-self:baseline;}.tve-toc .tve-toc-anchor{align-self:center;}.tve-toc .tve-toc-bullet,.tve-toc .tve-toc-number{padding:0;}.tve-toc-bullet{width:12px;height:12px;font-size:12px;}.tve-countdown{max-width:fit-content;width:100%;--tve-countdown-size:150px;--tve-border-width:0px;--tve-countdown-label-size:.25;--digit-width-percent:.65;--digits-number:2;}.tve-countdown .tve-countdown-content{min-width:fit-content;}.tve-countdown .tve-countdown-digit{margin:0 5px;}.tve-countdown .t-digit-part{font-size:calc(var(--tve-countdown-size) * .6) !important;}.tve-countdown .tve-countdown-label .tcb-plain-text{font-size:calc(var(--tve-countdown-size) * var(--tve-countdown-label-size)) !important;}.tve-countdown span{padding:calc(var(--tve-countdown-size) * .05) !important;border-top-left-radius:calc(var(--tve-border-top-left-radius,var(--tve-border-radius)) - var(--tve-border-top-width,var(--tve-border-width)));border-top-right-radius:calc(var(--tve-border-top-right-radius,var(--tve-border-radius)) - var(--tve-border-top-width,var(--tve-border-width)));border-bottom-left-radius:calc(var(--tve-border-bottom-left-radius,var(--tve-border-radius)) - var(--tve-border-bottom-width,var(--tve-border-width)));border-bottom-right-radius:calc(var(--tve-border-bottom-right-radius,var(--tve-border-radius)) - var(--tve-border-bottom-width,var(--tve-border-width)));}.tve-countdown .t-digit-part{line-height:1;}.tve-countdown .tve-countdown-data{display:flex;text-align:center;perspective:600px;justify-content:space-evenly;}.tve-countdown .tve-countdown-data *,.tve-countdown .tve-countdown-data *:before,.tve-countdown .tve-countdown-data *:after{box-sizing:border-box;}.tve-countdown span{display:block !important;}.tve-countdown .tve-countdown-expired{display:none;width:100%;}.tve-countdown .tve-countdown-expired:empty{min-width:100px;min-height:100px;}.tve-countdown.expired .tve-countdown-data{display:none;}.tve-countdown.expired .tve-countdown-content{width:100%;min-width:unset;}.tve-countdown.expired .tve-countdown-expired{display:block;}.tve-countdown.expired.show-expired-cd .tve-countdown-data{display:flex;max-width:fit-content;margin:0 auto;}.tve-countdown-value{height:100%;}.tve-countdown-tile,.tve-countdown-tile-separator{display:flex;flex-direction:column;margin:0 5px;align-items:center;justify-content:space-between;}.tve-countdown-separator{--tve-font-size:calc(var(--tve-countdown-size) * .3);display:flex;align-items:center;height:100%;justify-content:center;}.tve-countdown-tile-separator{margin:0 !important;}.tve-countdown-tile-separator .tve-countdown-label{visibility:hidden;}.tve-countdown-tile-separator span{padding:0 !important;padding-bottom:calc(var(--tve-countdown-size) * .1) !important;font-size:var(--tve-font-size,calc(var(--tve-countdown-size) * .3));}.tve-countdown[data-anim=slideDown] .t-digits{position:relative;overflow:hidden;min-width:10px;display:flex !important;}.tve-countdown[data-anim=slideDown] .t-digits :nth-child(odd){padding-right:0 !important;}.tve-countdown[data-anim=slideDown] .t-digits :nth-child(odd) .span [class*=part-]:not(.t-slide-part-digit){margin-right:0 !important;}.tve-countdown[data-anim=slideDown] .t-digits :nth-child(even){padding-left:0 !important;}.tve-countdown[data-anim=slideDown] .t-digits :nth-child(even) .span [class*=part-]:not(.t-slide-part-digit){margin-left:0 !important;}.tve-countdown[data-anim=slideDown] .t-digit-part{position:relative;font-size:calc(var(--tve-countdown-size) * .5) !important;}.tve-countdown[data-anim=slideDown] .t-digit-part span{height:100% !important;padding:calc(var(--tve-countdown-size) * .05) !important;}.tve-countdown[data-anim=slideDown] .t-slide-part-digit{position:relative;}.tve-countdown[data-anim=slideDown] [class*=part-]:not(.t-slide-part-digit){position:absolute;top:0;left:0;text-align:center;min-width:.5em;}.tve-countdown[data-anim=slideDown] [class*=part-]:not(.t-slide-part-digit).go-down{transition:top .2s linear;top:100%;}.tve-countdown[data-anim=slideDown] [class*=part-]:not(.t-slide-part-digit).next{top:-100%;transition:top .2s linear;}.tve-countdown[data-anim=slideDown] [class*=part-]:not(.t-slide-part-digit).next.go-down{top:0;transition:top .2s linear;}.tve-countdown[data-anim=slideDown] [class*=part-]:not(.t-slide-part-digit).ct-d-placeholder{position:static;display:inline-block !important;}.tve-countdown[data-anim=flipTile] .tve-countdown-digit{--tcb-applied-color:#eee;--flip-border-width:1px;--flip-border-color:#cdcdcd;--flip-border-color-var:#cdcdcd;--flip-border-style:solid;}.tve-countdown[data-anim=flipTile] .t-digit-part{display:block;position:relative;padding-bottom:calc(var(--tve-countdown-size) / 2);line-height:.95;}.tve-countdown[data-anim=flipTile] .card__top,.tve-countdown[data-anim=flipTile] .card__bottom,.tve-countdown[data-anim=flipTile] .card__back::before,.tve-countdown[data-anim=flipTile] .card__back::after{font-size:calc(var(--tve-countdown-size) * .82) !important;display:block;height:calc(var(--tve-countdown-size) / 2) !important;color:var(--tcb-applied-color);background:#222;padding:calc(var(--tve-countdown-size) * .1) !important;transform-style:preserve-3d;transform:translateZ(0);max-width:100%;width:calc(var(--tve-countdown-size) * var(--digit-width-percent) * var(--digits-number,2));}.tve-countdown[data-anim=flipTile] .card__back::before{background:#222;}.tve-countdown[data-anim=flipTile] .card__bottom{color:var(--tcb-applied-color);position:absolute;top:50%;left:0;border-top:var(--flip-border-width) var(--flip-border-style) var(--flip-border-color) !important;background:#393939;pointer-events:none;overflow:hidden;font-size:calc(var(--tve-countdown-size) * .82) !important;}.tve-countdown[data-anim=flipTile] .card__bottom::after{display:block;margin-top:calc(-1 * var(--tve-countdown-size) / 2) !important;}.tve-countdown[data-anim=flipTile] .card__back::before,.tve-countdown[data-anim=flipTile] .card__bottom::after{content:attr(data-value);}.tve-countdown[data-anim=flipTile] .card__back{position:absolute;top:0;height:100%;left:0%;pointer-events:none;}.tve-countdown[data-anim=flipTile] .card__back::before{position:relative;z-index:-1;overflow:hidden;}.tve-countdown[data-anim=flipTile] .flip .card__back::before{animation:flipTop .3s cubic-bezier(.37,.01,.94,.35);animation-fill-mode:both;transform-origin:center bottom;border-top-left-radius:inherit;border-top-right-radius:inherit;}.tve-countdown[data-anim=flipTile] .flip .card__back .card__bottom{transform-origin:center top;animation-fill-mode:both;animation:flipBottom .6s cubic-bezier(.15,.45,.28,1);}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .card__back{background:none !important;height:var(--tve-countdown-size) !important;padding:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .card__top{border-bottom-left-radius:unset !important;border-bottom-right-radius:unset !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .card__bottom{border-top-left-radius:unset !important;border-top-right-radius:unset !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .ct-d-placeholder{background:none !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit span:not([class*=card]){font-size:inherit !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .t-digit-part{margin:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit span[class*=part-]{background:none !important;border:none !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit span[class*=part-]:not(.t-slide-part-digit){margin:0 calc(var(--tve-countdown-size) * .05) !important;padding:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit span[class*=part-]:not(.t-slide-part-digit).ct-d-placeholder{margin:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit span[class*=part-].t-slide-part-digit{padding-top:0 !important;padding-bottom:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .t-digits :nth-child(odd){padding-right:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .t-digits :nth-child(odd) span[class*=part-]:not(.t-slide-part-digit){margin-right:calc(var(--tve-countdown-size) * .025) !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .t-digits :nth-child(odd) span[class*=part-]:not(.t-slide-part-digit).ct-d-placeholder{margin:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .t-digits :nth-child(even){padding-left:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .t-digits :nth-child(even) span[class*=part-]:not(.t-slide-part-digit){margin-left:calc(var(--tve-countdown-size) * .025) !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-digit .t-digits :nth-child(even) span[class*=part-]:not(.t-slide-part-digit).ct-d-placeholder{margin:0 !important;}:not(#tve):not(#tve-countdown-wrapper) .tve-countdown-tile-separator .tve-countdown-label{width:auto !important;min-height:fit-content !important;}@keyframes flipTop{0%{transform:rotateX(0deg);z-index:2;}0%,99%{opacity:.99;}100%{transform:rotateX(-90deg);opacity:0;}}@keyframes flipBottom{0%,50%{z-index:-1;transform:rotateX(90deg);opacity:0;}51%{opacity:.99;}100%{opacity:.99;transform:rotateX(0deg);z-index:5;}}.thrv-styled_list{padding-top:10px !important;padding-bottom:10px !important;}.thrv-styled_list ul.tcb-styled-list{margin:0 !important;padding:0 !important;list-style:none;}.thrv-styled_list ul.tcb-styled-list li div.thrv_icon{padding:10px;margin:0;box-sizing:content-box;}.tcb-styled-list-icon-text{display:block;z-index:0;line-height:2.3em;}.tcb-styled-list-icon{position:relative;z-index:1;}.thrv-styled-list-item{display:flex;justify-content:flex-start;align-items:flex-start;align-content:flex-start;word-break:break-word;}.thrv-styled-list-item:before{content:none !important;}.thrv-numbered_list{padding-top:10px !important;padding-bottom:10px !important;}.thrv-numbered_list .tcb-numbered-list{margin:0 !important;padding:0 !important;list-style:none;}.thrv-numbered_list .tcb-numbered-list li.thrv-numbered-list-v2{padding:5px;}.thrv-numbered_list .tcb-numbered-list li.thrv-numbered-list-v2 div.tcb-numbered-list-number{padding:0;}.thrv-numbered_list .tcb-numbered-list li div.tcb-numbered-list-number{width:auto;min-width:25px !important;margin:0;padding:10px;box-sizing:content-box;}.tcb-numbered-list-text,.tcb-numbered-list-index{display:block;z-index:0;line-height:2.3em;}.tcb-numbered-list-index{text-align:center;}.tcb-numbered-list-number{position:relative;z-index:1;}@media (max-width: 767px){.tcb-numbered-list-number{width:15%;}.tcb-numbered-list-text{width:85%;}}.thrv_table table.tcb-fixed{table-layout:fixed;}@media (max-width: 767px){.thrv_table{overflow-x:auto;}.tcb-mobile-table td:not(:first-child){border-top:0 !important;}.tcb-mobile-table tr:not(:first-child) td:first-child{border-top:0 !important;}.tcb-mobile-table th,.tcb-mobile-table thead{position:fixed;top:-9000px;left:-9000px;}.tcb-mobile-table.tve-table-no-header tr:first-of-type{display:none;}.tcb-mobile-table.tve-table-no-header tr:not(:first-of-type) td{display:block;position:relative;width:100% !important;padding-left:50% !important;box-sizing:border-box;}.tcb-mobile-table.tve-table-no-header tr:not(:first-of-type) td:before{box-sizing:border-box;content:attr(data-th);display:flex;align-items:center;justify-content:center;position:absolute;top:0;bottom:0;left:0;width:calc(50% - 5px);padding:0;}.tcb-mobile-table:not(.tve-table-no-header) td{display:block;position:relative;width:100% !important;padding-left:50% !important;box-sizing:border-box;}.tcb-mobile-table:not(.tve-table-no-header) td:before{box-sizing:border-box;content:attr(data-th);display:flex;align-items:center;justify-content:center;position:absolute;top:0;bottom:0;left:0;width:calc(50% - 5px);padding:0;}}.tve_table thead .tve_table_row .fr-element>p,.tve_table thead .tve_table_row .thrv_wrapper>p,.tve_table tbody .tve_table_row .fr-element>p,.tve_table tbody .tve_table_row .thrv_wrapper>p{margin:0;padding:0;}.tve_make_sortable thead th{cursor:pointer;position:relative;}.tve_make_sortable thead th[data-direction=down] .tcb-sort{display:none;}.tve_make_sortable thead th[data-direction=down] .tcb-sort-asc{display:block;}.tve_make_sortable thead th[data-direction=up] .tcb-sort{display:none;}.tve_make_sortable thead th[data-direction=up] .tcb-sort-desc{display:block;}.tve_make_sortable thead .tva-t-sort{font-size:12px;position:absolute;display:flex;align-items:center;right:10px;bottom:0;top:0;}.tve_make_sortable thead .tva-t-sort .tcb-sort-desc,.tve_make_sortable thead .tva-t-sort .tcb-sort-asc{display:none;}@keyframes slide-wobble{0%{transform:translateX(30%);opacity:0;}25%{transform:translateX(-15%);}50%{transform:translateX(10%);}75%{transform:translateX(-5%);}100%{transform:translateX(0%);opacity:1;}}@keyframes fade-out{0%{transform:translateX(0%);opacity:1;}25%{transform:translateX(-5%);}100%{transform:translateX(100%);opacity:0;}}.tve_scT{margin:5px;}.tve_scT>ul{list-style-type:none;margin:var(--tabs-tags-vertical-space,0) var(--tabs-tags-horizontal-space,0) !important;padding:0 !important;border:none !important;border-radius:0 !important;gap:var(--tabs-tags-gap,0);}.tve_scT>ul li{box-sizing:border-box !important;border-top-left-radius:4px;border-top-right-radius:4px;background:#f8f8f8;border-top:1px solid #d5d5d5;border-left:1px solid #d5d5d5;border-right:1px solid #d5d5d5;cursor:pointer;display:block;float:left;padding:15px 30px;text-align:center;margin:0px 0px 0px 3px !important;position:relative;text-transform:uppercase;z-index:2;}.tve_scT>ul li:first-child{margin-left:0px !important;}.tve_scT>ul li:before{content:"" !important;}.tve_scT>ul li a{text-decoration:none;}.tve_scT>ul li:hover{cursor:pointer;padding-bottom:16px !important;margin-bottom:-1px !important;}.tve_scT>ul li.tve_tS{padding-bottom:16px !important;margin-bottom:-1px !important;}.tve_scT .tve_scTC{border-top-right-radius:4px;border-bottom-right-radius:4px;box-sizing:border-box !important;background:#f8f8f8;border:1px solid #d5d5d5;display:none;padding:40px 20px;position:initial;z-index:2;width:auto;}.tve_scT.tve_vtabs{padding-left:200px;position:relative;}.tve_scT.tve_vtabs>ul{width:200px;position:absolute;left:0;top:0;margin-top:20px !important;}.tve_scT.tve_vtabs>ul li{float:none;display:block;box-sizing:border-box !important;border-top-left-radius:4px;border-top-right-radius:0px;border-bottom-left-radius:4px;margin:0px 0px 5px 0 !important;border-right:0;border-bottom:1px solid #d5d5d5;}.tve_scT.tve_vtabs>ul li.tve_tS,.tve_scT.tve_vtabs>ul li:hover{padding-right:31px;margin-right:-1px !important;padding-bottom:15px !important;}.tve_scT.tve_vtabs>.tve_scTC{margin-top:0 !important;position:relative;border-bottom-left-radius:4px;border-top-left-radius:4px;}.thrv_wrapper.thrv-tabbed-content div.tve_scT .tve_scTC{position:relative;}.thrv_wrapper.thrv-tabbed-content div.tve_scT>ul li.tve_tS{background-color:#1bbc9b;}.thrv_wrapper.thrv-tabbed-content div.tve_scT>ul li:hover{background:#15987d;}.thrv_wrapper.thrv-tabbed-content div.tve_scT>ul li span{display:block;word-wrap:break-word;-webkit-line-break:after-white-space;}.tve-tab-upgraded .tve_scT{margin:0;}.tve-tab-upgraded .tve_scT>ul li:first-child{margin-left:0;}.tve-tab-upgraded .tve_scT>ul li:before{content:"" !important;}.tve-tab-upgraded .tve_scT>ul li a{text-decoration:none;}.tve-tab-upgraded .tve_scT .tve_scTC{border-top-right-radius:0;border-bottom-right-radius:0;border:none;}.tve-tab-upgraded .tve_scT.tve_vtabs{position:relative;}.tve-tab-upgraded .tve_scT.tve_vtabs>ul{left:0;top:0;margin-top:20px !important;}.tve-tab-upgraded .tve_scT.tve_vtabs>ul li{float:none;display:block;box-sizing:border-box !important;border-top-left-radius:4px;border-top-right-radius:0px;border-bottom-left-radius:4px;margin:0px 0px 5px 0 !important;border-right:0;border-bottom:1px solid #d5d5d5;}.tve-tab-upgraded .tve_scT.tve_vtabs>ul li.tve_tS,.tve-tab-upgraded .tve_scT.tve_vtabs>ul li:hover{padding-right:31px;margin-right:-1px !important;padding-bottom:15px !important;}.tve-tab-upgraded .tve_scT.tve_vtabs>.tve_scTC{margin-top:0 !important;position:relative;border-bottom-left-radius:4px;border-top-left-radius:4px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT{display:flex !important;flex-direction:column;align-items:stretch;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_vtabs{flex-direction:row;padding-left:0 !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT .tve_scTC{position:relative;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT .tve_scTC.thrv_wrapper{margin:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li .tve-hover-anim{display:block;position:relative;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets .tve-hover-anim:after{background:none;font-size:1em;height:100%;top:0;bottom:0;display:inline-flex;display:inline-flex !important;justify-content:center;align-items:center;position:absolute;width:.3em;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets .tve-hover-anim:before{content:"[";left:-.5em;transform:translateX(1.25em);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets .tve-hover-anim:after{content:"]";right:-.5em;left:auto;transform:translateX(-1.25em);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-brackets.tve-state-hover .tve-hover-anim:after{transform:translateX(0px);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline .tve-hover-anim:after{transform:translate(-50%,-10px);height:2px;width:40%;top:105%;left:50%;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover .tve-hover-anim:after{transform:translate(-50%,-5px);height:1px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-underline.tve-state-hover .tve-hover-anim:before{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double .tve-hover-anim:before{display:block !important;transform:translateY(-10px) !important;top:4px !important;}@media (min-width: 2600px){.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double .tve-hover-anim:before{top:3px !important;}}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double .tve-hover-anim:after{transform:translateY(10px);top:calc(100% - 6px);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-double.tve-state-hover .tve-hover-anim:after{transform:translateY(0px) !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick .tve-hover-anim:after{transform:translate(-50%,-10px);width:50%;top:105%;left:50%;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover .tve-hover-anim:after{transform:translate(-50%,-5px);height:4px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT ul li.c-thick.tve-state-hover .tve-hover-anim:before{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tS,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve-state-expanded{background-color:#1bbc9b;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li:hover,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve-state-hover{background:#15987d;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul{display:flex;flex-wrap:wrap;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li span{display:block;word-wrap:wrap;-webkit-line-break:after-white-space;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item{display:flex;align-items:center;justify-content:center;z-index:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--column-reverse{flex-direction:column-reverse;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--column-reverse .tve-tab-image{width:100% !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--column-reverse .tve-tab-icon{margin-right:0 !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--row-reverse{flex-direction:row-reverse;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--row-reverse .tve-tab-icon{margin-right:0 !important;margin-left:8px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--column{flex-direction:column;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--column .tve-tab-image{width:100% !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--column .tve-tab-icon{margin-right:0 !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tcb--row-reverse{flex-direction:row-reverse;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item .tve-tab-icon{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tve-tab-use-icon .tve-tab-icon{display:flex;justify-content:center;align-items:center;flex:0 0 1em;width:1em;height:1em;margin-right:8px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tve-tab-use-icon .tve-tab-icon svg{width:100%;height:100%;line-height:1em;stroke-width:0;stroke:currentColor;fill:currentColor;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item .tve_tab_title{min-width:1px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item .tve-tab-image{flex:0 0 20%;width:auto !important;background-size:cover;background-position:center center;position:relative;height:45px;margin-top:10px;flex-basis:initial;min-width:10px;display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tve-tab-use-img .tve-tab-image{display:flex;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item.tve-tab-use-img .tve-tab-image.tcb-elem-placeholder{display:flex;justify-content:center;align-items:center;padding:4px;cursor:default;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item .tve-tab-text{font-size:20px;line-height:2em;padding:0 !important;margin:0 !important;text-align:left;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item .tve-tab-text:before{display:none;}@media (max-width: 767px){.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve_tab_title_item .tve-tab-text{white-space:pre-wrap;}}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT>ul li.tve-tab-highlight{background:#16987e;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_vtabs>ul{flex-direction:column;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT .tve_tab_content{background:none !important;}.tve-tab-upgraded[data-animation=swing-up]>div{perspective:600px;}.tve-tab-upgraded[data-animation=swing-up] .tve_tab_content{transform-origin:top center;transition:opacity .3s,transform 1s;}@media (min-width: 300px){.tve-tab-upgraded .tve_scT.tve_vtabs-desktop{flex-direction:row !important;}.tve-tab-upgraded .tve_scT.tve_vtabs-desktop ul{flex-direction:column !important;margin-top:20px !important;}}@media (min-width: 300px){.tve-tab-upgraded .tve_scT.tve_htabs-desktop{flex-direction:column !important;}.tve-tab-upgraded .tve_scT.tve_htabs-desktop ul{flex-direction:row !important;}}@media (max-width: 1023px){.tve-tab-upgraded .tve_scT.tve_vtabs-tablet{flex-direction:row !important;}.tve-tab-upgraded .tve_scT.tve_vtabs-tablet ul{flex-direction:column !important;margin-top:20px !important;flex-shrink:1;}}@media (max-width: 1023px){.tve-tab-upgraded .tve_scT.tve_htabs-tablet{flex-direction:column !important;}.tve-tab-upgraded .tve_scT.tve_htabs-tablet ul{flex-direction:row !important;}}@media (max-width: 767px){.tve-tab-upgraded .tve_scT.tve_vtabs-mobile{flex-direction:row !important;}.tve-tab-upgraded .tve_scT.tve_vtabs-mobile ul{flex-direction:column !important;margin-top:20px !important;}}@media (max-width: 767px){.tve-tab-upgraded .tve_scT.tve_htabs-mobile{flex-direction:column !important;}.tve-tab-upgraded .tve_scT.tve_htabs-mobile ul{flex-direction:row !important;}}@media (min-width: 767px){.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_tags_position_vertical{overflow-x:hidden;flex-direction:row !important;align-items:flex-start;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_tags_position_vertical>ul{flex-flow:column wrap !important;flex-shrink:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_tags_position_vertical>ul>li{flex:0 0 100%;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_tags_position_vertical.tve_tabs_tags_position_right>ul{order:1;}.tve_tabs_tags_position_right ul{justify-content:flex-end;}[data-tve-tags-size=fixed]>ul>li{flex:1;}[data-tve-tags-size=relative]>ul>li{max-width:var(--tabs-tags-max-width,none);}[data-tve-tags-size=fixed]>ul>li{max-width:var(--tabs-tags-width,none);width:var(--tabs-tags-width,auto) !important;}}@media (min-width: 767px)and (max-width: 1023px){.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_tags_position_vertical>ul{flex-shrink:1;}}.tve_tabs_use_between_spacing.tve_clearfix:after{display:none;}.tve_tab_secondary_text{display:block;}.tve-tab-hide-text .tve_tab_title{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT .tve_tabs_toogle_view_section_tag{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view{flex-direction:column !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view>ul{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag{display:block;float:left;box-sizing:border-box !important;border-top-left-radius:4px;border-top-right-radius:4px;background:#f8f8f8;border-top:1px solid #d5d5d5;border-left:1px solid #d5d5d5;border-right:1px solid #d5d5d5;cursor:pointer;padding:15px 30px;margin:0 0 0 3px !important;position:relative;text-transform:uppercase;width:100%;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag .tve-hover-anim{display:block;position:relative;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets .tve-hover-anim:after{background:none;font-size:1em;height:100%;top:0;bottom:0;display:inline-flex;display:inline-flex !important;justify-content:center;align-items:center;position:absolute;width:.3em;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets .tve-hover-anim:before{content:"[";left:-.5em;transform:translateX(1.25em);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets .tve-hover-anim:after{content:"]";right:-.5em;left:auto;transform:translateX(-1.25em);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-brackets.tve-state-hover .tve-hover-anim:after{transform:translateX(0px);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline .tve-hover-anim:after{transform:translate(-50%,-10px);height:2px;width:40%;top:105%;left:50%;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover .tve-hover-anim:after{transform:translate(-50%,-5px);height:1px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-underline.tve-state-hover .tve-hover-anim:before{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double .tve-hover-anim:before{display:block !important;transform:translateY(-10px) !important;top:4px !important;}@media (min-width: 2600px){.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double .tve-hover-anim:before{top:3px !important;}}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double .tve-hover-anim:after{transform:translateY(10px);top:calc(100% - 6px);}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-double.tve-state-hover .tve-hover-anim:after{transform:translateY(0px) !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick .tve-hover-anim:after{transition:height .3s,opacity .3s,transform .3s;background-color:currentColor;box-sizing:border-box;display:inline-block;border-color:inherit;pointer-events:none;position:absolute;font-weight:100;width:100%;content:"";opacity:0;height:1px;left:0;top:0;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover .tve-hover-anim:after{opacity:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick .tve-hover-anim:after{transform:translate(-50%,-10px);width:50%;top:105%;left:50%;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover .tve-hover-anim:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover>a:after,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover .tve-hover-anim:after{transform:translate(-50%,-5px);height:4px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick:hover .tve-hover-anim:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover>a:before,.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.c-thick.tve-state-hover .tve-hover-anim:before{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item{display:flex;align-items:center;justify-content:center;z-index:1;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--column-reverse{flex-direction:column-reverse;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--column-reverse .tve-tab-image{width:100% !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--column-reverse .tve-tab-icon{margin-right:0 !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--row-reverse{flex-direction:row-reverse;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--row-reverse .tve-tab-icon{margin-right:0 !important;margin-left:8px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--column{flex-direction:column;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--column .tve-tab-image{width:100% !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--column .tve-tab-icon{margin-right:0 !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tcb--row-reverse{flex-direction:row-reverse;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item .tve-tab-icon{display:none;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tve-tab-use-icon .tve-tab-icon{display:flex;justify-content:center;align-items:center;flex:0 0 1em;width:1em;height:1em;margin-right:8px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item.tve-tab-use-icon .tve-tab-icon svg{width:100%;height:100%;line-height:1em;stroke-width:0;stroke:currentColor;fill:currentColor;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item .tve_tab_title{min-width:1px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item .tve-tab-image{flex:0 0 20%;width:auto !important;background-size:cover;background-position:center center;position:relative;height:45px;margin-top:10px;flex-basis:initial;min-width:10px;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item .tve-tab-image.tcb-elem-placeholder{display:flex;justify-content:center;align-items:center;padding:4px;cursor:default;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item .tve-tab-text{font-size:20px;line-height:2em;padding:0 !important;margin:0 !important;}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item .tve-tab-text:before{display:none;}@media (max-width: 767px){.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve_tab_title_item .tve-tab-text{white-space:pre-wrap;}}.thrv_wrapper.thrv-tabbed-content.tve-tab-upgraded div.tve_scT.tve_tabs_has_toggle_view.tve_tabs_show_toggle_view .tve_tabs_toogle_view_section_tag.tve-tab-highlight{background:#16987e;}.wp-caption-text .fr-wrapper{position:static;}.tve_image_caption{position:relative;}.tve_image_caption:not(.tcb-mm-image.tve-tab-image){height:auto !important;}.tve_image_caption .tve_image{max-width:100%;width:100%;}.tve_image_caption.tve-image-caption-below{display:flex;flex-direction:column;}.tve_image_caption.tve-image-caption-above{display:flex !important;flex-direction:column-reverse;}.tve_image_caption .tve-image-caption-inside{position:absolute !important;width:100%;top:0;left:50%;transform:translate(-50%,0);}.tve_image_caption .tve-image-caption-inside.tve_anim_start{transform:translate(-50%,0) !important;}.tve_image_caption .tve-image-caption-inside.tcb-caption-center{top:50%;transform:translate(-50%,-50%);}.tve_image_caption .tve-image-caption-inside.tcb-caption-top{top:0;transform:translate(-50%,0);}.tve_image_caption .tve-image-caption-inside.tcb-caption-bottom{top:100%;transform:translate(-50%,-100%);}.tve-modal-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:999999;background-color:rgba(0,0,0,.5);display:none;justify-content:center;align-items:center;overflow:auto;-webkit-overflow-scrolling:touch;}.tve-modal-wrapper.tve-modal-open{display:flex;}.tve-modal-wrapper button:focus,.tve-modal-wrapper input:focus{outline:none !important;}.tve-modal-wrapper .tve-modal-inner{background:#fff;border-radius:4px;border:1px solid #e5e5e5;position:relative;width:600px;}.tve-modal-wrapper .tve-modal-inner .tve-modal-x{cursor:pointer;position:absolute;width:14px;height:14px;top:10px;right:10px;border:0;padding:0;margin:0;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Im04Ljk2IDcuNzUgNS4zMjkgNS4zMjhhLjMyLjMyIDAgMCAxIC4wODYuMjM2LjMyLjMyIDAgMCAxLS4wODYuMjM3bC0uOTg4Ljk4OGEuMzIuMzIgMCAwIDEtLjIzNy4wODYuMzIuMzIgMCAwIDEtLjIzNi0uMDg2TDcuNSA5LjIxMWwtNS4zMjggNS4zMjhhLjMyLjMyIDAgMCAxLS4yMzYuMDg2LjMyLjMyIDAgMCAxLS4yMzctLjA4NmwtLjk4OC0uOTg4YS4zMi4zMiAwIDAgMS0uMDg2LS4yMzdjMC0uMS4wMjktLjE3OS4wODYtLjIzNkw2LjAzOSA3Ljc1LjcxMSAyLjQyMmEuMzIuMzIgMCAwIDEtLjA4Ni0uMjM2YzAtLjEuMDI5LS4xOC4wODYtLjIzN2wuOTg4LS45ODhhLjMyLjMyIDAgMCAxIC4yMzctLjA4NmMuMSAwIC4xNzkuMDI5LjIzNi4wODZMNy41IDYuMjg5IDEyLjgyOC45NjFhLjMyLjMyIDAgMCAxIC4yMzYtLjA4NmMuMSAwIC4xOC4wMjkuMjM3LjA4NmwuOTg4Ljk4OGEuMzIuMzIgMCAwIDEgLjA4Ni4yMzcuMzIuMzIgMCAwIDEtLjA4Ni4yMzZsLS45MDIuOTAyTDguOTYgNy43NXoiIGZpbGw9IiMwMDAiIGZpbGwtcnVsZT0ibm9uemVybyIvPgo8L3N2Zz4K") !important;background-repeat:no-repeat;opacity:.3;}.tve-modal-wrapper .tve-modal-inner .tve-modal-x:hover{opacity:.7;}.tve-modal-wrapper .tve-modal-inner[data-size=small]{width:400px;}.tve-modal-wrapper .tve-modal-inner[data-size=large]{width:800px;}.tve-modal-wrapper .tve-modal-title{padding:20px;}.tve-modal-wrapper .tve-modal-content{padding:20px;}.tve-modal-wrapper .tve-modal-footer{padding:24px;margin-top:10px;display:flex;justify-content:space-between;border-top:solid 1px #e8eaec;}.tve-modal-wrapper .tve-modal-footer .tve-modal-button{border:0;padding:10px 24px;font-size:16px;font-weight:500;border-radius:3px;}.tve-modal-wrapper .tve-modal-footer .tve-modal-button.gray{background:rgba(0,0,0,0);color:#818181;}.tve-modal-wrapper .tve-modal-footer .tve-modal-button.green{color:#fff;background:#00ab47;}:not(.inc) .thrv_text_element h1 a:not(.tcb-button-link),#tcb_landing_page .thrv_text_element h1 a:not(.tcb-button-link),:not(.inc) .thrv_text_element h2 a:not(.tcb-button-link),#tcb_landing_page .thrv_text_element h2 a:not(.tcb-button-link),:not(.inc) .thrv_text_element h3 a:not(.tcb-button-link),#tcb_landing_page .thrv_text_element h3 a:not(.tcb-button-link),:not(.inc) .thrv_text_element h4 a:not(.tcb-button-link),#tcb_landing_page .thrv_text_element h4 a:not(.tcb-button-link),:not(.inc) .thrv_text_element h5 a:not(.tcb-button-link),#tcb_landing_page .thrv_text_element h5 a:not(.tcb-button-link),:not(.inc) .thrv_text_element h6 a:not(.tcb-button-link),#tcb_landing_page .thrv_text_element h6 a:not(.tcb-button-link){color:inherit;line-height:inherit;font:inherit;letter-spacing:inherit;}:not(.inc) .thrv_text_element h1 a:not(.tcb-button-link):hover,:not(.inc) .thrv_text_element h1 a:not(.tcb-button-link).tve-state-hover,#tcb_landing_page .thrv_text_element h1 a:not(.tcb-button-link):hover,#tcb_landing_page .thrv_text_element h1 a:not(.tcb-button-link).tve-state-hover,:not(.inc) .thrv_text_element h2 a:not(.tcb-button-link):hover,:not(.inc) .thrv_text_element h2 a:not(.tcb-button-link).tve-state-hover,#tcb_landing_page .thrv_text_element h2 a:not(.tcb-button-link):hover,#tcb_landing_page .thrv_text_element h2 a:not(.tcb-button-link).tve-state-hover,:not(.inc) .thrv_text_element h3 a:not(.tcb-button-link):hover,:not(.inc) .thrv_text_element h3 a:not(.tcb-button-link).tve-state-hover,#tcb_landing_page .thrv_text_element h3 a:not(.tcb-button-link):hover,#tcb_landing_page .thrv_text_element h3 a:not(.tcb-button-link).tve-state-hover,:not(.inc) .thrv_text_element h4 a:not(.tcb-button-link):hover,:not(.inc) .thrv_text_element h4 a:not(.tcb-button-link).tve-state-hover,#tcb_landing_page .thrv_text_element h4 a:not(.tcb-button-link):hover,#tcb_landing_page .thrv_text_element h4 a:not(.tcb-button-link).tve-state-hover,:not(.inc) .thrv_text_element h5 a:not(.tcb-button-link):hover,:not(.inc) .thrv_text_element h5 a:not(.tcb-button-link).tve-state-hover,#tcb_landing_page .thrv_text_element h5 a:not(.tcb-button-link):hover,#tcb_landing_page .thrv_text_element h5 a:not(.tcb-button-link).tve-state-hover,:not(.inc) .thrv_text_element h6 a:not(.tcb-button-link):hover,:not(.inc) .thrv_text_element h6 a:not(.tcb-button-link).tve-state-hover,#tcb_landing_page .thrv_text_element h6 a:not(.tcb-button-link):hover,#tcb_landing_page .thrv_text_element h6 a:not(.tcb-button-link).tve-state-hover{color:inherit;line-height:inherit;font:inherit;letter-spacing:inherit;}.thrv_text_element a:not(.tcb-button-link),.tcb-styled-list a:not(.tcb-button-link),.tcb-numbered-list a:not(.tcb-button-link){font-size:inherit;}.tcb-style-wrap strong{font-weight:var(--g-bold-weight,bold);}.tcb-plain-text{cursor:text;}a .tcb-plain-text{cursor:inherit;}div[style]>a[href^="https://www.froala.com/wysiwyg"]{display:none !important;}.thrv_text_element{overflow-wrap:break-word;}body.tve_froala_distraction_free .thrv_text_element.edit_mode{outline:none !important;}body.tve_froala_distraction_free .thrv_text_element.tcb-group-editing-item:not(.tcb-excluded-from-group-item){outline:none !important;}body.tve_froala_distraction_free .thrv_text_element.tcb-group-editing-item:not(.tcb-excluded-from-group-item).edit_mode,body.tve_froala_distraction_free .thrv_text_element.tcb-group-editing-item:not(.tcb-excluded-from-group-item).edit_mode:focus{outline:none !important;}body.tve_froala_distraction_free .thrv_text_element.tcb-group-editing-item.tcb-excluded-from-group-item{outline:none !important;}body.tve_froala_distraction_free .thrv_text_element.tcb-group-editing-item.tcb-excluded-from-group-item.edit_mode,body.tve_froala_distraction_free .thrv_text_element.tcb-group-editing-item.tcb-excluded-from-group-item.edit_mode:focus{outline:none !important;}body.tve_froala_distraction_free .thrv_text_element.tcb-group-editing-item.on_hover{outline:1px solid #5e90a7 !important;}.tcb-text-gradient{--tcb-gradient-text-value:linear-gradient(#fff 0%,var(--tcb-typography-color,#000));--tcb-text-decoration-color:var(--tcb-typography-color,#000);}.tcb-text-gradient,.tcb-text-gradient>.thrive-shortcode-content{text-decoration-color:var(--tcb-text-decoration-color) !important;background:unset !important;background-image:var(--tcb-gradient-text-value) !important;-webkit-text-fill-color:rgba(0,0,0,0) !important;-webkit-background-clip:text !important;box-sizing:content-box !important;}.thrv_text_element.tcb-highlight-added span:not([data-text-highlight]){background-color:var(--tcb-text-highlight-color,transparent) !important;}.thrv_text_element.tcb-highlight-added h1,.thrv_text_element.tcb-highlight-added h2,.thrv_text_element.tcb-highlight-added h3,.thrv_text_element.tcb-highlight-added h4,.thrv_text_element.tcb-highlight-added h5,.thrv_text_element.tcb-highlight-added h6,.thrv_text_element.tcb-highlight-added p,.thrv_text_element.tcb-highlight-added .tcb-plain-text{position:relative;z-index:1;}.thrv_text_element.tcb-highlight-added blockquote [data-text-highlight]{z-index:0;}.thrv_text_element.tcb-highlight-added blockquote [data-text-highlight]:before{z-index:-1;}.thrv_text_element.tcb-highlight-added .thrive-inline-shortcode:not(#s){background-color:rgba(0,0,0,0) !important;}.thrv_text_element.tcb-highlight-added .thrive-inline-shortcode[data-text-highlight],.thrv_text_element.tcb-highlight-added .thrive-shortcode-content[data-text-highlight]{z-index:0;}:not(#s) [data-text-highlight]{background-color:rgba(0,0,0,0) !important;}:not(#s) [data-text-highlight] *{background-color:rgba(0,0,0,0) !important;}[data-text-highlight]:not([data-text-highlight=none]){display:inline-block;text-align:center;position:relative;box-sizing:border-box;white-space:pre-wrap;}[data-text-highlight]:not([data-text-highlight=none]):before,[data-text-highlight]:not([data-text-highlight=none]):after{pointer-events:none;}[data-text-highlight]:not([data-text-highlight=none]):before{content:"";position:absolute;z-index:-1;background:var(--tcb-text-highlight-color);width:100%;height:100%;-webkit-mask-image:var(--tve-highlight-background);-webkit-mask-repeat:no-repeat;-webkit-mask-size:100% 100%;}[data-text-highlight]:not([data-text-highlight=none]).tcb-highlight-on-top:before,[data-text-highlight]:not([data-text-highlight=none]).tcb-highlight-on-top:after{z-index:1;}[data-text-highlight]:not([data-text-highlight=none]):not(.tcb-highlight-on-top){z-index:-1;}[data-text-highlight]:not([data-text-highlight=none])[data-tcb-highlight-animation^=viewport]:not(.tcb-animated):before{-webkit-mask-image:none !important;background:none;}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=circle]:before{width:calc(100% + .5em);left:-.25em;}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy]:before{height:calc(100% + .2em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy]:before{height:calc(100% + .4em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before{height:calc(100% + .1em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before{height:calc(100% + .2em);}.tcb-button-text [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-2]:before{height:calc(100% + .2em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-3]:before{width:calc(100% + .5em);left:-.25em;}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-3]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-3]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-3]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-3]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-3]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=wavy-3]:before{height:calc(100% + .2em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=pen-sketch]:before{width:calc(100% + .5em);left:-.25em;transform:translateY(-.1em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=pen-sketch]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=pen-sketch]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=pen-sketch]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=pen-sketch]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=pen-sketch]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=pen-sketch]:before{height:calc(100% + .4em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=squiggle]:before{width:calc(100% + .4em);left:-.2em;height:calc(100% - 1em);transform:translateY(.9em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=squiggle]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=squiggle]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=squiggle]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=squiggle]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=squiggle]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=squiggle]:before{height:calc(100% - .6em);transform:translateY(.8em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=regular-line]:before{height:calc(100% - .2em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=regular-line]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=regular-line]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=regular-line]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=regular-line]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=regular-line]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=regular-line]:before{height:calc(100% + .1em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=rounded-line]:before{width:calc(100% + .4em);left:-.2em;transform:translateY(-.1em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=rounded-line]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=rounded-line]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=rounded-line]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=rounded-line]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=rounded-line]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=rounded-line]:before{height:calc(100% + .4em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=brush]:before{width:calc(100% + .3em);left:-.15em;}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-background]:before{width:calc(100% + .2em);left:-.1em;}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=clean-rounded]:before{width:calc(100% + .4em);left:-.2em;height:calc(100% + .4em);transform:translateY(-.2em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=clean-rounded]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=clean-rounded]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=clean-rounded]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=clean-rounded]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=clean-rounded]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=clean-rounded]:before{height:calc(100% + .6em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=cursive-line]:before{width:calc(100% + .5em);left:-.25em;height:calc(100% + .4em);transform:translateY(.1em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=cursive-line]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=cursive-line]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=cursive-line]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=cursive-line]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=cursive-line]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=cursive-line]:before{height:calc(100% + .6em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before{width:calc(100% + .5em);left:-.25em;height:calc(100% - .2em);transform:translateY(.1em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before{width:calc(100% + .3em);left:-.15em;}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before{height:calc(100% + .4em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=dotted-rectangle]:before{transform:translateY(-.1em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=flat-marker]:before{width:calc(100% - .4em);left:.2em;height:calc(100% + .1em);transform:translateY(.1em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=flat-marker]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=flat-marker]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=flat-marker]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=flat-marker]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=flat-marker]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=flat-marker]:before{height:calc(100% + .5em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=bubble]:before{width:calc(100% + .4em);left:-.2em;height:calc(100% + .6em);transform:translateY(-10%);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=divergent]:before{width:calc(100% + .6em);left:-.3em;transform:translateY(-.2em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=crossed-lines]:before{width:calc(100% + .6em);left:-.3em;}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=crossed-lines]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=crossed-lines]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=crossed-lines]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=crossed-lines]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=crossed-lines]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=crossed-lines]:before{height:calc(100% + .2em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=line]:before{height:calc(100% + .4em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=line]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=line]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=line]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=line]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=line]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=line]:before{height:calc(100% + .6em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-zig-zag]:before{height:calc(100% + .2em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-zig-zag]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-zig-zag]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-zig-zag]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-zig-zag]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-zig-zag]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=marker-zig-zag]:before{height:calc(100% + .4em);}[data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=double-line]:before{height:calc(100% + .2em);}h1 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=double-line]:before,h2 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=double-line]:before,h3 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=double-line]:before,h4 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=double-line]:before,h5 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=double-line]:before,h6 [data-text-highlight]:not([data-text-highlight=none])[data-text-highlight=double-line]:before{height:calc(100% + .4em);}@media (min-width: 1024px){:not(#s):not(#s) .tcb-desktop-disabled-highlight[style^="--tcb-text-highlight-color"],:not(#s):not(#s) .tcb-desktop-disabled-highlight [style^="--tcb-text-highlight-color"],:not(#s):not(#s) .tcb-desktop-disabled-highlight[data-text-highlight],:not(#s):not(#s) .tcb-desktop-disabled-highlight [data-text-highlight]{background-color:rgba(0,0,0,0) !important;background-image:none !important;}:not(#s):not(#s) .tcb-desktop-disabled-highlight[style^="--tcb-text-highlight-color"]:before,:not(#s):not(#s) .tcb-desktop-disabled-highlight[style^="--tcb-text-highlight-color"]:after,:not(#s):not(#s) .tcb-desktop-disabled-highlight [style^="--tcb-text-highlight-color"]:before,:not(#s):not(#s) .tcb-desktop-disabled-highlight [style^="--tcb-text-highlight-color"]:after,:not(#s):not(#s) .tcb-desktop-disabled-highlight[data-text-highlight]:before,:not(#s):not(#s) .tcb-desktop-disabled-highlight[data-text-highlight]:after,:not(#s):not(#s) .tcb-desktop-disabled-highlight [data-text-highlight]:before,:not(#s):not(#s) .tcb-desktop-disabled-highlight [data-text-highlight]:after{background-color:rgba(0,0,0,0) !important;border-color:rgba(0,0,0,0) !important;}:not(#s):not(#s) .tcb-desktop-disabled-highlight[style^="--tcb-text-highlight-color"].nitro-lazy,:not(#s):not(#s) .tcb-desktop-disabled-highlight [style^="--tcb-text-highlight-color"].nitro-lazy,:not(#s):not(#s) .tcb-desktop-disabled-highlight[data-text-highlight].nitro-lazy,:not(#s):not(#s) .tcb-desktop-disabled-highlight [data-text-highlight].nitro-lazy{background-image:none !important;}}@media (min-width: 768px)and (max-width: 1023px){:not(#s):not(#s) .tcb-tablet-disabled-highlight[style^="--tcb-text-highlight-color"],:not(#s):not(#s) .tcb-tablet-disabled-highlight [style^="--tcb-text-highlight-color"],:not(#s):not(#s) .tcb-tablet-disabled-highlight[data-text-highlight],:not(#s):not(#s) .tcb-tablet-disabled-highlight [data-text-highlight]{background-color:rgba(0,0,0,0) !important;background-image:none !important;}:not(#s):not(#s) .tcb-tablet-disabled-highlight[style^="--tcb-text-highlight-color"]:before,:not(#s):not(#s) .tcb-tablet-disabled-highlight[style^="--tcb-text-highlight-color"]:after,:not(#s):not(#s) .tcb-tablet-disabled-highlight [style^="--tcb-text-highlight-color"]:before,:not(#s):not(#s) .tcb-tablet-disabled-highlight [style^="--tcb-text-highlight-color"]:after,:not(#s):not(#s) .tcb-tablet-disabled-highlight[data-text-highlight]:before,:not(#s):not(#s) .tcb-tablet-disabled-highlight[data-text-highlight]:after,:not(#s):not(#s) .tcb-tablet-disabled-highlight [data-text-highlight]:before,:not(#s):not(#s) .tcb-tablet-disabled-highlight [data-text-highlight]:after{background-color:rgba(0,0,0,0) !important;border-color:rgba(0,0,0,0) !important;}:not(#s):not(#s) .tcb-tablet-disabled-highlight[style^="--tcb-text-highlight-color"].nitro-lazy,:not(#s):not(#s) .tcb-tablet-disabled-highlight [style^="--tcb-text-highlight-color"].nitro-lazy,:not(#s):not(#s) .tcb-tablet-disabled-highlight[data-text-highlight].nitro-lazy,:not(#s):not(#s) .tcb-tablet-disabled-highlight [data-text-highlight].nitro-lazy{background-image:none !important;}}@media (max-width: 767px){:not(#s):not(#s) .tcb-mobile-disabled-highlight[style^="--tcb-text-highlight-color"],:not(#s):not(#s) .tcb-mobile-disabled-highlight [style^="--tcb-text-highlight-color"],:not(#s):not(#s) .tcb-mobile-disabled-highlight[data-text-highlight],:not(#s):not(#s) .tcb-mobile-disabled-highlight [data-text-highlight]{background-color:rgba(0,0,0,0) !important;background-image:none !important;}:not(#s):not(#s) .tcb-mobile-disabled-highlight[style^="--tcb-text-highlight-color"]:before,:not(#s):not(#s) .tcb-mobile-disabled-highlight[style^="--tcb-text-highlight-color"]:after,:not(#s):not(#s) .tcb-mobile-disabled-highlight [style^="--tcb-text-highlight-color"]:before,:not(#s):not(#s) .tcb-mobile-disabled-highlight [style^="--tcb-text-highlight-color"]:after,:not(#s):not(#s) .tcb-mobile-disabled-highlight[data-text-highlight]:before,:not(#s):not(#s) .tcb-mobile-disabled-highlight[data-text-highlight]:after,:not(#s):not(#s) .tcb-mobile-disabled-highlight [data-text-highlight]:before,:not(#s):not(#s) .tcb-mobile-disabled-highlight [data-text-highlight]:after{background-color:rgba(0,0,0,0) !important;border-color:rgba(0,0,0,0) !important;}:not(#s):not(#s) .tcb-mobile-disabled-highlight[style^="--tcb-text-highlight-color"].nitro-lazy,:not(#s):not(#s) .tcb-mobile-disabled-highlight [style^="--tcb-text-highlight-color"].nitro-lazy,:not(#s):not(#s) .tcb-mobile-disabled-highlight[data-text-highlight].nitro-lazy,:not(#s):not(#s) .tcb-mobile-disabled-highlight [data-text-highlight].nitro-lazy{background-image:none !important;}}.tve-sticky-header{position:fixed;top:0;bottom:0;}.admin-bar .tve-sticky-header{top:32px;}.thrive-symbol-shortcode{position:relative;}body:not(.tve_editor_page) .thrv_wrapper.thrv_footer,body:not(.tve_editor_page) .thrv_wrapper.thrv_header{padding:0;}.thrv_footer .thrive-symbol-shortcode.tve-footer-full-height{min-height:100vh !important;}.thrv_footer .thrive-symbol-shortcode{box-sizing:border-box;margin-right:auto;margin-left:auto;min-height:40px;}.thrv-contact-form{box-sizing:border-box;}.thrv-contact-form .thrv-cf-input-wrapper>div{display:flex;flex-wrap:wrap;}.thrv-contact-form input,.thrv-contact-form input[type=password],.thrv-contact-form input[type=email],.thrv-contact-form input[type=url],.thrv-contact-form input[type=text],.thrv-contact-form input[type=tel],.thrv-contact-form select,.thrv-contact-form textarea{box-sizing:border-box;background-color:#fff;padding:19px 20px;border:1px solid #000;line-height:1em;flex:1;color:#50565f;resize:vertical;outline:none;font-size:17px;}.thrv-contact-form input::-webkit-input-placeholder,.thrv-contact-form input[type=password]::-webkit-input-placeholder,.thrv-contact-form input[type=email]::-webkit-input-placeholder,.thrv-contact-form input[type=url]::-webkit-input-placeholder,.thrv-contact-form input[type=text]::-webkit-input-placeholder,.thrv-contact-form input[type=tel]::-webkit-input-placeholder,.thrv-contact-form select::-webkit-input-placeholder,.thrv-contact-form textarea::-webkit-input-placeholder{color:#94a3b0;}.thrv-contact-form input:-moz-placeholder,.thrv-contact-form input[type=password]:-moz-placeholder,.thrv-contact-form input[type=email]:-moz-placeholder,.thrv-contact-form input[type=url]:-moz-placeholder,.thrv-contact-form input[type=text]:-moz-placeholder,.thrv-contact-form input[type=tel]:-moz-placeholder,.thrv-contact-form select:-moz-placeholder,.thrv-contact-form textarea:-moz-placeholder{color:#94a3b0;}.thrv-contact-form input::-moz-placeholder,.thrv-contact-form input[type=password]::-moz-placeholder,.thrv-contact-form input[type=email]::-moz-placeholder,.thrv-contact-form input[type=url]::-moz-placeholder,.thrv-contact-form input[type=text]::-moz-placeholder,.thrv-contact-form input[type=tel]::-moz-placeholder,.thrv-contact-form select::-moz-placeholder,.thrv-contact-form textarea::-moz-placeholder{color:#94a3b0;}.thrv-contact-form input:-ms-input-placeholder,.thrv-contact-form input[type=password]:-ms-input-placeholder,.thrv-contact-form input[type=email]:-ms-input-placeholder,.thrv-contact-form input[type=url]:-ms-input-placeholder,.thrv-contact-form input[type=text]:-ms-input-placeholder,.thrv-contact-form input[type=tel]:-ms-input-placeholder,.thrv-contact-form select:-ms-input-placeholder,.thrv-contact-form textarea:-ms-input-placeholder{color:#94a3b0;}.thrv-contact-form input:hover,.thrv-contact-form input:focus,.thrv-contact-form input[type=password]:hover,.thrv-contact-form input[type=password]:focus,.thrv-contact-form input[type=email]:hover,.thrv-contact-form input[type=email]:focus,.thrv-contact-form input[type=url]:hover,.thrv-contact-form input[type=url]:focus,.thrv-contact-form input[type=text]:hover,.thrv-contact-form input[type=text]:focus,.thrv-contact-form input[type=tel]:hover,.thrv-contact-form input[type=tel]:focus,.thrv-contact-form select:hover,.thrv-contact-form select:focus,.thrv-contact-form textarea:hover,.thrv-contact-form textarea:focus{border-color:#1da5e5;}.thrv-contact-form textarea{resize:vertical;display:block;min-height:120px;}.thrv-contact-form label.tve-cf-item-required-mark:after{content:"*";color:red;margin-left:3px;}.thrv-contact-form label{display:inline-block;}.thrv-contact-form .tve-cf-item{margin-bottom:30px;box-sizing:border-box;}.thrv-contact-form .tve-cf-submit{box-sizing:border-box;display:flex;}.thrv-contact-form .tve-cf-submit>button{flex:1;}.thrv-contact-form span.tcb-cf-error,.thrv-contact-form input[type=text].tcb-cf-error,.thrv-contact-form input[type=email].tcb-cf-error,.thrv-contact-form textarea.tcb-cf-error{color:#fb5c55;border-color:#fb5c55;flex:0 1 100%;}.thrv-contact-form span.tcb-cf-error{font-size:13px;}.thrv-contact-form span.tcb-cf-error{display:inline-block;padding:10px 0;}.tve-cf-item,.tve-cf-submit{position:relative;width:100%;max-width:100%;}.tve-cf-item .thrv_icon,.tve-cf-submit .thrv_icon{transform:translate(-50%,-50%);background:rgba(0,0,0,0);position:absolute;right:0;top:47%;z-index:2;margin:0 20px 0 0;}.tve-cf-item .thrv_icon .tve_sc_icon,.tve-cf-submit .thrv_icon .tve_sc_icon{font-size:inherit;height:auto;padding:0;width:auto;}.tve-cf-item .thrv_icon.tve_lg_text_icon,.tve-cf-submit .thrv_icon.tve_lg_text_icon{bottom:auto;}.tve-cf-item button,.tve-cf-submit button{border-width:0;background-color:#1ea5e5;padding:15px;font-size:15px;color:#fff;cursor:pointer;width:100%;}.tve-cf-item button:hover,.tve-cf-submit button:hover{background-color:#55bef0;}.tve-cf-item button[disabled],.tve-cf-submit button[disabled]{background-color:#bfbfbf;}.tve-cf-item button:focus,.tve-cf-submit button:focus{background-color:#1688be;}.tve-cf-item button::-moz-focus-inner,.tve-cf-submit button::-moz-focus-inner{border:0;}.tve-cf-item label,.tve-cf-submit label{font-size:15px;color:#000;margin-bottom:10px;}.tve-cf-submit .thrv_icon:hover{cursor:pointer;}.thrv-search-form{max-width:600px;--tve-applied-max-width:600px;}.thrv-search-form form{width:100%;display:flex;flex-direction:row-reverse;}.thrv-search-form form .thrv-sf-input{flex:1 1 auto;}.thrv-search-form form .thrv-sf-input input{width:100%;background-color:#fff;padding:14px 15px;border:1px solid rgba(82,96,109,.5);border-radius:4px;border-top-right-radius:0;border-bottom-right-radius:0;line-height:1em;color:#50565f;resize:vertical;outline:none;font-size:17px;min-height:100%;font-family:Arial,sans-serif;box-sizing:border-box;}.thrv-search-form form .thrv-sf-input input::placeholder{font:inherit !important;color:inherit !important;opacity:.8;}.thrv-search-form form .thrv-sf-input input:hover,.thrv-search-form form .thrv-sf-input input:focus{border-color:rgba(82,96,109,.3);}.thrv-search-form form .thrv-sf-input input[type=search]{-webkit-appearance:searchfield;}.thrv-search-form form .thrv-sf-submit{flex:0 0 auto;position:relative;}@media (max-width: 767px){.thrv-search-form form .thrv-sf-submit .tve_btn_txt{display:none;}}.thrv-search-form form .thrv-sf-submit[data-button-layout=icon] .tve_btn_txt{display:none;}.thrv-search-form form .thrv-sf-submit[data-button-layout=text] .tcb-sf-button-icon{display:none;}@media (max-width: 767px){.thrv-search-form form .thrv-sf-submit[data-button-layout=text] .tcb-sf-button-icon{display:block;}}.thrv-search-form form .thrv-sf-submit[data-button-layout=icon_text] .tcb-sf-button-icon{margin-right:5px;}.thrv-search-form form .thrv-sf-submit button{display:flex;border-width:0;background-color:#52606d;padding:14px 15px;font-size:17px;color:#fff;cursor:pointer;align-items:center;justify-content:space-around;height:100%;border-radius:4px;border-top-left-radius:0;border-bottom-left-radius:0;font-weight:normal;box-sizing:border-box;}.thrv-search-form form .thrv-sf-submit button:hover,.thrv-search-form form .thrv-sf-submit button:focus{background-color:rgba(82,96,109,.85);}@media (max-width: 767px){.thrv-search-form form .thrv-sf-submit button{justify-content:space-around;}}.thrv-search-form form .thrv-sf-submit button .tcb-sf-button-icon .thrv_wrapper{margin:0;}:not(#_s):not(#_s) .thrv-search-form.thrv-sticky-search{width:100%;max-width:none !important;float:none !important;margin:auto !important;position:relative;top:0;right:0;left:0;bottom:0;box-sizing:border-box !important;}:not(#_s):not(#_s) .thrv-search-form.thrv-sticky-search .thrv-sf-input{transform:none;transition:none;position:relative;top:unset;left:unset;right:unset;width:auto;}:not(#_s):not(#_s) .thrv-search-form.thrv-sticky-search .thrv-sf-input input{display:inline-block;}.thrv-search-form .tcb-sf-close-icon{background:rgba(0,0,0,0);border:0;position:absolute;line-height:0;padding:0;right:0;top:0;cursor:pointer;z-index:999;margin:0;}.tve-sf-overlay-container{position:fixed !important;top:0;left:0;z-index:9999 !important;margin-left:0 !important;margin-right:0 !important;width:100%;box-sizing:border-box !important;max-width:none !important;}.tve-sf-overlay-container.thrv_wrapper{margin:0;}.tve-sf-overlay-container>.tve-cb{box-sizing:border-box;}.tve-sf-overlay-container .tcb-sf-close-icon{background:rgba(0,0,0,0);border:0;position:absolute;line-height:0;padding:0;right:0;top:0;cursor:pointer;z-index:999;margin:0;}.tcb-body-search-overlay .thrv_header{z-index:0;}@media (min-width: 300px){:not(#_s) .thrv-search-form[data-display-d=none]{max-width:var(--tve-applied-max-width) !important;}:not(#_s) .thrv-search-form[data-display-d=none] .thrv-sf-input{display:block;position:initial;perspective:unset;transform:unset;width:auto;transition:unset;top:unset;}:not(#_s) .thrv-search-form[data-display-d=none] .thrv-sf-input input{display:inline-block;}:not(#_s) .thrv-search-form[data-display-d=none] .thrv-sf-input:after{content:none;}:not(#_s) .thrv-search-form:not([data-display-d=none]) .thrv-sf-input-hide{display:none;}.thrv-search-form[data-position-d=left]{flex-direction:row-reverse;}.thrv-search-form[data-position-d=right] form{flex-direction:row;}.thrv-search-form[data-display-d=overlay]:not(.thrv-sticky-search){max-width:fit-content !important;}.thrv-search-form[data-display-d=overlay]:not(.thrv-sticky-search) .thrv-sf-input{display:none;}.thrv-search-form[data-display-d=expand]{max-width:fit-content !important;position:relative;overflow:unset !important;}.thrv-search-form[data-display-d=expand] .thrv-sf-input{position:absolute;z-index:10;width:0;top:0;}.thrv-search-form[data-display-d=expand] .thrv-sf-input.tcb-sf-expand{width:var(--tve-applied-max-width);}.thrv-search-form[data-display-d=expand] .thrv-sf-input.tcb-sf-expand input{display:inline-block;}.thrv-search-form[data-display-d=expand] .thrv-sf-input.tcb-sf-expand:after{content:none !important;}.thrv-search-form[data-display-d*=tooltip]{max-width:fit-content !important;position:relative;overflow:unset !important;}.thrv-search-form[data-display-d*=tooltip] .thrv-sf-input{position:absolute;top:120%;width:var(--tve-applied-max-width);z-index:1;transform:perspective(400px) rotate3d(1,0,0,-90deg);transition:transform .35s,opacity .35s;transform-origin:top;}.thrv-search-form[data-display-d*=tooltip] .thrv-sf-input input{display:none;}.thrv-search-form[data-display-d*=tooltip] .thrv-sf-input:after{content:"";position:absolute;left:var(--tve-sf-after-left,18px);right:var(--tve-sf-after-right,auto);top:auto;bottom:100%;width:20px;height:10px;clip-path:polygon(50% 0%,0% 100%,100% 100%);background-image:var(--tcb-sf-bg-img);background-color:var(--tcb-sf-bg-color,#000);clear:both;}.thrv-search-form[data-display-d*=tooltip].tcb-sf-show-tooltip .thrv-sf-input{transform:perspective(400px) rotate3d(0,0,0,0);display:block;}.thrv-search-form[data-display-d*=tooltip].tcb-sf-show-tooltip .thrv-sf-input input{display:block;}}@media (max-width: 1023px){:not(#_s) :not(#_s) .thrv-search-form[data-display-t=none]{max-width:var(--tve-applied-max-width) !important;}:not(#_s) :not(#_s) .thrv-search-form[data-display-t=none] .thrv-sf-input{display:block;position:initial;perspective:unset;transform:unset;width:auto;transition:unset;top:unset;}:not(#_s) :not(#_s) .thrv-search-form[data-display-t=none] .thrv-sf-input input{display:inline-block;}:not(#_s) :not(#_s) .thrv-search-form[data-display-t=none] .thrv-sf-input:after{content:none;}:not(#_s) :not(#_s) .thrv-search-form:not([data-display-t=none]) .thrv-sf-input-hide{display:none;}:not(#_s) .thrv-search-form[data-position-t=left] form{flex-direction:row-reverse;}:not(#_s) .thrv-search-form[data-position-t=right] form{flex-direction:row;}:not(#_s) .thrv-search-form[data-display-t=overlay]:not(.thrv-sticky-search){max-width:fit-content !important;}:not(#_s) .thrv-search-form[data-display-t=overlay]:not(.thrv-sticky-search) .thrv-sf-input{display:none;}:not(#_s) .thrv-search-form[data-display-t=expand]{max-width:fit-content !important;position:relative;overflow:unset !important;}:not(#_s) .thrv-search-form[data-display-t=expand] .thrv-sf-input{position:absolute;z-index:10;width:0;top:0;}:not(#_s) .thrv-search-form[data-display-t=expand] .thrv-sf-input.tcb-sf-expand{width:var(--tve-applied-max-width);}:not(#_s) .thrv-search-form[data-display-t=expand] .thrv-sf-input.tcb-sf-expand input{display:inline-block;}:not(#_s) .thrv-search-form[data-display-t=expand] .thrv-sf-input.tcb-sf-expand:after{content:none !important;}:not(#_s) .thrv-search-form[data-display-t*=tooltip]{max-width:fit-content !important;position:relative;overflow:unset !important;}:not(#_s) .thrv-search-form[data-display-t*=tooltip] .thrv-sf-input{position:absolute;top:120%;width:var(--tve-applied-max-width);z-index:1;transform:perspective(400px) rotate3d(1,0,0,-90deg);transition:transform .35s,opacity .35s;transform-origin:top;}:not(#_s) .thrv-search-form[data-display-t*=tooltip] .thrv-sf-input input{display:none;}:not(#_s) .thrv-search-form[data-display-t*=tooltip] .thrv-sf-input:after{content:"";position:absolute;left:var(--tve-sf-after-left,18px);right:var(--tve-sf-after-right,auto);top:auto;bottom:100%;width:20px;height:10px;clip-path:polygon(50% 0%,0% 100%,100% 100%);background-image:var(--tcb-sf-bg-img);background-color:var(--tcb-sf-bg-color,#000);clear:both;}:not(#_s) .thrv-search-form[data-display-t*=tooltip].tcb-sf-show-tooltip .thrv-sf-input{transform:perspective(400px) rotate3d(0,0,0,0);display:block;}:not(#_s) .thrv-search-form[data-display-t*=tooltip].tcb-sf-show-tooltip .thrv-sf-input input{display:block;}}@media (max-width: 767px){:not(#_s) :not(#_s) .thrv-search-form[data-display-m=none]{max-width:var(--tve-applied-max-width) !important;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=none] .thrv-sf-input{display:block;position:initial;perspective:unset;transform:unset;width:auto;transition:unset;top:unset;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=none] .thrv-sf-input input{display:inline-block;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=none] .thrv-sf-input:after{content:none;}:not(#_s) :not(#_s) .thrv-search-form:not([data-display-m=none]) .thrv-sf-input-hide{display:none;}:not(#_s) :not(#_s) .thrv-search-form[data-position-m=left] form{flex-direction:row-reverse;}:not(#_s) :not(#_s) .thrv-search-form[data-position-m=right] form{flex-direction:row;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=overlay]:not(.thrv-sticky-search){max-width:fit-content !important;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=overlay]:not(.thrv-sticky-search) .thrv-sf-input{display:none;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=expand]{max-width:fit-content !important;position:relative;overflow:unset !important;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=expand] .thrv-sf-input{position:absolute;z-index:10;width:0;top:0;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=expand] .thrv-sf-input.tcb-sf-expand{width:var(--tve-applied-max-width);}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=expand] .thrv-sf-input.tcb-sf-expand input{display:inline-block;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m=expand] .thrv-sf-input.tcb-sf-expand:after{content:none !important;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m*=tooltip]{max-width:fit-content !important;position:relative;overflow:unset !important;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m*=tooltip] .thrv-sf-input{position:absolute;top:120%;width:var(--tve-applied-max-width);z-index:1;transform:perspective(400px) rotate3d(1,0,0,-90deg);transition:transform .35s,opacity .35s;transform-origin:top;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m*=tooltip] .thrv-sf-input input{display:none;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m*=tooltip] .thrv-sf-input:after{content:"";position:absolute;left:var(--tve-sf-after-left,18px);right:var(--tve-sf-after-right,auto);top:auto;bottom:100%;width:20px;height:10px;clip-path:polygon(50% 0%,0% 100%,100% 100%);background-image:var(--tcb-sf-bg-img);background-color:var(--tcb-sf-bg-color,#000);clear:both;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m*=tooltip].tcb-sf-show-tooltip .thrv-sf-input{transform:perspective(400px) rotate3d(0,0,0,0);display:block;}:not(#_s) :not(#_s) .thrv-search-form[data-display-m*=tooltip].tcb-sf-show-tooltip .thrv-sf-input input{display:block;}}.tve_flt .tve-form,.tve_flt .tve-login-form{width:100%;box-sizing:border-box;}.tve_flt .tve-form input,.tve_flt .tve-form input[type=password],.tve_flt .tve-form input[type=email],.tve_flt .tve-form input[type=url],.tve_flt .tve-form input[type=text],.tve_flt .tve-form input[type=tel],.tve_flt .tve-form select,.tve_flt .tve-form textarea,.tve_flt .tve-login-form input,.tve_flt .tve-login-form input[type=password],.tve_flt .tve-login-form input[type=email],.tve_flt .tve-login-form input[type=url],.tve_flt .tve-login-form input[type=text],.tve_flt .tve-login-form input[type=tel],.tve_flt .tve-login-form select,.tve_flt .tve-login-form textarea{box-sizing:border-box;background-color:#fff;padding:19px 20px;border:1px solid #000;line-height:1em;width:100%;color:#50565f;resize:vertical;outline:none;font-size:17px;}.tve_flt .tve-form input:hover,.tve_flt .tve-form input:focus,.tve_flt .tve-form input[type=password]:hover,.tve_flt .tve-form input[type=password]:focus,.tve_flt .tve-form input[type=email]:hover,.tve_flt .tve-form input[type=email]:focus,.tve_flt .tve-form input[type=url]:hover,.tve_flt .tve-form input[type=url]:focus,.tve_flt .tve-form input[type=text]:hover,.tve_flt .tve-form input[type=text]:focus,.tve_flt .tve-form input[type=tel]:hover,.tve_flt .tve-form input[type=tel]:focus,.tve_flt .tve-form select:hover,.tve_flt .tve-form select:focus,.tve_flt .tve-form textarea:hover,.tve_flt .tve-form textarea:focus,.tve_flt .tve-login-form input:hover,.tve_flt .tve-login-form input:focus,.tve_flt .tve-login-form input[type=password]:hover,.tve_flt .tve-login-form input[type=password]:focus,.tve_flt .tve-login-form input[type=email]:hover,.tve_flt .tve-login-form input[type=email]:focus,.tve_flt .tve-login-form input[type=url]:hover,.tve_flt .tve-login-form input[type=url]:focus,.tve_flt .tve-login-form input[type=text]:hover,.tve_flt .tve-login-form input[type=text]:focus,.tve_flt .tve-login-form input[type=tel]:hover,.tve_flt .tve-login-form input[type=tel]:focus,.tve_flt .tve-login-form select:hover,.tve_flt .tve-login-form select:focus,.tve_flt .tve-login-form textarea:hover,.tve_flt .tve-login-form textarea:focus{border-color:#1da5e5;}.tve_flt .tve-form textarea,.tve_flt .tve-login-form textarea{resize:vertical;display:block;height:120px;}.tve_flt .tve-form .tve-form-item,.tve_flt .tve-login-form .tve-form-item{margin-bottom:30px;box-sizing:border-box;}.tve_flt .tve-form .tve-form-submit,.tve_flt .tve-login-form .tve-form-submit{box-sizing:border-box;}.tve_flt .tve-form span.tcb-form-error,.tve_flt .tve-form input[type=text].tcb-form-error,.tve_flt .tve-form input[type=email].tcb-form-error,.tve_flt .tve-form input[type=password].tcb-form-error,.tve_flt .tve-form textarea.tcb-form-error,.tve_flt .tve-login-form span.tcb-form-error,.tve_flt .tve-login-form input[type=text].tcb-form-error,.tve_flt .tve-login-form input[type=email].tcb-form-error,.tve_flt .tve-login-form input[type=password].tcb-form-error,.tve_flt .tve-login-form textarea.tcb-form-error{color:#ed5565;border-color:#ed5565;top:-20;}.tve_flt .tve-form span.tcb-form-error,.tve_flt .tve-login-form span.tcb-form-error{font-size:13px;}.tve_flt .tve-form span.tcb-form-error,.tve_flt .tve-login-form span.tcb-form-error{display:inline-block;padding:10px 0;}.tve-form-item,.tve-login-form-item,.tve-form-submit{position:relative;}.tve-form-item .thrv_icon,.tve-login-form-item .thrv_icon,.tve-form-submit .thrv_icon{transform:translate(-50%,-50%);background:rgba(0,0,0,0);position:absolute;right:0;top:47%;z-index:2;margin:0 20px 0 0;}.tve-form-item .thrv_icon .tve_sc_icon,.tve-login-form-item .thrv_icon .tve_sc_icon,.tve-form-submit .thrv_icon .tve_sc_icon{font-size:inherit;height:auto;padding:0;width:auto;}.tve-form-item .thrv_icon.tve_lg_text_icon,.tve-login-form-item .thrv_icon.tve_lg_text_icon,.tve-form-submit .thrv_icon.tve_lg_text_icon{bottom:auto;}.tve-form-item button[type=submit],.tve-login-form-item button[type=submit],.tve-form-submit button[type=submit]{border-width:0;background-color:#1ea5e5;padding:15px;font-size:15px;color:#fff;cursor:pointer;width:100%;}.tve-form-item button[type=submit]:hover,.tve-login-form-item button[type=submit]:hover,.tve-form-submit button[type=submit]:hover{background-color:#55bef0;}.tve-form-item button[type=submit][disabled],.tve-login-form-item button[type=submit][disabled],.tve-form-submit button[type=submit][disabled]{background-color:#bfbfbf;}.tve-form-item button[type=submit]:focus,.tve-login-form-item button[type=submit]:focus,.tve-form-submit button[type=submit]:focus{background-color:#1688be;}.tve-form-item button[type=submit]::-moz-focus-inner,.tve-login-form-item button[type=submit]::-moz-focus-inner,.tve-form-submit button[type=submit]::-moz-focus-inner{border:0;}.tve-form-item label,.tve-login-form-item label,.tve-form-submit label{font-size:15px;color:#000;margin-bottom:4px;}.tcb-logo{box-sizing:border-box !important;display:block;max-width:100%;width:240px;}.thrv_widget_menu .tcb-logo{width:auto;margin:0;}.tcb-logo.thrv_wrapper{padding:0;}.tcb-logo img[src$=".svg"]{width:100% !important;height:auto !important;}.tcb-logo picture{width:100%;}.tcb-logo img{display:block;max-width:100%;height:auto;}.tcb-post-thumbnail{display:block;max-width:100%;}.tcb-post-thumbnail.thrv_wrapper{margin-top:0;margin-bottom:0;padding:0;}.tcb-post-thumbnail:empty{display:none;}.tcb-post-thumbnail img{box-sizing:border-box;height:auto;vertical-align:middle;max-width:100%;width:100%;}.tcb-post-author-picture{border-radius:50%;box-sizing:border-box;height:auto;width:240px;overflow:hidden;}.tcb-post-title{overflow-wrap:break-word;}.tcb-post-title.thrv_wrapper{margin-top:15px;margin-bottom:15px;padding:0;}.tcb-post-title.thrv_wrapper a{text-decoration:none;}.tcb-post-title a{box-shadow:none;color:inherit;font-weight:inherit;transition:none;}.tcb-post-title:hover a{box-shadow:none;}.tcb-post-content{overflow-wrap:break-word;}.tcb-post-content.thrv_wrapper{margin-top:15px;margin-bottom:15px;padding:0;}.tcb-post-content.tcb-post-content-placeholder:after{content:"";position:absolute;width:25px;height:25px;border-radius:50%;top:calc(50% - 12.5px);left:calc(50% - 12.5px);background-color:#000;outline:1px solid rgba(0,0,0,0);animation:pulseanim 1.2s ease-in-out infinite;}@keyframes pulseanim{0%{transform:scale(0);opacity:.8;}100%{transform:scale(1);opacity:0;}}#tve_editor .tcb-post-content p{font-size:16px;line-height:1.6em;}.tcb-post-date,.tcb-post-author,.tcb-post-categories,.tcb-post-tags{color:inherit;display:inline-block;}.tcb-post-date.thrv_wrapper,.tcb-post-author.thrv_wrapper,.tcb-post-categories.thrv_wrapper,.tcb-post-tags.thrv_wrapper{margin:5px 0;}.tcb-post-date.thrv_wrapper a,.tcb-post-author.thrv_wrapper a,.tcb-post-categories.thrv_wrapper a,.tcb-post-tags.thrv_wrapper a{box-shadow:none;color:inherit;text-decoration:none;}.tcb-post-date.thrv_wrapper a:hover,.tcb-post-author.thrv_wrapper a:hover,.tcb-post-categories.thrv_wrapper a:hover,.tcb-post-tags.thrv_wrapper a:hover{box-shadow:none;text-decoration:none;}body:not(.tve_editor_page) .no-tags{display:none;}.tcb-post-list{box-sizing:content-box;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;padding:0 !important;}.tcb-post-list[data-type=carousel]{display:block;}.tcb-post-list.masonry{position:relative;}.tcb-post-list.masonry article{flex-basis:unset;position:absolute;}.tve_editor_page .tcb-post-list.masonry article{transition:none;}@media (min-width: 1024px){#tve_editor .tcb-post-list .tcb-post-title{font-size:20px;}}@media (max-width: 1023px){#tve_editor .tcb-post-list .tcb-post-title{font-size:18px;}.tcb-post-list .tcb-post-title.thrv_wrapper{margin-top:10px;margin-bottom:10px;}}#tve_editor .tcb-post-list .tcb-post-title{line-height:1.4em;}.tcb-post-list .tcb-post-date,.tcb-post-list .tcb-post-author,.tcb-post-list .tcb-post-categories,.tcb-post-list .tcb-post-tags{font-family:Arial,Helvetica,sans-serif;}#tcb_landing_page .tcb-post-list .tve-default-heading h2{font-size:20px;font-weight:bold;}#tcb_landing_page .tcb-post-list p{font-size:13px;}:not(#very-specific) .tcb-post-list.thrv_wrapper .thrv_wrapper:hover .tcb-post-title.thrv_wrapper.tcb-shortcode>a{color:inherit;}.tcb-post-list-cb-clear p{padding:0 !important;letter-spacing:1px;}.tcb-post-list-cb-clear p a{color:inherit !important;}.tcb-post-list-cb-clear:after{clear:both;}.tcb-post-list-cb{float:left;position:relative;z-index:3;}.tcb-post-list-cb.thrv_wrapper{margin-top:10px;margin-bottom:5px;padding:4px 10px;}.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb p,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb li,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb blockquote,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb address,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb .tcb-plain-text,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb label,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb h1,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb h2,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb h3,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb h4,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb h5,.tcb-post-list-cb.thrv-content-box.thrv_contentbox_shortcode .tve-cb h6{color:#fff;font-size:13px;line-height:1em;}.tcb-post-list-cb .thrv_wrapper{margin-top:0;margin-bottom:0;padding:0;}.tcb-post-list-cb .tve-content-box-background{background-color:rgba(0,0,0,.45);border-radius:5px;}.tcb-post-read-more{display:table;float:left;position:relative;}.tcb-post-read-more.thrv_wrapper{margin-bottom:0;margin-top:0;padding:0;}.tcb-post-read-more .tcb-button-link{text-decoration:none !important;color:#fff;--tcb-applied-color:#fff;}.tcb-post-read-more:not([data-button-style]) .tcb-button-link{background-color:#fff !important;border-radius:5px;border:1px solid #d7d7d7;color:#0a0a0a;--tcb-applied-color:#0a0a0a;font-size:14px;padding:10px;}.tcb-post-read-more:not([data-button-style]) .tcb-button-link:hover{background-color:#fff;color:#008fff;}.tcb-post-read-more.tve-state-hover .tcb-button-link{background-color:#fff;color:#008fff;}.tcb-post-read-more-clear:after{clear:both;}.tcb-post-read-more-link:hover{border:1px solid #008fff;}.tve-state-hover .tcb-post-read-more-link{border:1px solid #008fff;}article{box-sizing:border-box;transition:opacity 1s ease-in-out;width:100%;}article.thrv_wrapper{margin-bottom:0;margin-top:0;padding:0;}body:not(.tve_editor_page) .tcb-post-list[data-disabled-links="1"] article{position:relative;}body:not(.tve_editor_page) .tcb-post-list[data-disabled-links="1"] article>.tve-article-cover,body:not(.tve_editor_page) .tcb-post-list[data-disabled-links="1"] article .tve-article-cover a{position:absolute;width:100%;height:100%;top:0;left:0;cursor:pointer;z-index:12;}.tcb-article-cover-link,.tcb-post-list .tve-article-cover a{line-height:0 !important;font-size:0 !important;color:rgba(0,0,0,0) !important;}.no-posts{text-align:center;margin:20px auto;}.tcb-post-list.empty-list{min-height:20px;}.tcb-post-list.empty-list>*{display:none;}.tcb-post-list.empty-list:not(.tve-loading):after{content:attr(data-no_posts_text) !important;display:block;height:100%;text-align:center;width:100%;}.tve-loading{position:relative;opacity:.7;}.tve-loading.load-bot{opacity:1;}.tve-loading.load-bot:after{bottom:0;top:inherit;}.tve-loading:after{background-image:url("data:image/png;base64,R0lGODlhQABAAPQOAOrq6n9/f9zc3EVFRSgoKLe3t2lpaaampsvLy1ZWVpCQkDMzM4+Pj46Ojuvr64CAgOzs7IGBge3t7e7u7oKCggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEwRjU1RDY3OEFBMTFFM0IwNzNFMjk5QjMzNzdERTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEwRjU1RDc3OEFBMTFFM0IwNzNFMjk5QjMzNzdERTAiPiA8ZGM6cmlnaHRzPiA8cmRmOkFsdD4gPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ij7CqSBpZGVvbG9neSAtIGh0dHA6Ly93d3cucmVkYnViYmxlLmNvbS9wZW9wbGUvaWRlb2xvZ3k8L3JkZjpsaT4gPC9yZGY6QWx0PiA8L2RjOnJpZ2h0cz4g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");background-color:rgba(0,0,0,0);background-position:center;background-repeat:no-repeat;background-size:50px;content:"";display:block;height:50px;left:calc(50% - 25px) !important;position:absolute;top:calc(50% - 25px) !important;width:50px;}.tve-loading article{opacity:.4;}.tcb-pagination{border-top:1px solid rgba(0,0,0,.2);position:relative;width:100%;}.tcb-pagination[data-type=numeric]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between;}@media (max-width: 767px){.tcb-pagination{flex-direction:column;}}.tcb-pagination.thrv_wrapper{box-sizing:border-box;margin:0 auto 30px auto;padding:6px 0;}.tcb-pagination[data-type=none]{display:none !important;}.tcb-pagination .tcb-pagination-navigation-container{align-items:center;display:flex;height:100%;}@media (max-width: 767px){.tcb-pagination .tcb-pagination-navigation-container{flex-wrap:wrap;}}.tcb-pagination .tcb-pagination-navigation-container.thrv_wrapper{margin:0;padding:0;}.tcb-pagination .tcb-pagination-numbers-wrapper{align-items:center;display:flex;height:100%;}.tcb-pagination .tcb-pagination-label{align-items:center;display:flex;color:rgba(10,10,10,.6);margin:0 30px 0 0;min-height:56px;}.tcb-pagination .tcb-pagination-label .tcb-pagination-label-content{color:inherit;line-height:inherit;font-family:inherit;font-weight:inherit;margin:0;text-align:center;}.tcb-pagination-button{color:rgba(10,10,10,.6);display:flex;min-height:42px;}.tcb-pagination-button.thrv_wrapper{margin:5px 5px;padding:0 !important;}.tcb-pagination-button .tcb-button-link{background-color:#fff !important;border:1px solid rgba(0,0,0,.2);border-radius:2px;box-shadow:none;cursor:pointer !important;color:inherit;padding:0 10px;font-size:inherit;text-decoration:none;}.tcb-pagination-button.tcb-disabled-pagination-button{cursor:pointer;opacity:.3;pointer-events:none;}.tcb-pagination-button-link:hover{background-color:rgba(0,143,255,.2) !important;}.tve-state-hover .tcb-pagination-button-link{background-color:rgba(0,143,255,.2) !important;}.tcb-pagination-number{align-items:center;border:1px solid rgba(0,0,0,.2);border-radius:2px;box-sizing:border-box;color:rgba(10,10,10,.6);display:flex;justify-content:center;min-height:42px;min-width:40px;}.tcb-pagination-number a{box-shadow:none !important;color:inherit !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;text-decoration:none !important;height:100%;width:100%;display:flex;justify-content:center;align-items:center;cursor:pointer !important;}.tcb-pagination-number.thrv_wrapper{box-shadow:none;padding:0 !important;margin:0;}.tcb-pagination-number:not(:first-child){margin-left:4px;}.tcb-pagination-number.tcb-pagination-link{background-color:#fff;}.tcb-pagination-number.tcb-pagination-link:hover,.tcb-pagination-number.tcb-pagination-link.tve-state-hover{background-color:rgba(0,143,255,.2);}.tcb-pagination-number.tcb-pagination-current{background-color:#008fff;color:#fff !important;cursor:auto !important;}.tcb-pagination-number.tcb-pagination-dots{border:none;box-sizing:border-box;cursor:auto !important;}.tcb-pagination-load-more-button{cursor:pointer;position:relative;text-align:center;}.tcb-pagination-load-more-button.thrv_wrapper{margin:0 auto;}.tcb-pagination-load-more-button .tcb-pagination-load-more-link{background-color:#fff !important;border:1px solid #d7d7d7;border-radius:5px;color:#0a0a0a;font-weight:500;padding:12px 18px;text-decoration:none !important;}.tcb-pagination-load-more-button .tcb-pagination-load-more-link:focus,.tcb-pagination-load-more-button .tcb-pagination-load-more-link:active{outline:none;}.tcb-pagination-load-more-button.tve-state-hover .tcb-button-link{background-color:#fff;color:#008fff;}.tcb-pagination-load-more-link:hover{border:1px solid #008fff;}.tve-state-hover .tcb-pagination-load-more-link{border:1px solid #008fff;}[data-button_layout=icon] .tcb-button-texts{display:none;}[data-button_layout=icon].tcb-with-icon.tcb-flip .tcb-button-icon{padding-left:0;}.thrv_wrapper nav.woocommerce-pagination ul.page-numbers{border:none;margin:0 5px !important;color:inherit;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;}.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li{border:none;color:inherit;line-height:1em;}.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li a,.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li span{color:inherit;font-weight:700;border-radius:3px;overflow:visible !important;}.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li .next,.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li .prev{padding:.35em .5em .45em;}.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li .current{background-color:rgba(228,228,228,.69);color:inherit;}.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li a:hover{background-color:rgba(228,228,228,.43);color:inherit;}.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li a.tcb-prev-next:hover{background-color:rgba(0,0,0,0);}.tve_editor_page .tcb-woo-shop:not(.tcb-compact-edit-mode):after{content:"";position:absolute;left:0;top:0;bottom:0;right:0;z-index:14;}.tcb-woo-shop,.thrive-shop{padding:10px !important;}.tve_editor_page .tcb-woo-shop,.tve_editor_page .thrive-shop{position:relative;}.tve_editor_page .tcb-woo-shop .woocommerce:empty,.tve_editor_page .thrive-shop .woocommerce:empty{min-height:50px;}.tve_editor_page .tcb-woo-shop .woocommerce:empty:after,.tve_editor_page .thrive-shop .woocommerce:empty:after{content:"No products found" !important;display:block;height:100%;text-align:center;width:100%;}.tve_editor_page .tcb-woo-shop .woocommerce-pagination li .page-numbers:focus,.tve_editor_page .thrive-shop .woocommerce-pagination li .page-numbers:focus{background:unset;}.tve_editor_page .tcb-woo-shop .woocommerce-ordering select,.tve_editor_page .thrive-shop .woocommerce-ordering select{pointer-events:none;}.tcb-woo-shop .woocommerce-ordering select,.thrive-shop .woocommerce-ordering select{padding:0 25px 0 10px;box-sizing:content-box;}.tcb-woo-shop .woocommerce-pagination li .page-numbers,.thrive-shop .woocommerce-pagination li .page-numbers{color:var(--tve-color) !important;font-size:var(--tve-font-size) !important;font-weight:var(--tve-font-weight) !important;font-style:var(--tve-font-style) !important;text-decoration:var(--tve-text-decoration) !important;font-family:var(--tve-font-family) !important;}.tcb-woo-shop.thrv_wrapper,.thrive-shop.thrv_wrapper{margin:0;}.tcb-woo-shop ul.products,.thrive-shop ul.products{margin-left:0 !important;padding-left:0 !important;--tve-woo-image-size:100%;}.tcb-woo-shop li.product,.thrive-shop li.product{display:flex;flex-direction:column;box-sizing:border-box;align-items:flex-start;margin-bottom:1em !important;}.tcb-woo-shop li.product a.woocommerce-loop-product__link,.thrive-shop li.product a.woocommerce-loop-product__link{display:flex !important;flex-direction:column;align-items:flex-start;text-align:left;text-decoration:none;width:100%;}.tcb-woo-shop li.product a.woocommerce-loop-product__link img,.thrive-shop li.product a.woocommerce-loop-product__link img{width:var(--tve-woo-image-size);height:auto;display:block;margin:0 0 5px 0;box-shadow:none;}.tcb-woo-shop li.product a.woocommerce-loop-product__link .woocommerce-loop-product__title,.thrive-shop li.product a.woocommerce-loop-product__link .woocommerce-loop-product__title{margin:5px 0;padding:0;}.tcb-woo-shop li.product a.woocommerce-loop-product__link .star-rating,.thrive-shop li.product a.woocommerce-loop-product__link .star-rating{margin:5px 0;padding:0;font-size:.857em;color:var(--tcb-skin-color-0);width:7.3em;}.tcb-woo-shop li.product a.woocommerce-loop-product__link .star-rating span:before,.thrive-shop li.product a.woocommerce-loop-product__link .star-rating span:before{content:"S S S S S";}.tcb-woo-shop li.product a.woocommerce-loop-product__link .star-rating:before,.thrive-shop li.product a.woocommerce-loop-product__link .star-rating:before{color:#878787;opacity:.74;content:"S S S S S";}.tcb-woo-shop li.product a.woocommerce-loop-product__link .price,.thrive-shop li.product a.woocommerce-loop-product__link .price{margin:5px 0;padding:0;}.tcb-woo-shop li.product a.woocommerce-loop-product__link .price ins,.thrive-shop li.product a.woocommerce-loop-product__link .price ins{background:rgba(0,0,0,0);}.tcb-woo-shop li.product .add_to_cart_button,.tcb-woo-shop li.product .product_type_grouped,.thrive-shop li.product .add_to_cart_button,.thrive-shop li.product .product_type_grouped{margin:10px 0;}.tcb-woo-shop li.product .onsale,.thrive-shop li.product .onsale{right:0;top:unset;left:auto;margin:6px 0 0;padding:3px 6px;width:min-content;}.tcb-woo-shop[data-align-items=left] .woocommerce-loop-product__link,.tcb-woo-shop[data-align-items=left] li.product,.thrive-shop[data-align-items=left] .woocommerce-loop-product__link,.thrive-shop[data-align-items=left] li.product{align-items:flex-start !important;}.tcb-woo-shop[data-align-items=left] .woocommerce-loop-product__link>*,.tcb-woo-shop[data-align-items=left] li.product>*,.thrive-shop[data-align-items=left] .woocommerce-loop-product__link>*,.thrive-shop[data-align-items=left] li.product>*{text-align:left !important;}.tcb-woo-shop[data-align-items=center] .woocommerce-loop-product__link,.tcb-woo-shop[data-align-items=center] li.product,.thrive-shop[data-align-items=center] .woocommerce-loop-product__link,.thrive-shop[data-align-items=center] li.product{align-items:center !important;}.tcb-woo-shop[data-align-items=center] .woocommerce-loop-product__link>*,.tcb-woo-shop[data-align-items=center] li.product>*,.thrive-shop[data-align-items=center] .woocommerce-loop-product__link>*,.thrive-shop[data-align-items=center] li.product>*{text-align:center !important;}.tcb-woo-shop[data-align-items=center] .woocommerce-loop-product__link .onsale,.tcb-woo-shop[data-align-items=center] li.product .onsale,.thrive-shop[data-align-items=center] .woocommerce-loop-product__link .onsale,.thrive-shop[data-align-items=center] li.product .onsale{left:calc(( 100% - var(--tve-woo-image-size) ) / 2) !important;}.tcb-woo-shop[data-align-items=right] .woocommerce-loop-product__link,.tcb-woo-shop[data-align-items=right] li.product,.thrive-shop[data-align-items=right] .woocommerce-loop-product__link,.thrive-shop[data-align-items=right] li.product{align-items:flex-end !important;}.tcb-woo-shop[data-align-items=right] .woocommerce-loop-product__link>*,.tcb-woo-shop[data-align-items=right] li.product>*,.thrive-shop[data-align-items=right] .woocommerce-loop-product__link>*,.thrive-shop[data-align-items=right] li.product>*{text-align:right !important;}.tcb-woo-shop[data-align-items=right] .woocommerce-loop-product__link .onsale,.tcb-woo-shop[data-align-items=right] li.product .onsale,.thrive-shop[data-align-items=right] .woocommerce-loop-product__link .onsale,.thrive-shop[data-align-items=right] li.product .onsale{left:calc(100% - var(--tve-woo-image-size)) !important;}.tcb-woo-shop nav.woocommerce-pagination,.thrive-shop nav.woocommerce-pagination{text-align:center;}.tcb-woo-product-categories{padding:10px !important;}.tcb-woo-product-categories.thrv_wrapper{margin:0;}.tve_editor_page .tcb-woo-product-categories{position:relative;}.tve_editor_page .tcb-woo-product-categories:not(.tcb-compact-edit-mode):after{content:"";position:absolute;left:0;top:0;bottom:0;right:0;z-index:14;}.tve_editor_page .tcb-woo-product-categories .woocommerce:empty{min-height:50px;}.tve_editor_page .tcb-woo-product-categories .woocommerce:empty:after{content:"No product categories found" !important;display:block;height:100%;text-align:center;width:100%;}.tcb-woo-product-categories ul.products{margin-left:0 !important;padding:0 !important;--tve-woo-image-size:100%;}.tcb-woo-product-categories li.product-category{display:flex;flex-direction:column;box-sizing:border-box;align-items:flex-start;margin-bottom:1em !important;}.tcb-woo-product-categories li.product-category>a{display:flex !important;flex-direction:column;align-items:flex-start;text-align:left;text-decoration:none;width:100%;position:relative;}.tcb-woo-product-categories li.product-category>a img{width:var(--tve-woo-image-size) !important;height:auto;display:block;margin:0 0 5px 0 !important;padding:0;box-shadow:none;}.tcb-woo-product-categories li.product-category>a .thrive-product-category-text-wrapper{display:flex;flex-direction:column;align-items:center;justify-content:center;box-sizing:border-box;margin:0;padding:0;width:100%;background-color:#fff;}.tcb-woo-product-categories li.product-category>a .thrive-product-category-text-wrapper h2.woocommerce-loop-category__title{margin:5px 0;padding:0;text-transform:uppercase;}.tcb-woo-product-categories li.product-category>a .thrive-product-category-count{text-transform:uppercase;font-size:12px;padding-bottom:5px;}.tcb-woo-product-categories[data-align-items=left] li.product-category,.tcb-woo-product-categories[data-align-items=left] li.product-category>a{align-items:flex-start !important;}.tcb-woo-product-categories[data-align-items=left] li.product-category .thrive-product-category-text-wrapper,.tcb-woo-product-categories[data-align-items=left] li.product-category>a .thrive-product-category-text-wrapper{text-align:left !important;align-items:flex-start !important;}.tcb-woo-product-categories[data-align-items=center] li.product-category,.tcb-woo-product-categories[data-align-items=center] li.product-category>a{align-items:center !important;}.tcb-woo-product-categories[data-align-items=center] li.product-category .thrive-product-category-text-wrapper,.tcb-woo-product-categories[data-align-items=center] li.product-category>a .thrive-product-category-text-wrapper{text-align:center !important;align-items:center !important;}.tcb-woo-product-categories[data-align-items=right] li.product-category,.tcb-woo-product-categories[data-align-items=right] li.product-category>a{align-items:flex-end !important;}.tcb-woo-product-categories[data-align-items=right] li.product-category .thrive-product-category-text-wrapper,.tcb-woo-product-categories[data-align-items=right] li.product-category>a .thrive-product-category-text-wrapper{text-align:right !important;align-items:flex-end !important;}.tcb-woo-product-categories[data-text-layout=text_on_image] .thrive-product-category-text-wrapper{position:absolute;z-index:5;width:var(--tve-woo-image-size) !important;}.tcb-woo-product-categories[data-text-layout=text_on_image][data-text-position=top] li.product-category>a{justify-content:flex-start !important;}.tcb-woo-product-categories[data-text-layout=text_on_image][data-text-position=center] li.product-category>a{justify-content:center !important;}.tcb-woo-product-categories[data-text-layout=text_on_image][data-text-position=bottom] li.product-category>a{justify-content:flex-end !important;}.tcb-woo-product-categories[data-text-layout=text_before_image] .thrive-product-category-text-wrapper{order:-1;}.tcb-woo-product-categories .woocommerce-loop-category__title{font-weight:var(--tve-font-weight,500);}body:not(.tve_editor_page) .thrv-login-element{display:none;}.thrv-login-element.thrv_wrapper{box-sizing:border-box;}.thrv-login-element .tve-login-form input,.thrv-login-element .tve-login-form input[type=password],.thrv-login-element .tve-login-form input[type=email],.thrv-login-element .tve-login-form input[type=url],.thrv-login-element .tve-login-form input[type=text],.thrv-login-element .tve-login-form input[type=tel],.thrv-login-element .tve-login-form select,.thrv-login-element .tve-login-form textarea{font-family:inherit;font-size:16px;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.5;padding:15px;color:rgba(10,10,10,.6);border-radius:3px;border:solid 2px rgba(10,10,10,.2);margin:10px 0;background-clip:padding-box;}.thrv-login-element .tve-login-form input.tcb-form-input-error,.thrv-login-element .tve-login-form input[type=password].tcb-form-input-error,.thrv-login-element .tve-login-form input[type=email].tcb-form-input-error,.thrv-login-element .tve-login-form input[type=url].tcb-form-input-error,.thrv-login-element .tve-login-form input[type=text].tcb-form-input-error,.thrv-login-element .tve-login-form input[type=tel].tcb-form-input-error,.thrv-login-element .tve-login-form select.tcb-form-input-error,.thrv-login-element .tve-login-form textarea.tcb-form-input-error{border-color:rgba(217,43,43,.55);}.thrv-login-element .tve-login-form input::placeholder,.thrv-login-element .tve-login-form input[type=password]::placeholder,.thrv-login-element .tve-login-form input[type=email]::placeholder,.thrv-login-element .tve-login-form input[type=url]::placeholder,.thrv-login-element .tve-login-form input[type=text]::placeholder,.thrv-login-element .tve-login-form input[type=tel]::placeholder,.thrv-login-element .tve-login-form select::placeholder,.thrv-login-element .tve-login-form textarea::placeholder{color:rgba(10,10,10,.6);opacity:.7;}#tcb_landing_page .thrv-login-element .tcb-button-link,#tcb_landing_page .thrv-login-element input{font-family:inherit;font-weight:inherit;}.thrv-login-element,#tcb_landing_page .thrv-login-element,:not(.inc) .thrv-login-element{font-family:Rubik,sans-serif;font-size:14px;font-weight:normal;font-stretch:normal;font-style:normal;line-height:normal;color:#50565f;}.thrv-login-element p,#tcb_landing_page .thrv-login-element p,:not(.inc) .thrv-login-element p{color:#94a3b0;--tcb-applied-color:#94a3b0;font-size:15px;line-height:1.5;font-weight:inherit;font-style:inherit;margin:0;padding:0;text-align:left;}.thrv-login-element p.tcb-switch-state,#tcb_landing_page .thrv-login-element p.tcb-switch-state,:not(.inc) .thrv-login-element p.tcb-switch-state{margin:0 auto;text-align:center;}.thrv-login-element h2,#tcb_landing_page .thrv-login-element h2,:not(.inc) .thrv-login-element h2{color:#94a3b0;--tcb-applied-color:#94a3b0;font-size:20px;font-weight:400;line-height:27px;font-style:inherit;text-align:left;background-color:rgba(0,0,0,0);padding:0;margin:0;}.thrv-login-element .thrv_text_element,#tcb_landing_page .thrv-login-element .thrv_text_element,:not(.inc) .thrv-login-element .thrv_text_element{margin:0 0 20px;}.thrv-login-element .thrv_text_element.tar-login-elem-link,#tcb_landing_page .thrv-login-element .thrv_text_element.tar-login-elem-link,:not(.inc) .thrv-login-element .thrv_text_element.tar-login-elem-link{margin:8px 0 0;}.thrv-login-element .thrv_text_element.tar-login-elem-h2,#tcb_landing_page .thrv-login-element .thrv_text_element.tar-login-elem-h2,:not(.inc) .thrv-login-element .thrv_text_element.tar-login-elem-h2{margin:40px 0;}.thrv-login-element .thrv_text_element.tar-login-elem-h2 h2,#tcb_landing_page .thrv-login-element .thrv_text_element.tar-login-elem-h2 h2,:not(.inc) .thrv-login-element .thrv_text_element.tar-login-elem-h2 h2{text-align:center;}.thrv-login-element .thrv_text_element a,.thrv-login-element .thrv_text_element a:hover,#tcb_landing_page .thrv-login-element .thrv_text_element a,#tcb_landing_page .thrv-login-element .thrv_text_element a:hover,:not(.inc) .thrv-login-element .thrv_text_element a,:not(.inc) .thrv-login-element .thrv_text_element a:hover{color:#1da5e5;background:rgba(0,0,0,0);font-weight:inherit;font-style:inherit;text-decoration:underline;}.thrv-login-element .tcb-login-form,.thrv-login-element .tcb-registration-form,#tcb_landing_page .thrv-login-element .tcb-login-form,#tcb_landing_page .thrv-login-element .tcb-registration-form,:not(.inc) .thrv-login-element .tcb-login-form,:not(.inc) .thrv-login-element .tcb-registration-form{margin:0;padding:0;}.thrv-login-element .tve-login-form .tcb-label,#tcb_landing_page .thrv-login-element .tve-login-form .tcb-label,:not(.inc) .thrv-login-element .tve-login-form .tcb-label{color:#94a3b0;margin-bottom:3px;font-size:14px;padding:0;cursor:pointer;}.thrv-login-element .tve-login-form input[type=checkbox],#tcb_landing_page .thrv-login-element .tve-login-form input[type=checkbox],:not(.inc) .thrv-login-element .tve-login-form input[type=checkbox]{position:static;opacity:1;width:inherit;margin:0 5px 0 0;vertical-align:middle;}.thrv-login-element .tar-login-submit .tcb-button-text,.thrv-login-element .tar-login-submit .tcb-secondary-text{color:#fff;--tcb-applied-color:#fff;}.thrv-login-element .tve_lg_checkbox_wrapper input[type=checkbox]:not(#_){position:absolute;opacity:0;}@media only screen and (min-width: 768px){.thrv-login-element{margin:0 auto;max-width:540px;width:100%;}}.thrv-login-element .tve-login-form-input{position:relative;}.thrv-login-element .tve-login-form-input input{width:100%;box-sizing:border-box;}.thrv-login-element .tve-login-form-input .thrv_icon{margin:0;font-size:24px;top:50%;}.thrv-login-element .tcb-remember-me-item{display:flex;align-items:center;}.thrv-login-element .tcb-remember-me-item .tve-new-checkbox{flex-grow:1;}.thrv-login-element .tcb-remember-me-item .tve-checkbox-grid{--cols:1;}.thrv-login-element .tcb-remember-me-item label{align-items:center;}.thrv-login-element .tve-login-form-item{text-align:left;}.thrv-login-element .tcb-form-loader-icon{z-index:11;}.thrv-login-element .thrv_wrapper.thrv_contentbox_shortcode{padding:25px 45px;margin-bottom:0;margin-top:0;}.thrv-login-element .thrv_wrapper.thrv_contentbox_shortcode .tve-content-box-background{background-color:rgba(0,0,0,.02);border:1px solid rgba(10,10,10,.1);}.thrv-login-element .tcb-lost-password-link{margin:0 0 10px;}.thrv-login-element .tcb-lost-password-link p{padding:0;}.thrv-login-element .tcb-lost-password-link a{line-height:normal;}.thrv-login-element .tcb-form-loader{display:none;position:absolute;width:100%;height:100%;top:0;left:0;background:hsla(0,0%,100%,.4);z-index:1;}.thrv-login-element .tcb-form-loader>span.tcb-form-loader-icon{animation:tcb-loader .7s infinite linear;display:inline-block;font-size:24px;line-height:24px;height:24px;width:24px;position:absolute;top:50%;left:50%;margin:-12px 0 0 -12px;opacity:.7;}.thrv-login-element .tcb-form-error:not(#_){padding:0;position:relative;color:#d92b2b;}.thrv-login-element .tve_lg_file+.tcb-form-error:not(#_){top:0;}.thrv-login-element .tve_lg_file+.tcb-form-error:not(#_)+.tcb-file-list{margin-top:-10px;}.thrv-login-element .tve-captcha-container+.tcb-form-error{top:0 !important;}.thrv-login-element .tve-form-input{display:flex;flex-flow:column;}.thrv-login-element .tve-form-input>input{flex:1;}.thrv-login-element .thrv-button{position:relative;}.thrv-login-element .tve-form-submit{display:flex;}.thrv-login-element .tve-form-submit button{border-width:0;padding:15px;color:#fff;--tcb-applied-color:#fff;cursor:pointer;flex:1;margin:40px 0 0;box-sizing:border-box;border-radius:5px;background-color:#1172d2;font-size:16px;font-weight:500;transition:all .15s;}.thrv-login-element .tve-form-submit button:hover,.thrv-login-element .tve-form-submit button:active{background-image:none;box-shadow:none;opacity:.9;}.thrv-login-element .tve-form-submit button:hover.nitro-lazy,.thrv-login-element .tve-form-submit button:active.nitro-lazy{background-image:none !important;}.tar-login-elem-button{display:block;width:100%;margin-bottom:0;margin-top:20px;}.tar-login-elem-button.tve-state-hover .tcb-button-link,.tar-login-elem-button:hover .tcb-button-link{background-image:linear-gradient(rgba(0,0,0,.04),rgba(0,0,0,.04));background-color:var(--tcb-local-color-62516,#1372d3);}.tar-login-elem-button .tcb-button-link{background-color:var(--tcb-local-color-62516,#1372d3) !important;padding-top:15px;padding-bottom:15px;border-width:initial;border-style:none;border-color:initial;border-image:initial;border-radius:5px;overflow:hidden;transition:background-color .15s;}.logged-in:not(.tve_editor_page) .tcb-hide-logged-in{display:none !important;}.tve-login-form .tcb-remberme-label{cursor:pointer;}.tcb-image-gallery,.tcb-post-list,.tve-content-list,.thrive-display-testimonials{--tve-gallery-vertical-space:10px;--tve-gallery-horizontal-space:10px;--tve-gallery-column-height:120px;--tve-gallery-gutter:10px;}.tcb-image-gallery .tcb-image-gallery-container,.tcb-image-gallery .tcb-carousel-container,.tcb-post-list .tcb-image-gallery-container,.tcb-post-list .tcb-carousel-container,.tve-content-list .tcb-image-gallery-container,.tve-content-list .tcb-carousel-container,.thrive-display-testimonials .tcb-image-gallery-container,.thrive-display-testimonials .tcb-carousel-container{box-sizing:content-box;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:calc(-1 * var(--tve-gallery-horizontal-space));margin-top:calc(-1 * var(--tve-gallery-vertical-space));}.tcb-image-gallery .tcb-image-gallery-container.justified-gallery,.tcb-image-gallery .tcb-carousel-container.justified-gallery,.tcb-post-list .tcb-image-gallery-container.justified-gallery,.tcb-post-list .tcb-carousel-container.justified-gallery,.tve-content-list .tcb-image-gallery-container.justified-gallery,.tve-content-list .tcb-carousel-container.justified-gallery,.thrive-display-testimonials .tcb-image-gallery-container.justified-gallery,.thrive-display-testimonials .tcb-carousel-container.justified-gallery{width:calc(100% + 2 * var(--tve-gallery-gutter));position:relative;overflow:hidden;margin:calc(-1 * var(--tve-gallery-gutter)) 0 calc(-1 * var(--tve-gallery-gutter)) calc(-1 * var(--tve-gallery-gutter));}.tcb-image-gallery .tcb-image-gallery-container.justified-gallery .tve_image_caption,.tcb-image-gallery .tcb-carousel-container.justified-gallery .tve_image_caption,.tcb-post-list .tcb-image-gallery-container.justified-gallery .tve_image_caption,.tcb-post-list .tcb-carousel-container.justified-gallery .tve_image_caption,.tve-content-list .tcb-image-gallery-container.justified-gallery .tve_image_caption,.tve-content-list .tcb-carousel-container.justified-gallery .tve_image_caption,.thrive-display-testimonials .tcb-image-gallery-container.justified-gallery .tve_image_caption,.thrive-display-testimonials .tcb-carousel-container.justified-gallery .tve_image_caption{position:absolute;margin:0;}.tcb-image-gallery .tcb-image-gallery-container.tve-loading,.tcb-image-gallery .tcb-carousel-container.tve-loading,.tcb-post-list .tcb-image-gallery-container.tve-loading,.tcb-post-list .tcb-carousel-container.tve-loading,.tve-content-list .tcb-image-gallery-container.tve-loading,.tve-content-list .tcb-carousel-container.tve-loading,.thrive-display-testimonials .tcb-image-gallery-container.tve-loading,.thrive-display-testimonials .tcb-carousel-container.tve-loading{position:relative;opacity:.7;height:100px;}.tcb-image-gallery .tcb-image-gallery-container.tve-loading.load-bot,.tcb-image-gallery .tcb-carousel-container.tve-loading.load-bot,.tcb-post-list .tcb-image-gallery-container.tve-loading.load-bot,.tcb-post-list .tcb-carousel-container.tve-loading.load-bot,.tve-content-list .tcb-image-gallery-container.tve-loading.load-bot,.tve-content-list .tcb-carousel-container.tve-loading.load-bot,.thrive-display-testimonials .tcb-image-gallery-container.tve-loading.load-bot,.thrive-display-testimonials .tcb-carousel-container.tve-loading.load-bot{opacity:1;}.tcb-image-gallery .tcb-image-gallery-container.tve-loading.load-bot:after,.tcb-image-gallery .tcb-carousel-container.tve-loading.load-bot:after,.tcb-post-list .tcb-image-gallery-container.tve-loading.load-bot:after,.tcb-post-list .tcb-carousel-container.tve-loading.load-bot:after,.tve-content-list .tcb-image-gallery-container.tve-loading.load-bot:after,.tve-content-list .tcb-carousel-container.tve-loading.load-bot:after,.thrive-display-testimonials .tcb-image-gallery-container.tve-loading.load-bot:after,.thrive-display-testimonials .tcb-carousel-container.tve-loading.load-bot:after{bottom:0;top:inherit;}.tcb-image-gallery .tcb-image-gallery-container.tve-loading .tve_image_caption,.tcb-image-gallery .tcb-carousel-container.tve-loading .tve_image_caption,.tcb-post-list .tcb-image-gallery-container.tve-loading .tve_image_caption,.tcb-post-list .tcb-carousel-container.tve-loading .tve_image_caption,.tve-content-list .tcb-image-gallery-container.tve-loading .tve_image_caption,.tve-content-list .tcb-carousel-container.tve-loading .tve_image_caption,.thrive-display-testimonials .tcb-image-gallery-container.tve-loading .tve_image_caption,.thrive-display-testimonials .tcb-carousel-container.tve-loading .tve_image_caption{opacity:0;}.tcb-image-gallery .tcb-image-gallery-container.tve-loading:after,.tcb-image-gallery .tcb-carousel-container.tve-loading:after,.tcb-post-list .tcb-image-gallery-container.tve-loading:after,.tcb-post-list .tcb-carousel-container.tve-loading:after,.tve-content-list .tcb-image-gallery-container.tve-loading:after,.tve-content-list .tcb-carousel-container.tve-loading:after,.thrive-display-testimonials .tcb-image-gallery-container.tve-loading:after,.thrive-display-testimonials .tcb-carousel-container.tve-loading:after{background-image:url("data:image/gif;base64,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");background-color:rgba(0,0,0,0);background-position:center;background-repeat:no-repeat;background-size:50px;content:"";display:block;height:50px;left:calc(50% - 25px);position:absolute;top:calc(50% - 25px);width:50px;}.tcb-image-gallery .tcb-image-gallery-container .tve_image_caption,.tcb-image-gallery .tcb-image-gallery-container .slick-slide,.tcb-image-gallery .tcb-carousel-container .tve_image_caption,.tcb-image-gallery .tcb-carousel-container .slick-slide,.tcb-post-list .tcb-image-gallery-container .tve_image_caption,.tcb-post-list .tcb-image-gallery-container .slick-slide,.tcb-post-list .tcb-carousel-container .tve_image_caption,.tcb-post-list .tcb-carousel-container .slick-slide,.tve-content-list .tcb-image-gallery-container .tve_image_caption,.tve-content-list .tcb-image-gallery-container .slick-slide,.tve-content-list .tcb-carousel-container .tve_image_caption,.tve-content-list .tcb-carousel-container .slick-slide,.thrive-display-testimonials .tcb-image-gallery-container .tve_image_caption,.thrive-display-testimonials .tcb-image-gallery-container .slick-slide,.thrive-display-testimonials .tcb-carousel-container .tve_image_caption,.thrive-display-testimonials .tcb-carousel-container .slick-slide{width:calc(( 100% - ( var(--tve-gallery-columns) ) * var(--tve-gallery-horizontal-space) ) / var(--tve-gallery-columns));margin:var(--tve-gallery-vertical-space) 0 0 var(--tve-gallery-horizontal-space);padding:0;}.tcb-image-gallery .tcb-image-gallery-container .tve_image_caption .wp-caption-text,.tcb-image-gallery .tcb-image-gallery-container .slick-slide .wp-caption-text,.tcb-image-gallery .tcb-carousel-container .tve_image_caption .wp-caption-text,.tcb-image-gallery .tcb-carousel-container .slick-slide .wp-caption-text,.tcb-post-list .tcb-image-gallery-container .tve_image_caption .wp-caption-text,.tcb-post-list .tcb-image-gallery-container .slick-slide .wp-caption-text,.tcb-post-list .tcb-carousel-container .tve_image_caption .wp-caption-text,.tcb-post-list .tcb-carousel-container .slick-slide .wp-caption-text,.tve-content-list .tcb-image-gallery-container .tve_image_caption .wp-caption-text,.tve-content-list .tcb-image-gallery-container .slick-slide .wp-caption-text,.tve-content-list .tcb-carousel-container .tve_image_caption .wp-caption-text,.tve-content-list .tcb-carousel-container .slick-slide .wp-caption-text,.thrive-display-testimonials .tcb-image-gallery-container .tve_image_caption .wp-caption-text,.thrive-display-testimonials .tcb-image-gallery-container .slick-slide .wp-caption-text,.thrive-display-testimonials .tcb-carousel-container .tve_image_caption .wp-caption-text,.thrive-display-testimonials .tcb-carousel-container .slick-slide .wp-caption-text{cursor:text;min-height:29px;padding:0 !important;}.tcb-image-gallery.tcb-gallery-crop .tve_image_caption .tve_image_frame{height:var(--tcb-gallery-crop-size,100%);}.tcb-image-gallery.tcb-gallery-crop .tve_image_caption .tve_image_frame img{object-fit:cover;min-height:100%;width:var(--tcb-gallery-crop-width,100%);min-width:100%;max-width:none !important;}.tcb-image-gallery.tcb-gallery-crop[data-caption=true] .tcb-image-gallery-container.slick-slider .slick-track{display:flex;align-items:flex-start;}.tcb-image-gallery[data-click-behavior=fullscreen] .tve_image_caption{cursor:pointer;}.tcb-image-gallery[data-type=grid] .tve_image_caption .tve-image-caption-inside.tcb-caption-center{top:var(--tve-center-image,50%);}.tcb-image-gallery .tve_image_frame.img_style_dark_frame{border:5px solid #202020;padding:0;}.tcb-image-gallery .tve_image_frame.img_style_framed{border:5px solid rgba(0,0,0,0);outline:1px solid #e7e7e7;border-radius:1px;}.tcb-image-gallery .tve_image_frame.img_style_lifted_style1{box-shadow:4px 4px 6px -3px #333;}.tcb-image-gallery .tve_image_frame.img_style_polaroid{background:#fff;border:15px solid rgba(0,0,0,0);box-shadow:1px 1px 3px -1px #777;}.tcb-image-gallery .tve_image_frame.img_style_rounded_corners{border-radius:10px;}.tcb-image-gallery .tve_image_frame.img_style_circle{border-radius:50%;}.tcb-image-gallery .tve_image_frame.img_style_caption_overlay{position:relative;padding-left:0;padding-right:0;}.tcb-image-gallery .tve_image_frame.img_style_lifted_style2{position:relative;z-index:1;padding-bottom:15px;}.tcb-image-gallery .tve_image_frame.img_style_lifted_style2:before,.tcb-image-gallery .tve_image_frame.img_style_lifted_style2:after{z-index:-1;position:absolute;content:"";left:14px;width:60%;bottom:25px;background:#555;background:rgba(0,0,0,.7);box-shadow:0 0 8px 9px rgba(0,0,0,.7);transform:rotate(-2deg);border:0;height:0;}.tcb-image-gallery .tve_image_frame.img_style_lifted_style2:after{transform:rotate(2deg);right:14px;left:auto;}.tcb-gallery-overlay{background:rgba(0,0,0,.75);display:none;height:100%;overflow:hidden;position:fixed;left:0;top:0;width:100%;z-index:999999;opacity:0;}.tcb-gallery-overlay.g-v{opacity:1;}.tcb-gallery-overlay .tcb-gallery-wrapper{transition:left .3s ease,transform .3s ease;height:calc(100vh - 100px);margin-top:50px;position:absolute;left:0;top:0;display:flex;-ms-touch-action:none;touch-action:none;width:100%;}.tcb-gallery-overlay .tcb-gallery-wrapper.g-n-a{transition:none 0s ease;}.tcb-gallery-overlay .tve-g-image-wrapper{align-items:center;display:inline-flex;height:100%;justify-content:center;min-width:100%;}.tcb-gallery-overlay .tve-g-image-wrapper img{box-shadow:0 0 22px -2px rgba(0,0,0,.75);display:block;max-height:calc(100vh - 120px);height:auto;width:auto;}.tcb-gallery-overlay .tve-g-image-wrapper .tcb-caption-wrapper{position:relative;display:inline-block;display:flex;transition:opacity .2s ease-in-out;opacity:1;flex-direction:column;align-items:center;}.tcb-gallery-overlay .tve-g-image-wrapper .tcb-caption-wrapper.tcb-loading{position:absolute;opacity:0;}.tcb-gallery-overlay .tve-g-image-wrapper .tcb-caption-wrapper.tcb-loading+.tcb-image-loader{animation:tcb-loader 1s infinite linear;font-size:30px;width:30px;height:30px;}.tcb-gallery-overlay .tve-g-image-wrapper .tcb-caption-wrapper.tcb-loading+.tcb-image-loader svg{fill:#000;}.tcb-gallery-overlay .tve-g-image-wrapper .tcb-caption-wrapper:not(.tcb-loading)+.tcb-image-loader{opacity:0;}.tcb-gallery-overlay .tve-g-image-wrapper .tcb-caption-wrapper .tcb-caption{text-align:left;line-height:1.2em;color:#fff;max-width:90%;}.tcb-gallery-overlay .tcb-g-count{color:#fff;display:block;height:37px;line-height:37px;margin:0 auto;position:absolute;bottom:0;left:0;right:0;}.tcb-gallery-overlay .tcb-g-count .tcb-gl-ctrl-wrp{border-top-left-radius:4px;border-top-right-radius:4px;background:rgba(0,0,0,.5);padding:0 19px;display:table;margin:0 auto;}.tcb-gallery-overlay .tcb-g-count .tcb-img-count,.tcb-gallery-overlay .tcb-g-count .tcb-cap-txt{font-size:14px;}.tcb-gallery-overlay .tcb-g-count .tcb-mob-text{display:none;}.tcb-gallery-overlay .tcb-gl-ctrl{transition:all .5s ease;z-index:1003;border:0;padding:0;background:rgba(0,0,0,.5);display:block;margin-top:-48px;position:absolute;top:50%;text-decoration:none;text-align:center;width:37px;height:66px;outline:0;cursor:pointer;}.tcb-gallery-overlay .tcb-gl-ctrl svg{fill:#fff;width:12px;height:22px;margin-top:5px;}.tcb-gallery-overlay .tcb-gl-ctrl:hover{background:rgba(0,0,0,.8);}.tcb-gallery-overlay .tcb-nav-next{border-top-left-radius:6px;border-bottom-left-radius:6px;background-position:-201px -104px;right:0;}.tcb-gallery-overlay .tcb-nav-prev{border-top-right-radius:6px;border-bottom-right-radius:6px;background-position:-153px -103px;left:0;}.tcb-gallery-overlay .tcb-nav-close{transition:opacity .5s ease;border-radius:50px;background:rgba(0,0,0,.4);height:32px;line-height:32px;position:absolute;top:-16px;right:-16px;text-decoration:none;width:32px;text-align:center;border:0;padding:0;outline:0;}.tcb-gallery-overlay .tcb-nav-close.tcb-gl-ctrl-mob{display:none;}@media (max-width: 767px){.tcb-gallery-overlay .tcb-nav-close{display:none;}.tcb-gallery-overlay .tcb-nav-close.tcb-gl-ctrl-mob{display:block;top:0px;right:0;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:20px;height:40px;width:40px;}}@media (min-width: 767px){.tcb-gallery-overlay .tcb-nav-close{flex-wrap:wrap;}}.tcb-gallery-overlay .tcb-nav-close:hover{background:rgba(0,0,0,.5);}.tcb-gallery-overlay .tcb-nav-close.tcb-nav-close-cnt{top:0;right:0;}.tcb-gallery-overlay .tcb-nav-close svg{fill:#fff;height:16px;margin-top:8px;}.tve-number-counter{z-index:9;}.tve-number-counter .tve-number-wrapper{display:block;text-align:center;}.tve-number-counter .tve-number-wrapper span{display:inline-block !important;}.tve-number-counter .tve-number-wrapper span:empty{display:none !important;}.tve-number-counter .tve-number-wrapper .tcb-digit:not(.tcb-character-digit){font-variant-numeric:tabular-nums lining-nums;width:var(--tve-number-counter-digit-width,25px);}.tve-number-counter .tve-number-wrapper .tve-number{display:inline-flex !important;align-items:center;justify-content:center;margin:0;pointer-events:none;z-index:1;word-break:break-all;flex-wrap:wrap;}.tve-number-counter .tve-number-wrapper[data-anim=slide] .thrv-inline-text{text-decoration:none !important;}.tve-number-counter .tve-number-wrapper[data-anim=slide] .tve-number{font-variant-numeric:tabular-nums lining-nums;}.tve-number-counter .tve-number-wrapper .tve-mini-label{display:none;}.tve-number-counter .thrv-inline-text{justify-content:center;}.tve-number-counter.tcb-hide-labels .tve-number-label{display:none !important;}.tve-number-counter.tcb-label-top .tcb-label-top{display:block;}.tve-number-counter.tcb-label-bottom .tcb-label-bottom{display:block;}.tve-number-counter.tcb-label-both .tcb-label-top,.tve-number-counter.tcb-label-both .tcb-label-bottom{display:block;}.tve-number-counter .tve-number-label{display:none;width:100%;text-align:center;word-break:break-word;font-size:18px;margin:0;padding:0;}.tve-number-counter>span:not(.tve-number-label),.tve-number-counter .tve-mini-label{font-size:var(--tve-font-size,48px) !important;margin:0;line-height:1.2em;}.tve-number-counter .tve-number-counter-temporary-clone{visibility:hidden;position:absolute;top:0;left:0;}@-moz-document url-prefix(){strong,b{font-weight:bold;}}@supports (-webkit-touch-callout: none){.tve-mobile-browser .thrv_wrapper>.tve-content-box-background,.tve-mobile-browser .thrv_wrapper>.tve-page-section-out,.tve-mobile-browser .thrv_wrapper>.tcb-button-link,.tve-mobile-browser .thrv_wrapper .tcb-col,.tve-tablet-browser .thrv_wrapper>.tve-content-box-background,.tve-tablet-browser .thrv_wrapper>.tve-page-section-out,.tve-tablet-browser .thrv_wrapper>.tcb-button-link,.tve-tablet-browser .thrv_wrapper .tcb-col{background-attachment:scroll !important;}}@media (max-width: 767px){html{overflow-x:hidden !important;}html,body{max-width:100vw !important;}}:not(#_s) .tcb-window-width{margin-left:calc(-50vw + 50%) !important;width:100vw;}.tve-user-profile{--tve-input-width-left:50%;--tve-input-width-top:100%;--tve-line-height:1.2em;}.tve-user-profile .tve-user-profile-container{position:relative;}.tve-user-profile .tve-up-item{display:flex;padding:10px;margin:5px 0;flex-direction:column;}.tve-user-profile .tve-up-item .tve-up-label{overflow:hidden;}.tve-user-profile .tve-up-item .tve-up-input{margin:5px;display:flex;position:relative;flex:1;}.tve-user-profile .tve-up-item .tve-up-input input,.tve-user-profile .tve-up-item .tve-up-input textarea,.tve-user-profile .tve-up-item .tve-up-input select{flex:1;max-width:100%;outline:none !important;line-height:var(--tve-line-height,1.2em);}.tve-user-profile .tve-up-item .tve-up-input input::placeholder,.tve-user-profile .tve-up-item .tve-up-input textarea::placeholder,.tve-user-profile .tve-up-item .tve-up-input select::placeholder{opacity:.4;}.tve-user-profile .tve-up-item .tve-up-input textarea{width:100% !important;}.tve-user-profile .tve-up-item .tve-password-strength-wrapper{width:25%;position:absolute;right:20px;top:50%;transform:translatey(-50%);border-radius:20%;overflow:hidden;}.tve-user-profile .tve-up-item .tve-password-strength-wrapper .tve-password-strength{background-color:#e8e8e8;height:13px;width:24.6%;float:left;margin:3px 0;}.tve-user-profile .tve-up-item .tve-password-strength-wrapper .tve-password-strength-text{display:none;}.tve-user-profile .tve-up-item[data-type=username] .tve-up-input,.tve-user-profile .tve-up-item[data-type=username] .tve-up-input *{cursor:not-allowed;opacity:.8;}.tve-user-profile .tve-dynamic-dropdown{--tve-line-height:1.2em;}.tve-user-profile .tve-dynamic-dropdown a{line-height:var(--tve-line-height,1.2em);font-size:var(--tve-font-size,14px);}.tve-user-profile .tve-dynamic-dropdown[data-style=style-11] .tve-lg-dropdown-trigger,.tve-user-profile .tve-dynamic-dropdown[data-style=style-14] .tve-lg-dropdown-trigger{align-items:center;}.tve-user-profile .tve-dynamic-dropdown[data-style=style-11] .tve-item-dropdown-trigger,.tve-user-profile .tve-dynamic-dropdown[data-style=style-14] .tve-item-dropdown-trigger{position:static;}.tve-up-error{border-color:rgba(0,0,0,0) !important;box-shadow:0 0 4px #a94442 inset !important;}#tve-up-error-container{background-color:#f2dede;color:#a94442;border:1px solid #ebccd1;border-radius:1px;box-sizing:border-box !important;padding:4px 10px;position:absolute;z-index:100;}#tve-up-error-container .tve-up-error-message{line-height:1.2;font-size:14px;font-weight:bold;}#tve-up-error-container .tve-up-err-close{color:#a94442;display:inline-block;font-size:12px;width:12px;height:12px;position:absolute;top:50%;right:10px;margin:-6px 0 0;}#tve-up-error-container .tve-up-err-close:hover{text-decoration:none;}@media (min-width: 300px){.tve-up-item[data-label-pos-d=hidden] .thrv_text_element{display:none !important;}.tve-up-item[data-label-pos-d=top]{flex-direction:column;}.tve-up-item[data-label-pos-d=top] .thrv_text_element{margin:5px 0;}.tve-up-item[data-label-pos-d=left]{flex-direction:row;align-items:center;justify-content:space-between;}.tve-up-item[data-label-pos-d=left] .thrv_text_element{margin:0 5px;}.tve-up-item[data-label-pos-d=left] .tve-dynamic-dropdown,.tve-up-item[data-label-pos-d=left] .tve-up-input{width:auto;min-width:var(--tve-input-width-left);max-width:var(--tve-input-width-left);}}@media (min-width: 768px)and (max-width: 1023px){.tve-up-item[data-label-pos-t=hidden] .thrv_text_element{display:none !important;}.tve-up-item[data-label-pos-t=top]{flex-direction:column;}.tve-up-item[data-label-pos-t=top] .thrv_text_element{margin:5px 0;}.tve-up-item[data-label-pos-t=left]{flex-direction:row;align-items:center;justify-content:space-between;}.tve-up-item[data-label-pos-t=left] .thrv_text_element{margin:0 5px;}.tve-up-item[data-label-pos-t=left] .tve-dynamic-dropdown,.tve-up-item[data-label-pos-t=left] .tve-up-input{width:auto;min-width:var(--tve-input-width-left);max-width:var(--tve-input-width-left);}}@media (max-width: 767px){.tve-up-item[data-label-pos-m=hidden] .thrv_text_element{display:none !important;}.tve-up-item[data-label-pos-m=top]{flex-direction:column;}.tve-up-item[data-label-pos-m=top] .thrv_text_element{margin:5px 0;}.tve-up-item[data-label-pos-m=left]{flex-direction:row;align-items:center;justify-content:space-between;}.tve-up-item[data-label-pos-m=left] .thrv_text_element{margin:0 5px;}.tve-up-item[data-label-pos-m=left] .tve-dynamic-dropdown,.tve-up-item[data-label-pos-m=left] .tve-up-input{width:auto;min-width:var(--tve-input-width-left);max-width:var(--tve-input-width-left);}}.thrv_wrapper.tve-dynamic-dropdown{box-sizing:border-box;width:100%;padding:10px;--tcb-local-color-30800:hsla(var(--tcb-main-master-h,216),var(--tcb-main-master-s,98%),var(--tcb-main-master-l,61%),1);--tcb-local-color-f2bba:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.1);--tcb-local-color-f83d7:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.25);--tcb-local-color-trewq:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.3);--tcb-local-color-poiuy:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.6);--tcb-local-color-418a6:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.12);--tcb-local-color-a941t:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.05);--tcb-local-color-1ad9d:hsla(calc(var(--tcb-main-master-h,216) - 71),calc(var(--tcb-main-master-s,98%) - 35%),calc(var(--tcb-main-master-l,61%) - 12%),.1);--tcb-local-color-2dbcc:hsla(calc(var(--tcb-main-master-h,216) - 97),calc(var(--tcb-main-master-s,98%) - 65%),calc(var(--tcb-main-master-l,61%) - 0%),1);}.notifications-content-wrapper{position:fixed;opacity:1;}.notifications-content-wrapper.thrv_wrapper{padding:0;margin:0;}.notifications-content-wrapper.tcb-permanently-hidden{display:none !important;}.notifications-content-wrapper .notifications-content{display:none;flex-direction:column;}.notifications-content-wrapper:not(.notification-edit-mode){z-index:9999993;}.notifications-content-wrapper[data-position*=top]{top:50px;}.notifications-content-wrapper[data-position*=middle]{top:50%;transform:translateY(-50%);}.notifications-content-wrapper[data-position*=bottom]{bottom:50px;}.notifications-content-wrapper[data-position*=left]{left:50px;}.notifications-content-wrapper[data-position*=center]{left:50%;transform:translateX(-50%);}.notifications-content-wrapper[data-position*=right]{right:50px;}.notifications-content-wrapper[data-position=middle-center]{transform:translate(-50%,-50%);}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode),.notifications-content-wrapper.tcb-animated.editor-preview{transition:top .7s ease 0s,bottom .7s ease 0s,left .7s ease 0s,right .7s ease 0s,opacity .7s ease-in-out;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=down][data-position*=bottom],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=down][data-position*=bottom]{bottom:150%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=down][data-position*=top],.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=down][data-position*=middle],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=down][data-position*=top],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=down][data-position*=middle]{top:-100%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=up][data-position*=bottom],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=up][data-position*=bottom]{bottom:-100%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=up][data-position*=top],.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=up][data-position*=middle],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=up][data-position*=top],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=up][data-position*=middle]{top:150%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=left][data-position*=right],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=left][data-position*=right]{right:150%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=left][data-position*=left],.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=left][data-position*=center],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=left][data-position*=left],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=left][data-position*=center]{left:-100%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=right][data-position*=right],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=right][data-position*=right]{right:-100%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=right][data-position*=left],.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation=right][data-position*=center],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=right][data-position*=left],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation=right][data-position*=center]{left:150%;}.notifications-content-wrapper.tcb-animated:not(.notification-edit-mode)[data-animation],.notifications-content-wrapper.tcb-animated.editor-preview[data-animation]{opacity:0;}.notifications-content-wrapper[data-state=success] .notification-success{display:flex;}.notifications-content-wrapper[data-state=warning] .notification-warning{display:flex;}.notifications-content-wrapper[data-state=error] .notification-error{display:flex;}.notifications-content{overflow:visible !important;}.notifications-content .tcb-col{justify-content:center !important;}@media (max-width: 767px){.notifications-content-wrapper{left:50% !important;transform:translateX(-50%);right:unset !important;}.notifications-content-wrapper[data-position*=middle]{transform:translate(-50%,-50%);}.notifications-content-wrapper[data-position*=top]{top:0px;}.notifications-content-wrapper[data-position*=bottom]{bottom:0px;}}@media (max-width: 1023px)and (min-width: 768px){.notifications-content-wrapper[data-position*=top]{top:20px;}.notifications-content-wrapper[data-position*=bottom]{bottom:20px;}}.notifications-wrapper .notifications-info{padding:10px;}.notifications-wrapper .notifications-info .info-text{font-size:14px;margin-left:auto;text-align:right;color:#191f28;font-family:Roboto;font-weight:500;}.tcb-post-list-filter{z-index:15 !important;--tcb-filter-row-gap:8px;--tcb-filter-column-gap:17px;}.tcb-post-list-filter:not([data-filter-type=dropdown]):not([data-filter-type=search]){display:flex;flex-wrap:wrap;row-gap:var(--tcb-filter-row-gap);column-gap:var(--tcb-filter-column-gap);}.tcb-post-list-filter:not([data-filter-type=dropdown]):not([data-filter-type=search]) .tcb-filter-option{margin:0;}.tcb-post-list-filter:not([data-filter-type=dropdown]):not([data-filter-type=search])[data-filter-type=list]{--tcb-filter-row-gap:5px;--tcb-filter-column-gap:10px;}.tcb-post-list-filter:not([data-filter-type=dropdown]):not([data-filter-type=search])[data-filter-type=list] .tcb-styled-list{display:flex;flex-wrap:wrap;margin:0 !important;padding:0 !important;row-gap:var(--tcb-filter-row-gap);column-gap:var(--tcb-filter-column-gap);}.tcb-post-list-filter:not([data-filter-type=dropdown]):not([data-filter-type=search])[data-filter-type=list][data-display-option=vertically] .tcb-styled-list{flex-direction:column;}.tcb-post-list-filter:not([data-filter-type=dropdown]):not([data-filter-type=search])[data-filter-type=list][data-display-option=horizontally] .tcb-styled-list{flex-direction:row;}.tcb-post-list-filter[data-display-option=vertically]{flex-direction:column;}.tcb-post-list-filter[data-display-option=vertically][data-filter-type=button]{--tve-alignment:center;margin-left:auto !important;margin-right:auto !important;}.tcb-post-list-filter[data-display-option=horizontally]{flex-direction:row;}.tcb-post-list-filter .tcb-filter-button a.tcb-button-link{padding:11px 17px;}.tcb-filter-radio,.tcb-filter-checkbox,.tcb-filter-button,.tcb-filter-dropdown{--tcb-radio-size:15px;--tcb-local-color-30800:hsla(var(--tcb-main-master-h,216),var(--tcb-main-master-s,98%),var(--tcb-main-master-l,61%),1);--tcb-local-color-f2bba:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.1);--tcb-local-color-f83d7:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.25);--tcb-local-color-trewq:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.3);--tcb-local-color-poiuy:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.6);--tcb-local-color-418a6:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.12);--tcb-local-color-a941t:hsla(calc(var(--tcb-main-master-h,216) - 0),calc(var(--tcb-main-master-s,98%) - 0%),calc(var(--tcb-main-master-l,61%) - 0%),.05);--tcb-local-color-1ad9d:hsla(calc(var(--tcb-main-master-h,216) - 71),calc(var(--tcb-main-master-s,98%) - 35%),calc(var(--tcb-main-master-l,61%) - 12%),.1);--tcb-local-color-2dbcc:hsla(calc(var(--tcb-main-master-h,216) - 97),calc(var(--tcb-main-master-s,98%) - 65%),calc(var(--tcb-main-master-l,61%) - 0%),1);--tcb-local-color-frty6:hsla(var(--tcb-main-master-h,216),var(--tcb-main-master-s,98%),var(--tcb-main-master-l,61%),1);--tcb-local-color-flktr:hsla(var(--tcb-main-master-h,216),var(--tcb-main-master-s,98%),var(--tcb-main-master-l,61%),1);--tcb-local-color-62516:hsla(var(--tcb-main-master-h,216),var(--tcb-main-master-s,98%),var(--tcb-main-master-l,61%),1);--tcb-local-default-master-h:var(--tcb-main-master-h,205);--tcb-local-default-master-s:var(--tcb-main-master-s,100%);--tcb-local-default-master-l:var(--tcb-main-master-l,50%);--tcb-local-default-master-a:var(--tcb-main-master-a,1);}.tcb-filter-button a:hover{text-decoration:none;}.tve_lg_checkbox_wrapper .tve-checkmark{--tcb-checkbox-size:14px;background-color:#fff;position:relative;border:1px solid #afafaf;width:var(--tcb-checkbox-size);height:var(--tcb-checkbox-size);display:inline-block;flex:0 0 auto;margin-right:10px;padding:2px;border-radius:4px;}.tve_lg_checkbox_wrapper .tve-checkmark svg{width:100%;height:100%;display:none;box-sizing:border-box;fill:var(--tcb-local-color-30800);}.tve_lg_checkbox_wrapper [type=checkbox]{position:absolute;opacity:0;}.tve_lg_checkbox_wrapper.tve-state-expanded .tve-checkmark svg{display:block;}.tve_lg_checkbox_wrapper label{cursor:pointer;display:inline-flex;align-items:center;height:100%;width:100%;position:relative !important;}.tcb-post-list-filter[data-filter-type=radio]{position:relative;}.tcb-filter-radio{display:flex;align-items:center;padding:10px 16px;position:relative;}.tcb-filter-radio[data-value=default] .tve-checkmark{background-color:#fff;box-shadow:0 0 0 1px #afafaf;}.tcb-filter-radio[data-value=default].tve-state-expanded .tve-checkmark{background-color:var(--tcb-local-color-30800);box-shadow:0 0 0 1px var(--tcb-local-color-30800);}.tcb-filter-radio[data-value=default].tve-state-expanded .tve-checkmark:after{background-color:#fff;border:calc(var(--tcb-radio-size) / 6) solid var(--tcb-local-color-30800);width:100%;height:100%;box-sizing:border-box;}.tcb-filter-radio[data-value=style-1] .tve-checkmark{background-color:#fff;box-shadow:0 0 0 1px #afafaf;width:var(--tcb-radio-size);height:var(--tcb-radio-size);}.tcb-filter-radio[data-value=style-1].tve-state-expanded .tve-checkmark:after{background-color:var(--tcb-local-color-30800);width:100%;height:100%;border:calc(var(--tcb-radio-size) / 6) solid #fff;box-sizing:border-box;position:absolute;top:0;left:0;}.tcb-filter-radio .tve-checkmark{border-radius:50px;position:relative;width:var(--tcb-radio-size);height:var(--tcb-radio-size);margin-right:10px;box-sizing:content-box;flex:0 0 auto;}.tcb-filter-radio .tve-checkmark:after{content:"";display:block;border-radius:50px;position:absolute;}.tcb-filter-radio.tve-state-expanded .tve-checkmark:after{box-sizing:border-box;position:absolute;width:100%;height:100%;}.tcb-filter-radio input[type=radio],.tcb-filter-radio input[type=checkbox]{margin:0 10px 3px 0;}.tcb-filter-radio:before,.tcb-filter-radio:after{content:"";}.tve-dynamic-dropdown-editable.dropdown-block{width:max-content !important;}.tve-dynamic-dropdown-editable.dropdown-block .tve-dynamic-dropdown-option{display:block !important;}.tve-dynamic-dropdown-option{margin:0 !important;}.tve-dynamic-dropdown{--tve-input-width:100%;width:auto;min-width:var(--tve-input-width);max-width:var(--tve-input-width);}.tcb-post-list-filter .tcb-filter-search{min-width:unset;}.tcb-filter-list-group{margin:0 !important;}.tcb-filter-list-group li.tcb-filter-list:not([class*=menu]){display:flex;margin:0 0 15px;padding:0;padding-right:7px;font-size:var(--tve-font-size,15px);line-height:1.15em;cursor:pointer;}.tcb-filter-list-group li.tcb-filter-list:not([class*=menu]).dynamic-item-with-icon .tcb-filter-list-group li.tcb-filter-list:not([class*=menu]){display:block !important;}.tcb-filter-list-group li.tcb-filter-list:not([class*=menu]) .tcb-styled-list-icon{display:none;}.tcb-filter-list-group li.tcb-filter-list:not([class*=menu]):before{content:none !important;}.tcb-filter-list-group li.tcb-filter-list:not([class*=menu]) .tcb-filter-list-text{display:flex;align-items:center;cursor:pointer;}.tcb-filter-list .thrv_icon{margin:0;padding:5px 10px 3px;font-size:var(--tve-font-size,18px);}[data-type=carousel] .slick-list{min-width:100%;}[data-type=carousel] .slick-list.slick-adaptive-height .slick-track{height:inherit !important;}[data-type=carousel] .slick-list.slick-adaptive-height .slick-slide:not(.slick-active){height:fit-content !important;overflow:hidden;}body:not(.tve_editor_page) [data-type=carousel]:not([data-cwv-ready]){overflow:hidden;}body:not(.tve_editor_page) [data-type=carousel]:not([data-cwv-ready])>div:not(.slick-initialized)>.thrv_wrapper{margin-top:0;width:calc(( 100% - ( var(--tcb-cwv-slides-d,1) - 1 ) * var(--tve-gallery-horizontal-space,20px) ) / var(--tcb-cwv-slides-d,1));margin-bottom:1000px;}body:not(.tve_editor_page) [data-type=carousel]:not([data-cwv-ready])>div:not(.slick-initialized)>.thrv_wrapper:first-child{margin-left:0;}body:not(.tve_editor_page) [data-type=carousel]:not([data-cwv-ready])>div:not(.slick-initialized)>.thrv_wrapper:not(:first-child){margin-left:var(--tve-gallery-horizontal-space,20px);}@media (max-width: 1023px){body:not(.tve_editor_page) [data-type=carousel]:not([data-cwv-ready])>div:not(.slick-initialized)>.thrv_wrapper{width:calc(( 100% - ( var(--tcb-cwv-slides-t,1) - 1 ) * var(--tve-gallery-horizontal-space,20px) ) / var(--tcb-cwv-slides-t,1));}}@media (max-width: 767px){body:not(.tve_editor_page) [data-type=carousel]:not([data-cwv-ready])>div:not(.slick-initialized)>.thrv_wrapper{width:calc(( 100% - ( var(--tcb-cwv-slides-m,1) - 1 ) * var(--tve-gallery-horizontal-space,20px) ) / var(--tcb-cwv-slides-m,1));}}[data-type=carousel] .tcb-image-gallery-container,[data-type=carousel] .tcb-carousel-container{width:calc(100% + var(--tve-gallery-horizontal-space,20px));}[data-type=carousel] .tcb-image-gallery-container.slick-slider,[data-type=carousel] .tcb-carousel-container.slick-slider{margin:0;display:flex;flex-wrap:wrap;align-items:center;margin-left:calc(-.5 * var(--tve-gallery-horizontal-space,20px));}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track{display:flex;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track.uniform-display-heights,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track.uniform-display-heights{align-items:stretch;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track.uniform-display-heights>*,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track.uniform-display-heights>*{height:unset;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track.uniform-display-heights .slick-slide,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track.uniform-display-heights .slick-slide{display:flex;flex-direction:column;--tve-applied-min-width:unset !important;min-width:unset !important;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track.uniform-display-heights[vertical-position=top] .slick-slide,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track.uniform-display-heights[vertical-position=top] .slick-slide{justify-content:flex-start;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track.uniform-display-heights[vertical-position=center] .slick-slide,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track.uniform-display-heights[vertical-position=center] .slick-slide{justify-content:center;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track.uniform-display-heights[vertical-position=bottom] .slick-slide,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track.uniform-display-heights[vertical-position=bottom] .slick-slide{justify-content:flex-end;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track:not(.uniform-display-heights)[vertical-position=top],[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track:not(.uniform-display-heights)[vertical-position=top]{align-items:flex-start;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track:not(.uniform-display-heights)[vertical-position=center],[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track:not(.uniform-display-heights)[vertical-position=center]{align-items:center;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-track:not(.uniform-display-heights)[vertical-position=bottom],[data-type=carousel] .tcb-carousel-container.slick-slider .slick-track:not(.uniform-display-heights)[vertical-position=bottom]{align-items:flex-end;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .tve_image_caption,[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-slide,[data-type=carousel] .tcb-carousel-container.slick-slider .tve_image_caption,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-slide{margin:0;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-slide,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-slide{margin-top:var(--tve-gallery-slide-margin,0);margin-bottom:var(--tve-gallery-slide-margin,0);margin-left:calc(var(--tve-gallery-horizontal-space,20px) / 2);margin-right:calc(var(--tve-gallery-horizontal-space,20px) / 2);}[data-type=carousel] .tcb-image-gallery-container.slick-slider .slick-slide:focus,[data-type=carousel] .tcb-carousel-container.slick-slider .slick-slide:focus{outline:none;}[data-type=carousel] .tcb-image-gallery-container.slick-slider .tcb-carousel-arrow,[data-type=carousel] .tcb-carousel-container.slick-slider .tcb-carousel-arrow{margin:0;fill:currentColor;color:var(--tcb-local-color-icon,#94a3b0);font-size:20px;z-index:3;}[data-type=carousel] .tcb-image-gallery-container.tcb-carousel-center,[data-type=carousel] .tcb-carousel-container.tcb-carousel-center{margin-left:0;}[data-type=carousel] .tcb-image-gallery-container.tcb-carousel-center .slick-list,[data-type=carousel] .tcb-carousel-container.tcb-carousel-center .slick-list{padding:0 var(--tcb-carousel-overlap,50px) 0 var(--tcb-carousel-overlap,50px) !important;max-width:calc(100% - var(--tve-gallery-horizontal-space,20px));min-width:auto;box-sizing:border-box;}[data-type=carousel] .tcb-image-gallery-container.tcb-carousel-center ul.tcb-carousel-dots,[data-type=carousel] .tcb-carousel-container.tcb-carousel-center ul.tcb-carousel-dots{margin:0 !important;}[data-type=carousel] .tcb-image-gallery-container.tcb-carousel-fade .slick-track,[data-type=carousel] .tcb-carousel-container.tcb-carousel-fade .slick-track{align-items:flex-start;}[data-type=carousel] .tcb-carousel-dots{display:flex;flex-wrap:wrap;justify-content:center;position:relative;margin:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-left:0 !important;bottom:0;top:0;z-index:999;}[data-type=carousel] .tcb-carousel-dots li.tcb-dot{box-sizing:content-box;display:flex;color:var(--tve-applied-color,#8695a2);--tcb-local-color-icon:var(--tve-applied-color,#8695a2);--tcb-local-color-var:var(--tve-applied-color,#8695a2);--tve-icon-size:18px;fill:currentColor;list-style:none;margin:0 var(--tve-carousel-dots-space,5px) !important;padding-bottom:0 !important;}[data-type=carousel] .tcb-carousel-dots li.tcb-dot:not(.slick-active){filter:opacity(.5);}[data-type=carousel] .tcb-carousel-dots li.tcb-dot.slick-active svg:focus{outline:none;}[data-type=carousel].tcb-has-arrows{overflow:unset;margin-left:var(--tve-arrow-size,25px);margin-right:var(--tve-arrow-size,25px);}[data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-prev{right:calc(100% + var(--tve-arrow-size,25px));}[data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-next{left:calc(100% - var(--tve-gallery-horizontal-space,20px) + var(--tve-arrow-size,25px));}[data-type=carousel].tcb-has-arrows .slick-prev{right:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + var(--tve-arrow-size,25px));left:auto;}[data-type=carousel].tcb-has-arrows .slick-next{left:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + var(--tve-arrow-size,25px));right:auto;}[dir=rtl] [data-type=carousel].tcb-has-arrows .slick-prev{left:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + var(--tve-arrow-size,25px));right:auto;}[dir=rtl] [data-type=carousel].tcb-has-arrows .slick-next{left:auto;right:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + var(--tve-arrow-size,25px));}.thrv_symbol:not(.symbol-edit-mode) .tcb-carousel-dots{z-index:100;}@media only screen and (max-width: 1023px){[data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-prev{right:calc(100% + .25 * var(--tve-arrow-size,25px));}[data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-next{left:calc(100% - var(--tve-gallery-horizontal-space,20px) + .25 * var(--tve-arrow-size,25px));}[data-type=carousel].tcb-has-arrows .slick-prev{right:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + .25 * var(--tve-arrow-size,25px));left:auto;}[data-type=carousel].tcb-has-arrows .slick-next{left:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + .25 * var(--tve-arrow-size,25px));right:auto;}[dir=rtl] [data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-prev{left:calc(100% + .25 * var(--tve-arrow-size,25px));}[dir=rtl] [data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-next{right:calc(100% - var(--tve-gallery-horizontal-space,20px) + .25 * var(--tve-arrow-size,25px));}[dir=rtl] [data-type=carousel].tcb-has-arrows .slick-prev{left:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + .25 * var(--tve-arrow-size,25px));right:auto;}[dir=rtl] [data-type=carousel].tcb-has-arrows .slick-next{left:auto;right:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px) + .25 * var(--tve-arrow-size,25px));}}@media only screen and (max-width: 767px){[data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-prev{right:calc(100% + .5 * var(--tve-gallery-horizontal-space,20px));}[data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-next{left:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px));}[data-type=carousel].tcb-has-arrows .slick-prev{right:calc(100% - .25 * var(--tve-gallery-horizontal-space,20px));left:auto;}[data-type=carousel].tcb-has-arrows .slick-next{left:calc(100% - .25 * var(--tve-gallery-horizontal-space,20px));right:auto;}[dir=rtl] [data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-prev{left:calc(100% + .5 * var(--tve-gallery-horizontal-space,20px));}[dir=rtl] [data-type=carousel].tcb-has-arrows .tcb-carousel-center .slick-next{right:calc(100% - .5 * var(--tve-gallery-horizontal-space,20px));}[dir=rtl] [data-type=carousel].tcb-has-arrows .slick-prev{left:calc(100% - .25 * var(--tve-gallery-horizontal-space,20px));right:auto;}[dir=rtl] [data-type=carousel].tcb-has-arrows .slick-next{left:auto;right:calc(100% - .25 * var(--tve-gallery-horizontal-space,20px));}}@media (min-width: 1024px){body:not(.tcb_show_all_hidden) .tcb-desktop-hidden{display:none !important;}}@media (min-width: 768px)and (max-width: 1023px){body:not(.tcb_show_all_hidden) .tcb-tablet-hidden{display:none !important;}}@media (max-width: 767px){body:not(.tcb_show_all_hidden) .tcb-mobile-hidden{display:none !important;}}.tcb-permanently-hidden{display:none !important;}.tar-disabled{cursor:default;opacity:.4;pointer-events:none;}.tcb-video-background-parent{position:relative;z-index:1;}.tcb-video-background-el{position:relative;overflow:hidden;}.tcb-video-background-el .w-control,.tcb-video-background-el .w-status-bar,.tcb-video-background-el .w-report-a-problem{display:none !important;}.tcb-video-background-el>iframe,.tcb-video-background-el>video,.tcb-video-background-el p>iframe,.tcb-video-background-el p>video,.tcb-video-background-el>.wistia_embed video{position:absolute !important;top:50% !important;left:50% !important;box-sizing:border-box !important;height:56.25vw !important;min-height:100% !important;min-width:100% !important;transform:translate(-50%,-50%) !important;width:577.77777778vh !important;z-index:-1;max-width:none !important;}.tve_shortcode_overlay{width:100%;height:40px;background-color:rgba(0,0,0,.4);color:#fff;text-align:center;}.tve_shortcode_overlay span{display:inline-block;padding-top:10px;}.thrv_text_element span[style~="color:"] a,.thrv-inline-text span[style~="color:"] a{color:inherit !important;}.tcb-elem-placeholder{display:none;}.tcb-clear:after{display:block;height:0;content:"";}.tcb-flex{display:flex;}.tcb-flex.tcb-flex-columns{flex-direction:column;}svg.svg-shape-to-front{z-index:1;}.svg-shape-bottom,.svg-shape-top{fill:#fff;}.thrv_wrapper .svg-shape-bottom,.symbol-section-out .svg-shape-bottom,.thrv_wrapper .svg-shape-top,.symbol-section-out .svg-shape-top{position:absolute;left:0;}.tcb-replaceable-placeholder{display:none;}[style*="--tcb-cwv-height-"]:not([data-cwv-ready]){height:var(--tcb-cwv-height-d);}@media (max-width: 1023px){[style*="--tcb-cwv-height-"]:not([data-cwv-ready]){height:var(--tcb-cwv-height-t);}}@media (max-width: 767px){[style*="--tcb-cwv-height-"]:not([data-cwv-ready]){height:var(--tcb-cwv-height-m);}}.tve_js_placeholder{background:none !important;}.thrv_wrapper.tve-scroll-parallax{transform:translate(var(--parallaxTX),var(--parallaxTY)) rotate(var(--parallaxR)) scale(var(--parallaxS)) perspective(var(--parallaxP)) rotateY(var(--parallaxRY)) !important;opacity:var(--parallaxO) !important;filter:blur(var(--parallaxB)) !important;transition:all .2s linear !important;}.thrv_wrapper.tve-scroll-parallax.tcb-compact-edit-mode{outline:none !important;}.thrv_custom_html_shortcode table,.thrv_custom_html_shortcode th,.thrv_custom_html_shortcode td{border:none;}.tve-browser-data{text-transform:capitalize;}.tve-scroll-sticky.tve_ea_thrive_animation:before,.tve-scroll-sticky.tve_ea_thrive_animation:after,.tve-scroll-sticky.tve_ea_thrive_animation *:before,.tve-scroll-sticky.tve_ea_thrive_animation *:after{content:unset !important;}@keyframes pulse{25%{transform:scale(1.1);}75%{transform:scale(.9);}}@keyframes pulse-grow{to{transform:scale(1.1);}}@keyframes pulse-shrink{to{transform:scale(.9);}}@keyframes push{50%{transform:scale(.8);}100%{transform:scale(1);}}@keyframes pop{50%{transform:scale(1.2);}}@keyframes bob{0%{transform:translateY(-8px);}50%{transform:translateY(-4px);}100%{transform:translateY(-8px);}}@keyframes bob-float{100%{transform:translateY(-8px);}}@keyframes hang{0%{transform:translateY(8px);}50%{transform:translateY(4px);}100%{transform:translateY(8px);}}@keyframes hang-sink{100%{transform:translateY(8px);}}@keyframes wobble-horizontal{16.65%{transform:translateX(8px);}33.3%{transform:translateX(-6px);}49.95%{transform:translateX(4px);}66.6%{transform:translateX(-2px);}83.25%{transform:translateX(1px);}100%{transform:translateX(0);}}@keyframes wobble-vertical{16.65%{transform:translateY(8px);}33.3%{transform:translateY(-6px);}49.95%{transform:translateY(4px);}66.6%{transform:translateY(-2px);}83.25%{transform:translateY(1px);}100%{transform:translateY(0);}}@keyframes spin{0%{transform:rotate(0deg);}50%{transform:rotate(180deg);}100%{transform:rotate(360deg);}}@keyframes buzz{50%{transform:translateX(3px) rotate(2deg);}100%{transform:translateX(-3px) rotate(-2deg);}}@keyframes buzz-out{10%{transform:translateX(3px) rotate(2deg);}20%{transform:translateX(-3px) rotate(-2deg);}30%{transform:translateX(3px) rotate(2deg);}40%{transform:translateX(-3px) rotate(-2deg);}50%{transform:translateX(2px) rotate(1deg);}60%{transform:translateX(-2px) rotate(-1deg);}70%{transform:translateX(2px) rotate(1deg);}80%{transform:translateX(-2px) rotate(-1deg);}90%{transform:translateX(1px) rotate(0);}100%{transform:translateX(-1px) rotate(0);}}@keyframes slide-wobble{0%{transform:translateX(30%);opacity:0;}25%{transform:translateX(-15%);}50%{transform:translateX(10%);}75%{transform:translateX(-5%);}100%{transform:translateX(0%);opacity:1;}}@keyframes fade-out{0%{transform:translateX(0%);opacity:1;}25%{transform:translateX(-5%);}100%{transform:translateX(100%);opacity:0;}}.tcb-video-popup{transform:translate(-50%,-50%);}html.tve-o-hidden.tve-hide-overflow.tve-l-open{overflow:hidden;}html.tve-o-hidden.tve-hide-overflow.tve-l-open:not(.bp-th){height:auto !important;}body.tve-o-hidden.tve-hide-overflow.tve-l-open{overflow:hidden;}body.tve-o-hidden.tve-hide-overflow.tve-l-open:not(.bp-t){height:auto !important;}body.tcb-animating{padding-bottom:100px;}@media only screen and (min-device-width: 375px)and (max-device-width: 736px){html.tve-o-hidden.tve-hide-overflow.tve-l-open:not(.bp-th){height:100% !important;}body.tve-o-hidden.tve-hide-overflow.tve-l-open:not(.bp-t){height:100% !important;}}.tve_p_lb_overlay{opacity:0;}.tve_p_lb_background{text-align:center;position:fixed;top:0;left:0;right:0;bottom:0;z-index:999992;padding:10px;}.tve-l-open.tve-o-hidden .tve_p_lb_background{overflow-x:hidden;overflow-y:hidden;}.tve-l-open.tve-o-hidden .tve_p_lb_background.tve-scroll{overflow-y:auto;-webkit-overflow-scrolling:touch;}.tve_p_lb_background .tve_p_lb_overlay{position:absolute;top:0;left:0;right:0;opacity:0;background:#000;filter:alpha(opacity=80) \9;transition:opacity .3s ease-out;min-height:100%;}.tve_p_lb_background.tve_lb_closing .tve_p_lb_overlay{opacity:0 !important;transition:opacity .3s ease-out;}.tve_p_lb_background.tve_lb_closing .tve_p_lb_content{opacity:0;}.tve_p_lb_background.tve_lb_opening .tve_p_lb_overlay,.tve_post_lightbox .tve_p_lb_background .tve_p_lb_overlay,.tve_p_lb_background.tve_lb_open .tve_p_lb_overlay{opacity:.8;transition:opacity .3s ease-out;}.tve_p_lb_background .tve_p_lb_content{box-sizing:border-box !important;border-radius:6px;position:relative;background-color:#fff;padding:15px;width:100%;max-width:650px;margin:auto !important;text-align:left;overflow:visible;}#tve_current_event_settings .tve_p_lb_background .tve_p_lb_content{box-shadow:0 0 6px -2px #000;background-color:#fff;}.tve_p_lb_background .tve_p_lb_content .tve_p_lb_inner{max-height:none !important;}.tve_p_lb_background .tve_p_lb_content .tve_p_lb_close{z-index:99;position:absolute;top:-10px;right:-10px;display:block;width:22px;height:22px;line-height:20px;text-align:center;border:1px solid #fff;background:#000;color:#fff;text-decoration:none;font-size:12px;transition:.1s;border-radius:22px;}.tve_p_lb_background .tve_p_lb_content .tve_p_lb_close:hover{transform:scale(1.1);}.tve_p_lb_background .tve_p_lb_content .scon .btn{display:block;width:auto;}.tve_p_lb_background .tve_p_lb_content .out{margin-left:0;margin-right:0;}.tve_p_lb_background.tve_lb_anim_instant .tve_p_lb_overlay{opacity:.8;}.tve_p_lb_background.tve_lb_anim_instant.tve_lb_closing{display:none !important;}.tve_p_lb_background.tve_lb_anim_zoom_in .tve_p_lb_content{transform:scale(0);}.tve_p_lb_background.tve_lb_anim_zoom_in.tve_lb_opening .tve_p_lb_content,.tve_p_lb_background.tve_lb_anim_zoom_in.tve_lb_open .tve_p_lb_content{transform:scale(1);transition:all .5s ease-out;}.tve_p_lb_background.tve_lb_anim_zoom_in.tve_lb_closing .tve_p_lb_content{transform:scale(0);transition:all .3s ease-out;}.tve_p_lb_background.tve_lb_anim_zoom_out .tve_p_lb_content{transform:scale(1.8);}.tve_p_lb_background.tve_lb_anim_zoom_out.tve_lb_opening .tve_p_lb_content,.tve_p_lb_background.tve_lb_anim_zoom_out.tve_lb_open .tve_p_lb_content{transform:scale(1);transition:all .5s ease-out;}.tve_p_lb_background.tve_lb_anim_zoom_out.tve_lb_closing .tve_p_lb_content{transform:scale(1.8);transition:all .3s ease-out;}.tve_p_lb_background.tve_lb_anim_rotate .tve_p_lb_overlay{transition:opacity .5s;}.tve_p_lb_background.tve_lb_anim_rotate .tve_p_lb_content{transform:scale(0) rotate(500deg);}.tve_p_lb_background.tve_lb_anim_rotate.tve_lb_opening .tve_p_lb_content,.tve_p_lb_background.tve_lb_anim_rotate.tve_lb_open .tve_p_lb_content{transform:scale(1) rotate(0deg);transition:all .6s ease-out;}.tve_p_lb_background.tve_lb_anim_rotate.tve_lb_closing .tve_p_lb_content{transform:scale(0) rotate(500deg);transition:all .7s ease-out;}.tve_p_lb_background.tve_lb_anim_slide_top .tve_p_lb_content{transform:translateY(-100%);}.tve_p_lb_background.tve_lb_anim_slide_top.tve_lb_opening .tve_p_lb_content,.tve_p_lb_background.tve_lb_anim_slide_top.tve_lb_open .tve_p_lb_content{transform:translateY(0px);transition:all .5s ease-out;}.tve_p_lb_background.tve_lb_anim_slide_top.tve_lb_closing .tve_p_lb_content{transform:translateY(100%);transition:all .5s ease-out;}.tve_p_lb_background.tve_lb_anim_slide_bottom .tve_p_lb_content{opacity:0;transform:translateY(1400px);}.tve_p_lb_background.tve_lb_anim_slide_bottom.tve_lb_opening .tve_p_lb_content,.tve_p_lb_background.tve_lb_anim_slide_bottom.tve_lb_open .tve_p_lb_content{opacity:1;transform:translateY(0px);transition:all .5s ease-out;}.tve_p_lb_background.tve_lb_anim_slide_bottom.tve_lb_closing .tve_p_lb_content{transform:translateY(-1400px);transition:all .7s ease-out;}.tve_p_lb_background.tve_lb_anim_lateral .tve_p_lb_content{opacity:0;transform:translateX(-100%);}.tve_p_lb_background.tve_lb_anim_lateral.tve_lb_opening .tve_p_lb_content,.tve_p_lb_background.tve_lb_anim_lateral.tve_lb_open .tve_p_lb_content{opacity:1;transform:translateX(0px);transition:all .3s ease-out;}.tve_p_lb_background.tve_lb_anim_lateral.tve_lb_closing .tve_p_lb_content{transform:translateX(100%);transition:all .3s ease-out;}.tve_et_click{cursor:pointer;}.tve_et_click+.tve-image-overlay{cursor:pointer;}a.tve_ea_thrive_animation{display:inline-block;}.tve_ea_thrive_animation{opacity:0;}body.tve_editor_page .tve_ea_thrive_animation:not(.anim-preview){opacity:1;transform:none;}.tve_ea_thrive_animation.tve_anim_start{opacity:1;transition:all .5s ease-out;}.tve_ea_thrive_animation.tve_anim_slide_top{transform:translateY(-200px);}.tve_ea_thrive_animation.tve_anim_slide_top.tve_anim_start{transform:translateY(0px);}.tve_ea_thrive_animation.tve_anim_slide_bottom{transform:translateY(200px);}.tve_ea_thrive_animation.tve_anim_slide_bottom.tve_anim_start{transform:translateY(0px);}.tve_ea_thrive_animation.tve_anim_slide_left{transform:translateX(-200px);}.tve_ea_thrive_animation.tve_anim_slide_left.tve_anim_start{transform:translateX(0px);}.tve_ea_thrive_animation.tve_anim_slide_right{transform:translateX(200px);}.tve_ea_thrive_animation.tve_anim_slide_right.tve_anim_start{transform:translateX(0px);}.tve_ea_thrive_animation.tve_anim_appear{transform:scale(.1);}.tve_ea_thrive_animation.tve_anim_appear.tve_anim_start{transform:scale(1);}.tve_ea_thrive_animation.tve_anim_rotate{transform:scale(.1) rotate(400deg);}.tve_ea_thrive_animation.tve_anim_rotate.tve_anim_start{transform:scale(1) rotate(0deg);transition:all .6s ease-out;}.tve_ea_thrive_animation.tve_anim_zoom_out{transform:scale(3.5);}.tve_ea_thrive_animation.tve_anim_zoom_out.tve_anim_start{transform:scale(1);}.tve_ea_thrive_animation.tve_anim_roll_in{transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);}.tve_ea_thrive_animation.tve_anim_roll_in.tve_anim_start{transform:none;}.tve_ea_thrive_animation.tve_anim_roll_out{opacity:1;transform:none;}.tve_ea_thrive_animation.tve_anim_roll_out.tve_anim_start{opacity:0;transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);}.tve_ea_thrive_animation.tve_anim_shrink{transition:transform .2s ease-out;transform:scale(1);visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_shrink.tve_anim_start{transform:scale(.9);transition:all .2s ease-out;}.tve_ea_thrive_animation.tve_anim_grow{transition:transform .2s ease-out;transform:scale(1);visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_grow.tve_anim_start{transform:scale(1.1);transition:all .2s ease-out;}.tve_ea_thrive_animation.tve_anim_pulse{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_pulse.tve_anim_start{animation-name:pulse;animation-duration:1s;animation-timing-function:linear;animation-iteration-count:infinite;}.tve_ea_thrive_animation.tve_anim_pulse_grow{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_pulse_grow.tve_anim_start{animation-name:pulse-grow;animation-duration:.3s;animation-timing-function:linear;animation-iteration-count:infinite;animation-direction:alternate;}.tve_ea_thrive_animation.tve_anim_pulse_shrink{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_pulse_shrink.tve_anim_start{animation-name:pulse-shrink;animation-duration:.3s;animation-timing-function:linear;animation-iteration-count:infinite;animation-direction:alternate;}.tve_ea_thrive_animation.tve_anim_push{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_push.tve_anim_start{animation-name:push;animation-duration:.3s;animation-timing-function:linear;animation-iteration-count:1;}.tve_ea_thrive_animation.tve_anim_pop{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_pop.tve_anim_start{animation-name:pop;animation-duration:.3s;animation-timing-function:linear;animation-iteration-count:1;}.tve_ea_thrive_animation.tve_anim_bounce_in{transition-duration:.5s;visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_bounce_in.tve_anim_start{transform:scale(1.2);transition-timing-function:cubic-bezier(.47,2.02,.31,-.36);}.tve_ea_thrive_animation.tve_anim_bounce_out{transition-duration:.5s;visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_bounce_out.tve_anim_start{transform:scale(.8);transition-timing-function:cubic-bezier(.47,2.02,.31,-.36);}.tve_ea_thrive_animation.tve_anim_bob{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_bob.tve_anim_start{animation-name:bob-float,bob;animation-duration:.3s,1s;animation-delay:0s,.3s;animation-timing-function:ease-out,ease-in-out;animation-iteration-count:1,infinite;animation-fill-mode:forwards;animation-direction:normal,alternate;}.tve_ea_thrive_animation.tve_anim_hang{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_hang.tve_anim_start{animation-name:hang-sink,hang;animation-duration:.3s,1s;animation-delay:0s,.3s;animation-timing-function:ease-out,ease-in-out;animation-iteration-count:1,infinite;animation-fill-mode:forwards;animation-direction:normal,alternate;}.tve_ea_thrive_animation.tve_anim_wobble_horizontal{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_wobble_horizontal.tve_anim_start{animation-name:wobble-horizontal;animation-duration:1s;animation-timing-function:ease-in-out;animation-iteration-count:1;}.tve_ea_thrive_animation.tve_anim_wobble_vertical{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_wobble_vertical.tve_anim_start{animation-name:wobble-vertical;animation-duration:1s;animation-timing-function:ease-in-out;animation-iteration-count:1;}.tve_ea_thrive_animation.tve_anim_buzz{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_buzz.tve_anim_start{animation-name:buzz;animation-duration:.15s;animation-timing-function:linear;animation-iteration-count:infinite;}.tve_ea_thrive_animation.tve_anim_buzz_out{visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_buzz_out.tve_anim_start{animation-name:buzz-out;animation-duration:.75s;animation-timing-function:linear;animation-iteration-count:1;}.tve_ea_thrive_animation.tve_anim_forward{transition-duration:.3s;visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_forward.tve_anim_start{transform:translateX(8px);}.tve_ea_thrive_animation.tve_anim_backward{transition-duration:.3s;visibility:visible !important;opacity:1;}.tve_ea_thrive_animation.tve_anim_backward.tve_anim_start{transform:translateX(-8px);}.tve_ea_thrive_animation.tve_anim_sweep_to_right{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col:before,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleX(0);transform-origin:0 50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_right:hover.tcb-shortcode:after{transform:scaleX(1) !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_left{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col:before,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleX(0);transform-origin:100% 50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_left:hover.tcb-shortcode:after{transform:scaleX(1) !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_bottom{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col:before,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleY(0);transform-origin:50% 0;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_bottom:hover.tcb-shortcode:after{transform:scaleY(1) !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_top{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col:before,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleY(0);transform-origin:50% 100%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_sweep_to_top:hover.tcb-shortcode:after{transform:scaleY(1) !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_right{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col:before,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleX(0);transform-origin:0 50%;transition-property:transform;transition-duration:.5s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_right:hover.tcb-shortcode:after{transform:scaleX(1) !important;transition-timing-function:cubic-bezier(.52,1.64,.37,.66);}.tve_ea_thrive_animation.tve_anim_bounce_to_left{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col:before,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleX(0);transform-origin:100% 50%;transition-property:transform;transition-duration:.5s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_left:hover.tcb-shortcode:after{transform:scaleX(1) !important;transition-timing-function:cubic-bezier(.52,1.64,.37,.66);}.tve_ea_thrive_animation.tve_anim_bounce_to_bottom{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col:before,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleY(0);transform-origin:50% 0;transition-property:transform;transition-duration:.5s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_bottom:hover.tcb-shortcode:after{transform:scaleY(1) !important;transition-timing-function:cubic-bezier(.52,1.64,.37,.66);}.tve_ea_thrive_animation.tve_anim_bounce_to_top{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col:before,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleY(0);transform-origin:50% 100%;transition-property:transform;transition-duration:.5s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_bounce_to_top:hover.tcb-shortcode:after{transform:scaleY(1) !important;transition-timing-function:cubic-bezier(.52,1.64,.37,.66);}.tve_ea_thrive_animation.tve_anim_radial_out{opacity:1;visibility:visible !important;overflow:hidden;}.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col>span,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col>div,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col:before,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_radial_out.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_radial_out>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_radial_out>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_radial_out>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-col:after,.tve_ea_thrive_animation.tve_anim_radial_out.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_radial_out.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:100%;transform:scale(0);transform-origin:50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_radial_out.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_radial_out:hover.tcb-shortcode:after{transform:scale(2) !important;}.tve_ea_thrive_animation.tve_anim_radial_in{opacity:1;visibility:visible !important;overflow:hidden;}.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col>span,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col>div,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col:before,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_radial_in.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_radial_in>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_radial_in>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_radial_in>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-col:after,.tve_ea_thrive_animation.tve_anim_radial_in.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_radial_in.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:100%;transform:scale(2);transform-origin:50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_radial_in.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_radial_in:hover.tcb-shortcode:after{visibility:visible;transform:scale(0) !important;}.tve_ea_thrive_animation.tve_anim_rectangle_in{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col>span,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col>div,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col:before,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_rectangle_in.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_rectangle_in>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-col:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scale(1);transform-origin:50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_rectangle_in.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_rectangle_in:hover.tcb-shortcode:after{visibility:visible;transform:scale(0) !important;}.tve_ea_thrive_animation.tve_anim_rectangle_out{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col>span,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col>div,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col:before,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_rectangle_out.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_rectangle_out>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-col:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scale(0);transform-origin:50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_rectangle_out.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_rectangle_out:hover.tcb-shortcode:after{transform:scale(1) !important;}.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col:before,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-col:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleX(0);transform-origin:50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_shutter_out_horizontal:hover.tcb-shortcode:after{transform:scaleX(1) !important;}.tve_ea_thrive_animation.tve_anim_shutter_out_vertical{opacity:1;visibility:visible !important;}.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay{position:absolute !important;}.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode{position:relative;}.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item.tcb-post-title a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode>span,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode>.tcb-shortcode,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode>div,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode>.tcb-icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode .tve_s_icon,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode.tcb-post-categories a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode.tcb-post-tags a,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode.tcb-post-title a{position:relative;z-index:1;}.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item:before,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link:before,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background:before,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay:before,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col:before,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon:before,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item:before,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;}.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-col:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tcb-shortcode:after{visibility:visible;content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:0;transform:scaleY(0);transform-origin:50%;transition-property:transform;transition-duration:.3s;transition-timing-function:ease-out;}.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start.tcb-col:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical.tve_anim_start.tcb-shortcode:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover.thrive-animated-item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover>.tcb-button-link:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover>.tve-content-box-background:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover>.tve_image_frame .tve-image-overlay:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover.thrv_icon:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover.tve_s_item:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover.tcb-col:after,.tve_ea_thrive_animation.tve_anim_shutter_out_vertical:hover.tcb-shortcode:after{transform:scaleY(1) !important;}.wistia_popover_embed .wistia_socialbar{display:none !important;}body #tve_editor .tve_anim_sweep_to_right:hover .tve-image-overlay,body #tve_editor .tve_anim_sweep_to_right:hover.thrv_icon,body #tve_editor .tve_anim_sweep_to_right:hover.tcb-col,body #tve_editor .tve_anim_sweep_to_right:hover>.tve-content-box-background,body #tve_editor .tve_anim_sweep_to_left:hover .tve-image-overlay,body #tve_editor .tve_anim_sweep_to_left:hover.thrv_icon,body #tve_editor .tve_anim_sweep_to_left:hover.tcb-col,body #tve_editor .tve_anim_sweep_to_left:hover>.tve-content-box-background,body #tve_editor .tve_anim_sweep_to_bottom:hover .tve-image-overlay,body #tve_editor .tve_anim_sweep_to_bottom:hover.thrv_icon,body #tve_editor .tve_anim_sweep_to_bottom:hover.tcb-col,body #tve_editor .tve_anim_sweep_to_bottom:hover>.tve-content-box-background,body #tve_editor .tve_anim_sweep_to_top:hover .tve-image-overlay,body #tve_editor .tve_anim_sweep_to_top:hover.thrv_icon,body #tve_editor .tve_anim_sweep_to_top:hover.tcb-col,body #tve_editor .tve_anim_sweep_to_top:hover>.tve-content-box-background,body #tve_editor .tve_anim_bounce_to_right:hover .tve-image-overlay,body #tve_editor .tve_anim_bounce_to_right:hover.thrv_icon,body #tve_editor .tve_anim_bounce_to_right:hover.tcb-col,body #tve_editor .tve_anim_bounce_to_right:hover>.tve-content-box-background,body #tve_editor .tve_anim_bounce_to_left:hover .tve-image-overlay,body #tve_editor .tve_anim_bounce_to_left:hover.thrv_icon,body #tve_editor .tve_anim_bounce_to_left:hover.tcb-col,body #tve_editor .tve_anim_bounce_to_left:hover>.tve-content-box-background,body #tve_editor .tve_anim_bounce_to_bottom:hover .tve-image-overlay,body #tve_editor .tve_anim_bounce_to_bottom:hover.thrv_icon,body #tve_editor .tve_anim_bounce_to_bottom:hover.tcb-col,body #tve_editor .tve_anim_bounce_to_bottom:hover>.tve-content-box-background,body #tve_editor .tve_anim_bounce_to_top:hover .tve-image-overlay,body #tve_editor .tve_anim_bounce_to_top:hover.thrv_icon,body #tve_editor .tve_anim_bounce_to_top:hover.tcb-col,body #tve_editor .tve_anim_bounce_to_top:hover>.tve-content-box-background,body #tve_editor .tve_anim_radial_out:hover .tve-image-overlay,body #tve_editor .tve_anim_radial_out:hover.thrv_icon,body #tve_editor .tve_anim_radial_out:hover.tcb-col,body #tve_editor .tve_anim_radial_out:hover>.tve-content-box-background,body #tve_editor .tve_anim_radial_in:hover .tve-image-overlay,body #tve_editor .tve_anim_radial_in:hover.thrv_icon,body #tve_editor .tve_anim_radial_in:hover.tcb-col,body #tve_editor .tve_anim_radial_in:hover>.tve-content-box-background,body #tve_editor .tve_anim_rectangle_in:hover .tve-image-overlay,body #tve_editor .tve_anim_rectangle_in:hover.thrv_icon,body #tve_editor .tve_anim_rectangle_in:hover.tcb-col,body #tve_editor .tve_anim_rectangle_in:hover>.tve-content-box-background,body #tve_editor .tve_anim_rectangle_out:hover .tve-image-overlay,body #tve_editor .tve_anim_rectangle_out:hover.thrv_icon,body #tve_editor .tve_anim_rectangle_out:hover.tcb-col,body #tve_editor .tve_anim_rectangle_out:hover>.tve-content-box-background,body #tve_editor .tve_anim_shutter_out_horizontal:hover .tve-image-overlay,body #tve_editor .tve_anim_shutter_out_horizontal:hover.thrv_icon,body #tve_editor .tve_anim_shutter_out_horizontal:hover.tcb-col,body #tve_editor .tve_anim_shutter_out_horizontal:hover>.tve-content-box-background,body #tve_editor .tve_anim_shutter_out_vertical:hover .tve-image-overlay,body #tve_editor .tve_anim_shutter_out_vertical:hover.thrv_icon,body #tve_editor .tve_anim_shutter_out_vertical:hover.tcb-col,body #tve_editor .tve_anim_shutter_out_vertical:hover>.tve-content-box-background{transition:background-color .5s ease;background:rgba(0,0,0,0);background-image:linear-gradient(transparent,transparent) !important;}#tve_editor .tve_anim_start.tve_anim_sweep_to_right.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_sweep_to_right.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_sweep_to_right.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_sweep_to_right.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_sweep_to_left.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_sweep_to_left.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_sweep_to_left.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_sweep_to_left.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_sweep_to_bottom.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_sweep_to_bottom.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_sweep_to_bottom.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_sweep_to_bottom.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_sweep_to_top.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_sweep_to_top.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_sweep_to_top.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_sweep_to_top.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_bounce_to_right.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_bounce_to_right.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_bounce_to_right.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_bounce_to_right.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_bounce_to_left.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_bounce_to_left.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_bounce_to_left.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_bounce_to_left.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_bounce_to_bottom.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_bounce_to_bottom.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_bounce_to_bottom.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_bounce_to_bottom.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_bounce_to_top.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_bounce_to_top.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_bounce_to_top.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_bounce_to_top.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_radial_out.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_radial_out.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_radial_out.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_radial_out.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_radial_in.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_radial_in.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_radial_in.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_radial_in.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_rectangle_in.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_rectangle_in.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_rectangle_in.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_rectangle_in.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_rectangle_out.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_rectangle_out.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_rectangle_out.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_rectangle_out.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_shutter_out_horizontal.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_shutter_out_horizontal.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_shutter_out_horizontal.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_shutter_out_horizontal.tve-state-hover>.tve-content-box-background,#tve_editor .tve_anim_start.tve_anim_shutter_out_vertical.tve-state-hover .tve-image-overlay,#tve_editor .tve_anim_start.tve_anim_shutter_out_vertical.tve-state-hover.thrv_icon,#tve_editor .tve_anim_start.tve_anim_shutter_out_vertical.tve-state-hover.tcb-col,#tve_editor .tve_anim_start.tve_anim_shutter_out_vertical.tve-state-hover>.tve-content-box-background{transition:background-color .5s ease;background:rgba(0,0,0,0);background-image:linear-gradient(transparent,transparent) !important;}.tcb-flex-row{display:flex;flex-wrap:nowrap;align-items:stretch;flex-direction:row;justify-content:space-between;margin-top:0;margin-left:-15px;padding-bottom:15px;padding-top:15px;}.tcb-flex-row.tve-flex-start{align-items:flex-start;}.tcb-flex-row.tve-flex-center{align-items:center;}.tcb-flex-row.tve-flex-end{align-items:flex-end;}.tcb-flex-col{flex:1 1 auto;padding-top:0px;padding-left:15px;}.tcb-flex-row .tcb-flex-col{box-sizing:border-box;}.tcb--cols--2:not(.tcb-resized)>.tcb-flex-col{max-width:50%;}.tcb--cols--3:not(.tcb-resized)>.tcb-flex-col{max-width:33.3333333333%;}.tcb--cols--4:not(.tcb-resized)>.tcb-flex-col{max-width:25%;}.tcb--cols--5:not(.tcb-resized)>.tcb-flex-col{max-width:20%;}.tcb--cols--6:not(.tcb-resized)>.tcb-flex-col{max-width:16.6666666667%;}.tcb--cols--7:not(.tcb-resized)>.tcb-flex-col{max-width:14.2857142857%;}.tcb--cols--8:not(.tcb-resized)>.tcb-flex-col{max-width:12.5%;}.tcb--cols--9:not(.tcb-resized)>.tcb-flex-col{max-width:11.1111111111%;}.tcb--cols--10:not(.tcb-resized)>.tcb-flex-col{max-width:10%;}.tcb--cols--11:not(.tcb-resized)>.tcb-flex-col{max-width:9.0909090909%;}.tcb--cols--12:not(.tcb-resized)>.tcb-flex-col{max-width:8.3333333333%;}.tcb--cols--13:not(.tcb-resized)>.tcb-flex-col{max-width:7.6923076923%;}.tcb--cols--14:not(.tcb-resized)>.tcb-flex-col{max-width:7.1428571429%;}.tcb--cols--15:not(.tcb-resized)>.tcb-flex-col{max-width:6.6666666667%;}.tcb--cols--16:not(.tcb-resized)>.tcb-flex-col{max-width:6.25%;}.tcb--cols--17:not(.tcb-resized)>.tcb-flex-col{max-width:5.8823529412%;}.tcb--cols--18:not(.tcb-resized)>.tcb-flex-col{max-width:5.5555555556%;}.tcb--cols--19:not(.tcb-resized)>.tcb-flex-col{max-width:5.2631578947%;}.tcb--cols--20:not(.tcb-resized)>.tcb-flex-col{max-width:5%;}.tcb-flex-row:not(.tcb-resized)>.tcb-flex-col.c-25{max-width:25%;}.tcb-flex-row:not(.tcb-resized)>.tcb-flex-col.c-33{max-width:33.33333333%;}.tcb-flex-row:not(.tcb-resized)>.tcb-flex-col.c-66{max-width:66.6666666%;}.tcb-flex-row:not(.tcb-resized)>.tcb-flex-col.c-50{max-width:50%;}.tcb-flex-row:not(.tcb-resized)>.tcb-flex-col.c-75{max-width:75%;}.tcb-col{height:100%;display:flex;flex-direction:column;position:relative;}.tcb-flex-center>.tcb-flex-col>.tcb-col{justify-content:center;}.tcb-flex-end>.tcb-flex-col>.tcb-col{justify-content:flex-end;}.tcb-flex-row .tcb-col{box-sizing:border-box;}.tcb-col.variable-height{height:unset !important;}.tcb--cols--1>.tcb-flex-col>.tcb-col{max-width:100%;}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.tcb-flex-col{width:100%;}.tcb-col{display:block;}}.tcb-flex-col>a.tcb-col>div.tcb-col{justify-content:inherit;}@media (min-width: 1024px){.tcb-flex-row.tcb-desktop-wrap>.tcb-flex-col{max-width:100%;flex:1 0 250px;}}@media (max-width: 1023px)and (min-width: 768px){.tcb-flex-row:not(.tcb--cols--2):not(.tcb-medium-no-wrap),.tcb-flex-row.tcb-resized:not(.tcb--cols--2):not(.tcb-medium-no-wrap){flex-wrap:wrap;}.tcb-flex-row:not(.tcb--cols--2):not(.tcb-medium-no-wrap)>.tcb-flex-col,.tcb-flex-row.tcb-resized:not(.tcb--cols--2):not(.tcb-medium-no-wrap)>.tcb-flex-col{max-width:100% !important;flex:1 0 250px;}.tcb-flex-row.tcb-medium-no-wrap,.tcb-flex-row.tcb-resized.tcb-medium-no-wrap{flex-wrap:nowrap !important;}.tcb-flex-row.tcb-medium-no-wrap>.tcb-flex-col,.tcb-flex-row.tcb-resized.tcb-medium-no-wrap>.tcb-flex-col{flex:1 1 auto !important;}.tcb-flex-row.tcb-medium-wrap,.tcb-flex-row.tcb-resized.tcb-medium-wrap{flex-wrap:wrap;}.tcb-flex-row.tcb-medium-wrap>.tcb-flex-col,.tcb-flex-row.tcb-resized.tcb-medium-wrap>.tcb-flex-col{max-width:100% !important;}.tcb-flex-row.tcb-desktop-wrap.tcb--cols--2:not(.tcb-medium-wrap):not(.tcb-medium-no-wrap)>.tcb-flex-col,.tcb-flex-row.tcb-resized.tcb-desktop-wrap.tcb--cols--2:not(.tcb-medium-wrap):not(.tcb-medium-no-wrap)>.tcb-flex-col{flex-shrink:0;max-width:100%;}}@media (max-width: 767px){.tcb-flex-row{flex-direction:column;}.tcb-flex-row.tcb-reverse{flex-direction:column-reverse;}.thrv_wrapper>.tcb-flex-row:not(.v-2)>.tcb-flex-col{width:100%;max-width:100% !important;flex:0 0 auto !important;}.tcb-flex-row.v-2{flex-direction:row;}.tcb-flex-row.v-2:not(.tcb-mobile-no-wrap){flex-wrap:wrap;}.tcb-flex-row.v-2:not(.tcb-mobile-no-wrap).tcb-reverse{flex-wrap:wrap-reverse;flex-direction:row-reverse;}.tcb-flex-row.v-2:not(.tcb-mobile-no-wrap)>.tcb-flex-col{width:100%;max-width:100% !important;flex:1 0 390px;}}[class^=thrv-icon-] svg,[class*=" thrv-icon-"] svg,.thrv-svg-icon svg,.tve_s_icon svg{width:1em;height:1em;stroke-width:0;fill:currentColor;stroke:currentColor;}@media screen and (max-device-width: 480px){body{-webkit-text-size-adjust:none;}}html{text-rendering:auto !important;}html body{text-rendering:auto !important;}body.tve_lp:before,body.tcb_symbol-template-default:before{content:none;}#tve_editor .thrv_bullets_shortcode ol.tve_ul,#tve_editor .thrv_bullets_shortcode ul.tve_ul{line-height:1.4em;}#tve_editor .thrv_bullets_shortcode ol.tve_ul li,#tve_editor .thrv_bullets_shortcode ul.tve_ul li{margin-bottom:10px;}#tve_editor .thrv_bullets_shortcode ol.tve_ul li:before,#tve_editor .thrv_bullets_shortcode ul.tve_ul li:before{content:"" !important;margin-right:0;}#tve_editor ol,#tve_editor ul{margin-left:20px;}#tve_editor ol li[style*=right],#tve_editor ol li[style*=center],#tve_editor ul li[style*=right],#tve_editor ul li[style*=center]{list-style-position:inside;}#tve_editor ol.thrv_wrapper,#tve_editor ul.thrv_wrapper{line-height:1.4em;}#tve_editor ol.thrv_wrapper li,#tve_editor ul.thrv_wrapper li{margin-bottom:10px;}#tve_editor ul.tve_w_menu{margin-left:0;}#tve_editor ul.tve_w_menu ul{margin-left:0;}#tve_editor .tve_block_center{display:table;margin-left:auto;margin-right:auto;}.bold_text{font-weight:bold;}.italic_text{font-style:italic;}.underline_text{text-decoration:underline;}.strikethrough_text{text-decoration:line-through;}.tve_p_left{text-align:left;}.tve_p_right{text-align:right;}.tve_p_center{text-align:center;}.tvealignjustify{text-align:justify;}.thrv_columns:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.thrv_wrapper{margin-top:20px;margin-bottom:20px;padding:1px;}.thrv_wrapper div{box-sizing:content-box;}.thrv_wrapper .thrv_countdown_timer div{box-sizing:content-box !important;}.thrv_wrapper.tve_wp_shortcode .ui-social-locker-button-inner-wrap,.thrv_wrapper.tve_wp_shortcode .ui-social-locker-button-overlay{box-sizing:border-box !important;}.thrv_symbol .thrv_wrapper:not(.thrv_icon){box-sizing:border-box !important;}.thrv_wrapper.tve-elem-default-pad{padding:20px;}.thrv_wrapper.thrv_text_element,.thrv_wrapper.thrv_heading,.thrv_wrapper.thrv_paste_content,.thrv_wrapper.thrv-ct,.thrv_wrapper.thrv-page-section,.thrv_wrapper.thrv_symbol,.thrv_wrapper.thrv-plain-text{margin:0;}.thrv_wrapper.thrv-columns{margin-top:10px;margin-bottom:10px;padding:0;}.thrv_wrapper.tcb-window-width{position:relative;max-width:none !important;}.thrive-no-transition{transition:none !important;}.thrv_paste_content.thrv_wrapper{padding:0;}.tve_left{float:left;}.tve_right{float:right;}.tve_clear{clear:both;}.tve_ctr{text-align:center;}.tve_center{margin-left:auto;margin-right:auto;}.tve_shortcode_editor h1{padding:0;}.tve_shortcode_editor p.bold_text{font-weight:bold;}p{font-size:1em;}.tve_btn{display:inline-block;margin:0px 0px;max-width:100%;text-align:center;}.tve_btn.tve_normalBtn{font-size:15px;line-height:15px;min-width:250px;}@media only screen and (max-width: 340px){.tve_btn.tve_normalBtn{min-width:200px;}}.tve_btn.tve_normalBtn a{padding:20px;}.tve_btn.tve_smallBtn{font-size:13px;line-height:13px !important;min-width:140px;}.tve_btn.tve_smallBtn a{padding:11px;}.tve_btn.tve_bigBtn{font-size:26px;line-height:26px !important;min-width:440px;}@media only screen and (max-width: 740px){.tve_btn.tve_bigBtn{min-width:300px;}}@media only screen and (max-width: 340px){.tve_btn.tve_bigBtn{min-width:200px;}}.tve_btn.tve_bigBtn a{padding:36px;}.tve_btn.tve_hugeBtn{font-size:40px;line-height:40px !important;}@media only screen and (max-width: 740px){.tve_btn.tve_hugeBtn{font-size:20px !important;}}.tve_btn.tve_hugeBtn a{padding:35px;}.tve_btn.tve_hugeBtn{min-width:90%;}.tve_btn a.tve_btnLink{background:none;color:#fff;display:block !important;text-decoration:none !important;}.tve_btn.tve_btn7,.tve_btn.tve_btn8{margin-bottom:5px;}.tve_btn.tve_btn5 i,.tve_btn.tve_btn6 i{display:block;}.tve_btn.tve_btn5.tve_normalBtn a>div,.tve_btn.tve_btn6.tve_normalBtn a>div{height:55px;margin:-20px 0px;}.tve_btn.tve_btn5.tve_normalBtn a>span,.tve_btn.tve_btn6.tve_normalBtn a>span{margin-left:20px;}.tve_btn.tve_btn5.tve_normalBtn i,.tve_btn.tve_btn6.tve_normalBtn i{height:14px;margin-top:20px;margin-right:20px;width:21px;background-size:contain;background-repeat:no-repeat;background-position:center center;}.tve_btn.tve_btn5.tve_normalBtn i.tve_sc_icon,.tve_btn.tve_btn6.tve_normalBtn i.tve_sc_icon{margin-top:0;width:auto;height:auto;}.tve_btn.tve_btn5.tve_smallBtn a>div,.tve_btn.tve_btn6.tve_smallBtn a>div{height:35px;margin:-11px 0px;}.tve_btn.tve_btn5.tve_smallBtn a>span,.tve_btn.tve_btn6.tve_smallBtn a>span{margin-left:4px;}.tve_btn.tve_btn5.tve_smallBtn i,.tve_btn.tve_btn6.tve_smallBtn i{height:11px;margin-right:11px;margin-top:12px;width:16px;background-size:contain;background-repeat:no-repeat;background-position:center center;}.tve_btn.tve_btn5.tve_bigBtn a>div,.tve_btn.tve_btn6.tve_bigBtn a>div{height:98px;margin:-36px 0px;}.tve_btn.tve_btn5.tve_bigBtn a>span,.tve_btn.tve_btn6.tve_bigBtn a>span{margin-left:20px;}.tve_btn.tve_btn5.tve_bigBtn i,.tve_btn.tve_btn6.tve_bigBtn i{background-size:contain;background-repeat:no-repeat;background-position:center center;height:29px;margin-top:35px;margin-right:35px;width:42px;}.tve_btn.tve_btn5.tve_hugeBtn a>div,.tve_btn.tve_btn6.tve_hugeBtn a>div{height:109px;margin:-34px 0px;}.tve_btn.tve_btn5.tve_hugeBtn i,.tve_btn.tve_btn6.tve_hugeBtn i{background-size:contain;background-repeat:no-repeat;background-position:center center;height:61px;margin-top:25px;margin-right:35px;width:87px;}.thrv_columns .tve_btn{min-width:100%;max-width:100%;}.thrv_columns .tve_btn.tve_nb span.tve_btn_txt{white-space:pre-line;}.tve_clearfix:after,.tve_cb_cnt:after,.thrv_post_grid:after{content:"";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.tve_colm{float:left;}.tve_twc{padding:0% 2% 0% 0%;width:49%;}.tve_twc.tve_lst{padding:0% 0% 0% 0%;}.tve_oth,.tve_thc{padding:0% 2% 0% 0%;width:32%;}.tve_oth.tve_lst,.tve_thc.tve_lst{padding:0% 0% 0% 0%;}.tve_foc{padding:0% 2% 0% 0%;width:23.5%;}.tve_foc.tve_lst{padding:0%;}.tve_fic{padding:0% 2% 0% 0%;width:18.4%;}.tve_fic.tve_lst{padding:0%;}.tve_tth{padding:0% 2% 0% 0%;width:66%;}.tve_tth.tve_lst{padding:0% 0% 0% 0%;}.tve_tfo{padding:0% 2% 0% 0%;width:74.5%;}.tve_tfo.tve_lst{padding:0%;}.tve_one{width:100%;}.tve_two{width:50%;}.tve_three{width:33.3%;}.tve_four{width:25%;}.tve_five{width:20%;}.tve_tthirds{width:66.6%;}.tve_tquarters{width:75%;}.tve_image{border-radius:0;box-shadow:none;}div .tve_image_caption{padding:0;max-width:100% !important;box-sizing:border-box !important;}.tve_image_caption.fwi{max-width:none;width:auto !important;}.tve_image_caption.fwi img{width:auto !important;}.tve_image_caption img.alignright,.tve_image_caption img.aligncenter,.tve_image_caption img.alignleft{margin:0;}.tve_image_caption .tve_image_frame{display:block;max-width:100%;position:relative;overflow:hidden;}.tve_image_caption .tve-image-overlay{position:absolute;top:0;bottom:0;left:0;right:0;height:100%;width:100%;}.tve_image_caption .tve_image{display:block;padding:0;height:auto;}.tve_image_caption.aligncenter .tve_image{margin-left:auto;margin-right:auto;}.tve_image_caption .wp-caption-text{margin:0;font-size:14px;color:dimgray;padding:5px 0 0 0;max-width:100%;}.tve_image_caption.img_style_dark_frame{border:5px solid #202020;padding:0;}.tve_image_caption.img_style_dark_frame>.wp-caption-text{background:#202020;margin:0 !important;color:#fff;padding:5px 0 0 0;}.tve_image_caption.img_style_framed{border:5px solid rgba(0,0,0,0);outline:1px solid #e7e7e7;border-radius:1px;}.tve_image_caption.img_style_framed>.wp-caption-text{padding:5px 0 0 0;}.tve_image_caption.img_style_lifted_style1>.wp-caption-text{padding:7px 0 0 0;}.tve_image_caption.img_style_lifted_style1 .tve_image_frame{box-shadow:4px 4px 6px -3px #333;}.tve_image_caption.img_style_polaroid{background:#fff;border:15px solid rgba(0,0,0,0);box-shadow:var(--tve-applied-box-shadow,1px 1px 3px -1px #777);}.tve_image_caption.img_style_polaroid>.wp-caption-text{padding:13px 0 0 0;}.tve_image_caption.img_style_rounded_corners .tve_image_frame{border-radius:10px;}.tve_image_caption.img_style_circle .tve_image_frame{border-radius:50%;}.tve_image_caption.img_style_caption_overlay{position:relative;padding-left:0;padding-right:0;}.tve_image_caption.img_style_caption_overlay>.wp-caption-text{position:absolute;bottom:0;width:100%;padding:5px 0;background:-moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.16) 31%,#000 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,0,0,0)),color-stop(31%,rgba(0,0,0,.16)),color-stop(100%,#000));background:-webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.16) 31%,#000 100%);background:-o-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.16) 31%,#000 100%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.16) 31%,#000 100%);background:linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,.16) 31%,#000 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#000000",GradientType=0);color:#fff;}.tve_image_caption.img_style_lifted_style2 .tve_image_frame{position:relative;z-index:1;padding-bottom:15px;}.tve_image_caption.img_style_lifted_style2 .tve_image_frame:before,.tve_image_caption.img_style_lifted_style2 .tve_image_frame:after{z-index:-1;position:absolute;content:"";left:14px;width:60%;bottom:25px;background:#555;background:rgba(0,0,0,.7);box-shadow:0 0 8px 9px rgba(0,0,0,.7);transform:rotate(-2deg);border:0;height:0;}.tve_image_caption.img_style_lifted_style2 .tve_image_frame:after{transform:rotate(2deg);right:14px;left:auto;}.thrv_button_shortcode{display:table;}.thrv_button_shortcode.tve_leftBtn{float:left;margin-right:10px;}.thrv_button_shortcode.tve_rightBtn{float:right;margin-left:10px;}.thrv_button_shortcode.tve_fullwidthBtn{width:100% !important;}.thrv_button_shortcode.tve_fullwidthBtn .tve_btn{width:100% !important;}.thrv_button_shortcode .tve_btn .tve_btnLink i.tve_sc_icon{background-image:none !important;}.thrv_button_shortcode .tve_btn .tve_btnLink i.tve_sc_icon.nitro-lazy{background-image:none !important;}.thrv_button_shortcode .tve_btn.tve_bigBtn i.tve_sc_icon{height:auto;width:auto;font-size:35px;margin-top:32px;}.thrv_button_shortcode .tve_btn.tve_hugeBtn i.tve_sc_icon{font-size:40px;}.thrv_button_shortcode .tve_btn.tve_btn1 i.tve_sc_icon,.thrv_button_shortcode .tve_btn.tve_btn3 i.tve_sc_icon,.thrv_button_shortcode .tve_btn.tve_btn7 i.tve_sc_icon,.thrv_button_shortcode .tve_btn.tve_btn8 i.tve_sc_icon{display:none;}.thrv_button_shortcode.tve_centerBtn{margin:20px auto;}.tve_centerBtn{display:table;margin-left:auto;margin-right:auto;}.tve-flexible-container{margin-bottom:20px;position:relative;overflow:hidden;}.tcb-border-box{box-sizing:border-box !important;}.tve-flexible-container iframe,.tve-flexible-container object,.tve-flexible-container embed{height:100%;width:100% !important;min-height:inherit;min-width:inherit;}.thrv_columns .tve-flexible-container iframe,.thrv_columns .tve-flexible-container object,.thrv_columns .tve-flexible-container embed{width:92%;}@media only screen and (max-width: 940px){.thrv_columns .tve-flexible-container iframe,.thrv_columns .tve-flexible-container object,.thrv_columns .tve-flexible-container embed{width:88%;}}.thrv_columns .tve_oth .tve-flexible-container iframe,.thrv_columns .tve_oth .tve-flexible-container object,.thrv_columns .tve_oth .tve-flexible-container embed{width:82%;}@media only screen and (max-width: 940px){.thrv_columns .tve_oth .tve-flexible-container iframe,.thrv_columns .tve_oth .tve-flexible-container object,.thrv_columns .tve_oth .tve-flexible-container embed{width:80%;}}.thrv_cc_icons{overflow:hidden;}.thrv_cc_wrapper{margin:0 auto;display:table;}.tve_cc_logo{width:46px;height:32px;display:block;float:left;margin:5px;overflow:hidden;}.tve_cc_amex{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cc_amex.png") no-repeat;}.tve_cc_amex.nitro-lazy{background-image:none !important;}.tve_cc_discover{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cc_discover.png") no-repeat;}.tve_cc_discover.nitro-lazy{background-image:none !important;}.tve_cc_mc{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cc_mc.png") no-repeat;}.tve_cc_mc.nitro-lazy{background-image:none !important;}.tve_cc_paypal{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cc_paypal.png") no-repeat;}.tve_cc_paypal.nitro-lazy{background-image:none !important;}.tve_cc_visa{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cc_visa.png") no-repeat;}.tve_cc_visa.nitro-lazy{background-image:none !important;}.tve_more_tag{border-top:1px dotted #cbcbcb;height:25px;margin:0;}.tve_more_tag span{background:#dfe8f1;border:1px solid #ccc;border-top:none;color:#000 !important;display:block;float:right;font-size:12px !important;padding:0px 5px;}.tve_more_tag span:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.thrv_content_container_shortcode{margin-top:0px;}.thrv_content_container_shortcode .tve_content_inner{max-width:100%;padding:1px;}.thrv_content_container_shortcode>.tve_center{margin-left:auto !important;margin-right:auto !important;}.thrv_page_section{margin:0px;padding:0px;}.thrv_page_section .out.tve_brdr_none{border-style:none !important;}.thrv_page_section .out.tve_brdr_dotted{border-style:dotted !important;}.thrv_page_section .out.tve_brdr_dashed{border-style:dashed !important;}.thrv_page_section .out.tve_brdr_solid{border-style:solid !important;}.thrv_page_section .out.tve_brdr_double{border-style:double !important;}.thrv_page_section .out.tve_brdr_groove{border-style:groove !important;}.thrv_page_section .out.tve_brdr_ridge{border-style:ridge !important;}.thrv_page_section .out.tve_brdr_inset{border-style:inset !important;}.thrv_page_section .out.tve_brdr_outset{border-style:outset !important;}.tve_table_row{border:0;}.tve_table_row td,.tve_table_row th{line-height:1;padding:3px;background-clip:padding-box;}.tve_table_row td.tcb-parent-placeholder-empty,.tve_table_row th.tcb-parent-placeholder-empty{vertical-align:top;height:40px;}.tve_table_row td.tve_table_cell>p,.tve_table_row th.tve_table_cell>p{margin:0;padding:0;}.tve_table_row td.tve_valign_top,.tve_table_row th.tve_valign_top{vertical-align:top;}.tve_table_row td.tve_valign_bottom,.tve_table_row th.tve_valign_bottom{vertical-align:bottom;}.tve_table_row td.tve_valign_middle,.tve_table_row th.tve_valign_middle{vertical-align:middle;}.tve_table_row td.tve_align_left,.tve_table_row th.tve_align_left{text-align:left;}.tve_table_row td.tve_align_center,.tve_table_row th.tve_align_center{text-align:center;}.tve_table_row td.tve_align_right,.tve_table_row th.tve_align_right{text-align:right;}.tve_table_row td.tve_align_justify,.tve_table_row th.tve_align_justify{text-align:justify;}.tve_table_row td:empty{height:20px;}.tve_table{margin:0;width:100%;border-spacing:0;border-collapse:collapse;box-sizing:border-box;}.tve_table.tve_no_border{border:0 !important;}.tve_table.tve_no_inner_border>tbody>tr>td,.tve_table.tve_no_inner_border>thead>tr>th{border-width:0 !important;}.tve_table tbody tr.tve_odd{background-color:#ccc;}.tve_table tbody tr.tve_even{background-color:#eee;}.tve_table.tve_brdr_none{border-style:none !important;}.tve_table.tve_brdr_none td,.tve_table.tve_brdr_none th{border-style:none !important;}.tve_table>tbody>tr>td.tve_brdr_none,.tve_table>thead>tr>th.tve_brdr_none{border-style:none !important;}.tve_table.tve_brdr_dotted{border-style:dotted !important;}.tve_table.tve_brdr_dotted td,.tve_table.tve_brdr_dotted th{border-style:dotted !important;}.tve_table>tbody>tr>td.tve_brdr_dotted,.tve_table>thead>tr>th.tve_brdr_dotted{border-style:dotted !important;}.tve_table.tve_brdr_dashed{border-style:dashed !important;}.tve_table.tve_brdr_dashed td,.tve_table.tve_brdr_dashed th{border-style:dashed !important;}.tve_table>tbody>tr>td.tve_brdr_dashed,.tve_table>thead>tr>th.tve_brdr_dashed{border-style:dashed !important;}.tve_table.tve_brdr_solid{border-style:solid !important;}.tve_table.tve_brdr_solid td,.tve_table.tve_brdr_solid th{border-style:solid !important;}.tve_table>tbody>tr>td.tve_brdr_solid,.tve_table>thead>tr>th.tve_brdr_solid{border-style:solid !important;}.tve_table.tve_brdr_double{border-style:double !important;}.tve_table.tve_brdr_double td,.tve_table.tve_brdr_double th{border-style:double !important;}.tve_table>tbody>tr>td.tve_brdr_double,.tve_table>thead>tr>th.tve_brdr_double{border-style:double !important;}.tve_table.tve_brdr_groove{border-style:groove !important;}.tve_table.tve_brdr_groove td,.tve_table.tve_brdr_groove th{border-style:groove !important;}.tve_table>tbody>tr>td.tve_brdr_groove,.tve_table>thead>tr>th.tve_brdr_groove{border-style:groove !important;}.tve_table.tve_brdr_ridge{border-style:ridge !important;}.tve_table.tve_brdr_ridge td,.tve_table.tve_brdr_ridge th{border-style:ridge !important;}.tve_table>tbody>tr>td.tve_brdr_ridge,.tve_table>thead>tr>th.tve_brdr_ridge{border-style:ridge !important;}.tve_table.tve_brdr_inset{border-style:inset !important;}.tve_table.tve_brdr_inset td,.tve_table.tve_brdr_inset th{border-style:inset !important;}.tve_table>tbody>tr>td.tve_brdr_inset,.tve_table>thead>tr>th.tve_brdr_inset{border-style:inset !important;}.tve_table.tve_brdr_outset{border-style:outset !important;}.tve_table.tve_brdr_outset td,.tve_table.tve_brdr_outset th{border-style:outset !important;}.tve_table>tbody>tr>td.tve_brdr_outset,.tve_table>thead>tr>th.tve_brdr_outset{border-style:outset !important;}.preview-mobile .tve_table{overflow-x:scroll;}.preview-mobile .tve_table>tbody>tr>td,.preview-mobile .tve_table>thead>tr>th{width:110px;}@media only screen and (max-device-width: 1024px){.tve_table{overflow-x:scroll;}.tve_table>tbody>tr>td,.tve_table>thead>tr>th{width:110px;}}.tve_image.tve_brdr_none{border-style:none !important;}.tve_image.tve_brdr_dotted{border-style:dotted !important;}.tve_image.tve_brdr_dashed{border-style:dashed !important;}.tve_image.tve_brdr_solid{border-style:solid !important;}.tve_image.tve_brdr_double{border-style:double !important;}.tve_image.tve_brdr_groove{border-style:groove !important;}.tve_image.tve_brdr_ridge{border-style:ridge !important;}.tve_image.tve_brdr_inset{border-style:inset !important;}.tve_image.tve_brdr_outset{border-style:outset !important;}.thrv_content_reveal{display:none;}@media only screen and (max-width: 1080px){.tve_responsive_vertical_video_container{padding-bottom:133% !important;}}@media only screen and (max-width: 540px){.tve_responsive_vertical_video_container{padding-bottom:233% !important;}}.thrv_audio{width:100%;}.tve_audio_container{position:relative;line-height:0;overflow:hidden;}.tve_audio_container .tve_audio-no_audio{position:relative;height:0;overflow:hidden;padding-bottom:56.25%;padding-bottom:25%;display:block;}.tve_responsive_video_container{position:relative;height:0;overflow:hidden;padding-bottom:56.25%;display:block;}.tve_responsive_video_container .tve_wistia_loader{transform:translate(-50%,-50%);background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/loader_transparent.gif");background-repeat:no-repeat;background-size:100% auto;background-position:center top;width:24px;height:24px;position:absolute;left:50%;top:50%;z-index:3;}.tve_responsive_video_container .tve_wistia_loader.nitro-lazy{background-image:none !important;}.thrv_responsive_video[data-controls="0"] .tve_responsive_video_container{padding-top:0;}.tve_responsive_video_container .tve-video{height:100% !important;left:0;position:absolute;top:0;width:100% !important;}.tve_responsive_video_container .iframe-embed{position:static;}.tve_responsive_video_container iframe,.tve_responsive_video_container object,.tve_responsive_video_container embed{position:absolute;top:0;left:0;width:100% !important;height:100% !important;}.tve_responsive_video_container .voo-id #theImg{position:absolute;}.tve_responsive_video_container .video-player-container.vooplayer{position:relative !important;width:100% !important;height:100% !important;}.tve_responsive_video_container .video-skin-player{position:absolute !important;width:100% !important;height:100% !important;}.tve_responsive_video_container .top-fixed{cursor:pointer;position:fixed !important;top:0px;left:0px;z-index:99999;}.tve_responsive_video_container .top-left{cursor:pointer;position:fixed !important;top:50px;left:50px;z-index:99999;}.tve_responsive_video_container .top-right{cursor:pointer;position:fixed !important;top:50px;right:50px;left:inherit;bottom:inherit;z-index:99999;}.tve_responsive_video_container .right-hand,.tve_responsive_video_container .bottom-right{cursor:pointer;position:fixed !important;top:inherit;left:inherit;right:50px;bottom:50px;z-index:99999;}.tve_responsive_video_container .left-hand,.tve_responsive_video_container .bottom-left{cursor:pointer;position:fixed !important;top:inherit;right:inherit;left:50px;bottom:50px;z-index:99999;}.tve_responsive_video_container .keep-original,.tve_responsive_video_container .keep-original-position{cursor:pointer;position:fixed !important;top:50px;z-index:99999;bottom:auto;left:auto;right:auto;}.tve_responsive_video_container .tcb-bunny-responsive-container{position:relative;padding-top:56.25%;}.tve_responsive_video_container .tcb-bunny-responsive-container .bunny-style-iframe{position:absolute;border:none;top:0;height:100%;width:100%;}.tve_change_responsive_style{position:unset !important;}.tve_with_wistia_popover{padding-bottom:0px;}.responsive_video_option{display:none;}.thrv_contents_table{box-sizing:border-box !important;}.thrv_contents_table.tve_p_right{float:right;}.thrv_contents_table.tve_p_left{float:left;}.thrv_contents_table.tve_p_center{margin-left:auto !important;margin-right:auto !important;}.tve_contents_table,.tve-toc-content{width:100%;}.tve_contents_table.tve_p_right,.tve-toc-content.tve_p_right{float:right;}.tve_contents_table.tve_p_left,.tve-toc-content.tve_p_left{float:left;}.tve_contents_table.tve_p_center,.tve-toc-content.tve_p_center{margin-left:auto !important;margin-right:auto !important;}.tve_contents_table .tve_ct_content,.tve-toc-content .tve_ct_content{text-align:left;display:flex;align-items:stretch;}.tve_contents_table .ct_column,.tve-toc-content .ct_column{flex:1 1 0;}.tve_contents_table .ct_column:not(:last-child),.tve-toc-content .ct_column:not(:last-child){background-image:repeating-linear-gradient(to bottom,#b0b1b5 0,#3b3b3c 1px,#3b3b3c 2px,#b0b1b5 3px,transparent 3px,transparent 6px);background-size:1px 6px;background-repeat:repeat-y;background-position:calc(100% - 2px) 0;}.tve_contents_table .tve_ct_title,.tve-toc-content .tve_ct_title{display:inline-block;color:#fff;padding:5px 50px;font-size:20px;margin:0 0 10px 0;text-align:center;}.tve_contents_table .tve_ct_level0,.tve-toc-content .tve_ct_level0{box-sizing:border-box;color:#4b4b4b;font-size:16px;padding:0 10px;text-decoration:none;width:100%;display:block;font-weight:bold;margin:10px 0 5px 0;}.tve_contents_table .tve_ct_level1,.tve-toc-content .tve_ct_level1{box-sizing:border-box;color:#4b4b4b;font-size:16px;text-decoration:none;width:100%;display:block;padding:0 20px;margin:6px 0 4px 0;}.tve_contents_table .tve_ct_level2,.tve-toc-content .tve_ct_level2{box-sizing:border-box;color:#4b4b4b;font-size:16px;text-decoration:none;width:100%;display:block;margin:3px 0 1px 0;padding:0 30px;}.tve_contents_table .ct_column a,.tve_contents_table .ct_column a:visited,.tve_contents_table .ct_column a:active,.tve-toc-content .ct_column a,.tve-toc-content .ct_column a:visited,.tve-toc-content .ct_column a:active{box-sizing:border-box;font-size:16px;text-decoration:none;}.tve_contents_table .ct_column a.tve_ct_level0,.tve_contents_table .ct_column a:visited.tve_ct_level0,.tve_contents_table .ct_column a:active.tve_ct_level0,.tve-toc-content .ct_column a.tve_ct_level0,.tve-toc-content .ct_column a:visited.tve_ct_level0,.tve-toc-content .ct_column a:active.tve_ct_level0{font-weight:bold;margin:10px 0 5px 0;}.tve_contents_table .ct_column a.tve_ct_level1,.tve_contents_table .ct_column a:visited.tve_ct_level1,.tve_contents_table .ct_column a:active.tve_ct_level1,.tve-toc-content .ct_column a.tve_ct_level1,.tve-toc-content .ct_column a:visited.tve_ct_level1,.tve-toc-content .ct_column a:active.tve_ct_level1{padding-left:40px;margin:6px 0 4px 0;}.tve_contents_table .ct_column a.tve_ct_level2,.tve_contents_table .ct_column a:visited.tve_ct_level2,.tve_contents_table .ct_column a:active.tve_ct_level2,.tve-toc-content .ct_column a.tve_ct_level2,.tve-toc-content .ct_column a:visited.tve_ct_level2,.tve-toc-content .ct_column a:active.tve_ct_level2{padding-left:60px;margin:3px 0 1px 0;}.tve_contents_table .ct_column a:hover,.tve_contents_table .ct_column a:visited:hover,.tve_contents_table .ct_column a:active:hover,.tve-toc-content .ct_column a:hover,.tve-toc-content .ct_column a:visited:hover,.tve-toc-content .ct_column a:active:hover{text-decoration:underline;}.tve_contents_table.tve_blue a:hover,.tve-toc-content.tve_blue a:hover{color:#4e7ac7 !important;}.tve_contents_table.tve_blue .tve_ct_title,.tve-toc-content.tve_blue .tve_ct_title{background-color:#4e7ac7;}.tve_contents_table.tve_green a:hover,.tve-toc-content.tve_green a:hover{color:#45bf55 !important;}.tve_contents_table.tve_green .tve_ct_title,.tve-toc-content.tve_green .tve_ct_title{background-color:#45bf55;}.tve_contents_table.tve_black a:hover,.tve-toc-content.tve_black a:hover{color:#595959 !important;}.tve_contents_table.tve_black .tve_ct_title,.tve-toc-content.tve_black .tve_ct_title{background-color:#595959;}.tve_contents_table.tve_orange a:hover,.tve-toc-content.tve_orange a:hover{color:#ff712c !important;}.tve_contents_table.tve_orange .tve_ct_title,.tve-toc-content.tve_orange .tve_ct_title{background-color:#ff712c;}.tve_contents_table.tve_purple a:hover,.tve-toc-content.tve_purple a:hover{color:#9768d1 !important;}.tve_contents_table.tve_purple .tve_ct_title,.tve-toc-content.tve_purple .tve_ct_title{background-color:#9768d1;}.tve_contents_table.tve_red a:hover,.tve-toc-content.tve_red a:hover{color:#e93c31 !important;}.tve_contents_table.tve_red .tve_ct_title,.tve-toc-content.tve_red .tve_ct_title{background-color:#e93c31;}.tve_contents_table.tve_teal a:hover,.tve-toc-content.tve_teal a:hover{color:teal !important;}.tve_contents_table.tve_teal .tve_ct_title,.tve-toc-content.tve_teal .tve_ct_title{background-color:teal;}.tve_contents_table.tve_white a:hover,.tve-toc-content.tve_white a:hover{color:#4b4b4b;}.tve_contents_table.tve_white .tve_ct_title,.tve-toc-content.tve_white .tve_ct_title{background-color:#efefef;color:#595959;}.tve_contents_table.tve_white .tve_contents_table,.tve-toc-content.tve_white .tve_contents_table{background-color:#fff;}.thrv_star_rating>.tve_rating_stars{display:block;height:25px;background:url("data:image/png;base64,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") repeat-x 0 -26px;}.thrv_star_rating>.tve_rating_stars.nitro-lazy{background-image:none !important;}.thrv_star_rating>.tve_rating_stars>span{display:block;height:25px;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAADqCAMAAACP83XYAAAC5VBMVEVMaXEAAACkop8AAADl0Z2HdWMKCgrJ1+dviqcCAgLFxI99nVbdaV4BAQHcpzejoanMyLlnu8Vaa7f///91dXWpz+cGBgbmzxbpvo62rcabzODTQjvT1sjgtR7n0BViblTe2+LsjYW24/VEnsJvTqrR2prl5eVvb2++1/KHrU/qh4DgalrExMTp0RN9pkjUSUOYuWj/2aampqbS4J6rxmzjY1ru3Q7NydS15PTjjiuMjIy5ubluSq5j1dKPZsjyqDrdgiKsrKx1dXVLwL05htibm5uxnNSQvepXoOSV2tjtun/91qBRqu2UaM1m2td3UbbmjijMu+jqgnrS4ZjwqD+ioqK6urrHx8eNjY2kjMuBsePu2g+57+2t1fmKbr1tysaCqUvLy8vt1hDYU02VlZVIx8NxSrbv2g6urq6s4/XMtej+15J2dnY0ieLsix+fvW/mdW1HycRxSrfKysqnp6fL2418pkjTQjt8pkjy3AucnJyrq6unidR3tvB/3tr3smDQ3o6kpKSZes5qq+6+vr4ther1iBaQ1Ps+zsnLqen13Amp8O/Hx8f/1nbodm13okTO3Y5ubm6fn5/8khWX6vH56QXYyu683vzKysr42QbX19cngO9sQb7Fk+Z20fv+khP+hhHsjYXWR0CJr1HP3p7ZTUZ6eno+1M/lZVv/8AD/6gD/7QBX5OCtx2jkYVhb5+PcVE0wlvU2pPeNjY2Xl5c8ufijwGJJ3NeBTcp3R8WLUs/hW1L/pxVO39v/5QCjo6P/4gBE2NOzy2wrjPSfXtmnp6f/uhibXNc7tfj/txi8vLyRV9KWWtU5sPeenp5U4d7/shf/yB6mY93/kBFj6+n/3gD/4a/M9PN/f383rPeStFaXuFutra3/rhe2trbZze+/4fzb29uvauG50HH/vxqFhYUynvacu13/lxP/nBT/oBTC1XZDyPqBqUtAwvl1dXXI2X1Xyfp17Om7euP/zkH/lir/pTOm2/DSAAAAqHRSTlMABgcNDhQWGhsdHiAhJSoqKywtLi4vMDg8PT5JSktNUVVYWmRkaWlsdnZ5eXx8f4CAgIKDhImKj5OXmZmbm5ucnZ6fn5+goKCipKSnqampqamqqqqrq6utra2trq6urq6xtr7CxsjIyczOzs7Ozs7P0tPT1NbW2tvb4uPl5eXn5+fo6enq6+vu8PHx8fLy8/X19/j4+fn5+fr6+vr7/Pz8/f7+/v7+/v4ydh7QAAAF+ElEQVR42rWVeVRUdRTHR4IkIAYEEhSEUqBwwVCjGCvZ3LVUBBQ30MJdSs1E09xFQcOwUEcjyGbGJbdKbaPcKqxsiClToppsBRRw+bt73xvevYx3zunE8XMO8+77ft7v3hne77ynY2TpZHz3d5NFliVXFtst+9ylvLfFYnlEEktBbBJHW4DO0mgkRxqNbHfTglyLRK5gqGPufmcgJyPkYPZxMCfDc0ZnJjpzkfUJkcXFJib4/yvsUw7rlYPntlzfHBsWrNcOm822qRt+iaVYaXk3m21H79bbBReFaZ1sOXRP3eFM+3k4jgjL1bWbCBe5e6mfLHrFx8tioV+hm5SHZOsyQiWREaELzZZGQx+3wo7CaAN+9JJGw4d+LbuySmGtoQNiqFKBlQHZBg9I4E/D05ARoAOTkehxF8c7EXPV3M3yQCXXjAbL0cRpIhVyIrT2nlZqQ3WMuNR7W0mN42JRuCbCF7Fcn38fkFCZEA6HSi/WKQHj9Kj0SizieKfoGTOjAtwCombOiIZe1ClzVXwE7jn3gPhVmfl6rdO29IjWG9ExIn2b1isxiv+mgKhErcQuhDte1kH3X7jf1U7c4iOLGHOMLPLMW8SdGGw2m8UpY0GMFUeD2OIljUZipNFIHrvyTRWziuMMVw4w384AyCXTE2M077QFcm54TuZDAnLChwkfLmIOEzFc5DGRxzsd3kscZr16lgN7Yz1i92LBpk+H0+k+uFSpqFN5+ZKujrrrkvJyrdeA8li6p26x1CuWjcMGsbp2E+lqJ77i52JBUz9ZLG56Wd6JTU1NoZIYV19fP04cDaLJSxhdj/QTRv+GLKag31sqkCKOM1zZ/9Tt9IcczEHg1EEG5GSc8g6qeZ/TV0egoZzh9SfhxUXkZSKSiwWXiAW80+WKiopL8Iefl73YbCXr4/GQcuzPOjU2Nk7zhsJ7GlTUS9/Y+GK4ow5/obFC69V3ax+2E/ts7asJ7EJ4g2gvj7rIO5Z0cbGgYbIsNjRsEHfiA80NzQ9KYlZDQ8MsafQeEHuCpNFXgcnC6KvIBgom/6LwevN7SDOUCK4ciYETIyEH84UzkKvm67YMxVA1P3IgJ3OUgJzwZ8KfiyF/EEO4eOkI8RLLuxxl4mgQ63QaSfFMUY6s1xo4ndcJik7zoFpDnY6cXtfdUXdfd/qIdusn7kphOzFl18TWeih2IToN1bWbh13kXkXBshhhHSGLImuRuBMjb1it4pQ5Vqt1jjgaxA0/abT1ilUaX3QFKWJXfq9yQxFWxxmuTDuHXDnHSYMczJfOPIkxmm/bgrnD/MSBnMxHBOSELxO+XAz/hxjOxcq/iZUsD771F3ErmHX6DnjjaZ/HXsViOOsEp/NxqO98qKhX8M2y9T0dddj6spvBWqeyQWwnDirTeqVhF8I3Tddu4l09EwtCZDHGPkYWBfYCcSdGXLdfF5+Js+12+2xp9G4Qu4OE72qvrq6WxhdUIwXsS/6s8Np1RdihRHDlqDNI9RnOKMjBfO4M5Kr5qi1PYKia8xzIyXxAQE7omdBzMfgEMZiL5UwsZ3nI+ZPE+RDWSUme8hyoHFmv1Uaj8XnlmfgsVKup00mjsYej7mE0ntB6TTAOZDtxoHFCaz3F6Zk45Q6+nTe7ejvXTJLF5prN8tu5paZFfjvX1NSIb+cSECVB0mhkkjD6EFJCwaQfVFoU0eI4w5WjDzEOqIfRkIM54AzkonkcQ9Vc4EBO5mMCcsKfCX8uhh0nhnGxgokV/O184TPiQhDrpCTJnskmPA5jnUwm03M41P8ZqFZQp+OmjdrbeaPpeBet08ZkthOTTVqvqdiF8J96B5+JO0NcLKjKlkVhVan8TCytKuwliYV1dXULpdGlIEr9hNF1SIYwuhYppCD7V4WddYqogxLBLz7+LFJ7lpMKOZhKZzBHUr9pC+Yqme9yEjAiw3NCf4zQc2FgwsDFst+JZSwPOXaROOZHIvFtJMkzSTkmksi/du3a3EAoAudClU+dLhYXRzvq6OLii9qtH1+cxHZiUvF47edhFyIwU/e/+BceMBxeC9NZkwAAAABJRU5ErkJggg==") repeat-x 0 0px;}.thrv_star_rating>.tve_rating_stars>span.nitro-lazy{background-image:none !important;}.thrv_star_rating>.tve_rating_stars.tve_rightBtn{float:right;}.thrv_star_rating.tve_blue>span>span{background-position:0 -104px;}.thrv_star_rating.tve_green>span>span{background-position:0 -78px;}.thrv_star_rating.tve_orange>span>span{background-position:0 -130px;}.thrv_star_rating.tve_purple>span>span{background-position:0 -156px;}.thrv_star_rating.tve_red>span>span{background-position:0 -52px;}.thrv_star_rating.tve_teal>span>span{background-position:0 -182px;}.thrv_star_rating.tve_white>span>span{background-position:0 -208px;}@media only screen and (max-width: 740px){.thrv_contents_table .tve_ct_content{flex-wrap:wrap;}.thrv_contents_table .ct_column{flex:0 0 100%;background:none !important;}}.tve_shortcode_editor .pattern1,.tve_p_lb_background .tve_p_lb_content.pattern1,.tve_post_lp .tve_lp_content.pattern1{background:#2980b9;}.tve_shortcode_editor .pattern2,.tve_p_lb_background .tve_p_lb_content.pattern2,.tve_post_lp .tve_lp_content.pattern2{background:#c0392b;}.tve_shortcode_editor .pattern3,.tve_p_lb_background .tve_p_lb_content.pattern3,.tve_post_lp .tve_lp_content.pattern3{background:#2ecc71;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_none,.tve_p_lb_background .tve_p_lb_close.tve_brdr_none{border-style:none !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_dotted,.tve_p_lb_background .tve_p_lb_close.tve_brdr_dotted{border-style:dotted !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_dashed,.tve_p_lb_background .tve_p_lb_close.tve_brdr_dashed{border-style:dashed !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_solid,.tve_p_lb_background .tve_p_lb_close.tve_brdr_solid{border-style:solid !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_double,.tve_p_lb_background .tve_p_lb_close.tve_brdr_double{border-style:double !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_groove,.tve_p_lb_background .tve_p_lb_close.tve_brdr_groove{border-style:groove !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_ridge,.tve_p_lb_background .tve_p_lb_close.tve_brdr_ridge{border-style:ridge !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_inset,.tve_p_lb_background .tve_p_lb_close.tve_brdr_inset{border-style:inset !important;}.tve_p_lb_background .tve_p_lb_content.tve_brdr_outset,.tve_p_lb_background .tve_p_lb_close.tve_brdr_outset{border-style:outset !important;}a:not(.tcb-button-link) svg.tcb-icon{color:#111;}.tcb-styled-list-icon a{color:inherit !important;}.tcb-styled-list-icon a svg.tcb-icon{color:inherit;}.thrv-advanced-inline-text.tcb-highlight-added span:not([class*=tcb-text-highlight-]){background-color:var(--tcb-text-highlight-color,transparent) !important;}.thrv_icon{line-height:0;}.thrv_icon.tcb-icon-display{display:table;border-collapse:initial;}.thrv_icon.thrv_wrapper{margin-left:auto;margin-right:auto;padding:0;}.thrv_icon .tve_blue{color:#4e7ac7;}.thrv_icon .tve_green{color:#45bf55;}.thrv_icon .tve_orange{color:#ff712c;}.thrv_icon .tve_black{color:#595959;}.thrv_icon .tve_purple{color:#9768d1;}.thrv_icon .tve_red{color:#e93c31;}.thrv_icon .tve_teal{color:teal;}.thrv_icon .tve_white{color:#efefef;}.thrv_icon.aligncenter{display:table;margin-left:auto !important;margin-right:auto !important;}.thrv_icon span.tve_sc_icon{-ms-box-sizing:content-box !important;-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important;display:inline-block;font-size:inherit;height:auto;width:auto;text-align:center;text-decoration:none !important;background-clip:padding-box;transform:rotate(var(--tcb-icon-rotation-angle,0deg));}.thrv_icon span.tve_sc_icon:before{color:inherit !important;}.thrv_icon span.tve_sc_icon.tve_brdr_none{border-style:none !important;}.thrv_icon span.tve_sc_icon.tve_brdr_dotted{border-style:dotted !important;}.thrv_icon span.tve_sc_icon.tve_brdr_dashed{border-style:dashed !important;}.thrv_icon span.tve_sc_icon.tve_brdr_solid{border-style:solid !important;}.thrv_icon span.tve_sc_icon.tve_brdr_double{border-style:double !important;}.thrv_icon span.tve_sc_icon.tve_brdr_groove{border-style:groove !important;}.thrv_icon span.tve_sc_icon.tve_brdr_ridge{border-style:ridge !important;}.thrv_icon span.tve_sc_icon.tve_brdr_inset{border-style:inset !important;}.thrv_icon span.tve_sc_icon.tve_brdr_outset{border-style:outset !important;}.thrv_icon.tve_brdr_none{border-style:none;}.thrv_icon.tve_brdr_dotted{border-style:dotted;}.thrv_icon.tve_brdr_dashed{border-style:dashed;}.thrv_icon.tve_brdr_solid{border-style:solid;}.thrv_icon.tve_brdr_double{border-style:double;}.thrv_icon.tve_brdr_groove{border-style:groove;}.thrv_icon.tve_brdr_ridge{border-style:ridge;}.thrv_icon.tve_brdr_inset{border-style:inset;}.thrv_icon.tve_brdr_outset{border-style:outset;}.thrv_page_section .out.pswr .lightSec .cck,.thrv_page_section .out.pswr .lightSec .cck>*{text-shadow:1px 1px 3px rgba(0,0,0,.8);}.thrv_wrapper .tve-hyperlinks-lightbox-wrapper,#tve_lightbox_content .tve-hyperlinks-lightbox-wrapper{min-width:800px;}.thrv_wrapper [class^=icon-],.thrv_wrapper [class*=" icon-"],#tve_lightbox_content [class^=icon-],#tve_lightbox_content [class*=" icon-"]{border-radius:0;background:rgba(0,0,0,0);}body:not(.tve_editor_page) .tve_post_grid_masonry{opacity:0;transition:opacity .7s ease-in;}@media only screen and (-webkit-min-device-pixel-ratio: 0)and (min-width: 900px){::i-block-chrome,.tve_btn.tve_nb.tve_btn5 .tve_btn_txt,.tve_btn.tve_nb.tve_btn6 .tve_btn_txt{min-width:250px;}}body .tve_shortcode_editor .thrv_wrapper .lightSec{color:#fff;}body .tve_shortcode_editor .thrv_wrapper .lightSec p,body .tve_shortcode_editor .thrv_wrapper .lightSec ul,body .tve_shortcode_editor .thrv_wrapper .lightSec ol,body .tve_shortcode_editor .thrv_wrapper .lightSec li,body .tve_shortcode_editor .thrv_wrapper .lightSec div,body .tve_shortcode_editor .thrv_wrapper .lightSec h1,body .tve_shortcode_editor .thrv_wrapper .lightSec h2,body .tve_shortcode_editor .thrv_wrapper .lightSec h3,body .tve_shortcode_editor .thrv_wrapper .lightSec h4,body .tve_shortcode_editor .thrv_wrapper .lightSec h5,body .tve_shortcode_editor .thrv_wrapper .lightSec h6,body .tve_shortcode_editor .thrv_wrapper .lightSec>p{color:#fff;}body .tve_shortcode_editor .thrv_wrapper .lightSec p span{color:inherit;}body .tve_shortcode_editor .thrv_wrapper .lightSec span.tve_ct_title{color:#fff;}body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI{color:#333;}body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI p,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI ul,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI ol,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI li,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI h1,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI h2,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI h3,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI h4,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI h5,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI h6,body .tve_shortcode_editor .thrv_wrapper .lightSec .tve_faqI>p{color:inherit;}body .tve_shortcode_editor .thrv_wrapper .darkSec{color:#333;}body .tve_shortcode_editor .thrv_wrapper .darkSec p,body .tve_shortcode_editor .thrv_wrapper .darkSec ul,body .tve_shortcode_editor .thrv_wrapper .darkSec ol,body .tve_shortcode_editor .thrv_wrapper .darkSec li,body .tve_shortcode_editor .thrv_wrapper .darkSec h1,body .tve_shortcode_editor .thrv_wrapper .darkSec h2,body .tve_shortcode_editor .thrv_wrapper .darkSec h3,body .tve_shortcode_editor .thrv_wrapper .darkSec h4,body .tve_shortcode_editor .thrv_wrapper .darkSec h5,body .tve_shortcode_editor .thrv_wrapper .darkSec h6,body .tve_shortcode_editor .thrv_wrapper .darkSec>p{color:#333;}body .tve_shortcode_editor .thrv_wrapper .darkSec p span{color:inherit;}body .tve_shortcode_editor .thrv_wrapper .darkSec span.tve_ct_title{color:#fff;}body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI{color:#333;}body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI p,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI ul,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI ol,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI li,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI h1,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI h2,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI h3,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI h4,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI h5,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI h6,body .tve_shortcode_editor .thrv_wrapper .darkSec .tve_faqI>p{color:inherit;}.tve_cb.tve_cb_symbol{padding-top:30px;margin-top:45px;position:relative;}.tve_cb.tve_cb_symbol>.thrv_icon,.tve_cb.tve_cb_symbol>.thrv_cb_text{margin:0;position:absolute;top:0;display:inline-block;border:5px solid rgba(0,0,0,.15);border-radius:50%;}.tve_cb.tve_cb_symbol>.thrv_icon span.tve_sc_icon,.tve_cb.tve_cb_symbol>.thrv_icon span.tve_sc_text,.tve_cb.tve_cb_symbol>.thrv_cb_text span.tve_sc_icon,.tve_cb.tve_cb_symbol>.thrv_cb_text span.tve_sc_text{border-radius:50%;background-color:#333;border-color:none;text-align:center;color:#efefef;display:inline-block;font-size:40px;height:40px;line-height:1;min-width:40px;padding:20px;width:auto;}.tve_cb.tve_cb_symbol>.thrv_icon.aligncenter,.tve_cb.tve_cb_symbol>.thrv_cb_text.aligncenter{left:50%;display:inline-block;transform:translate(-50%,-50%);}.tve_cb.tve_cb_symbol>.thrv_icon.alignright,.tve_cb.tve_cb_symbol>.thrv_cb_text.alignright{float:none !important;left:100%;transform:translate(-100%,-50%);}.tve_cb.tve_cb_symbol>.thrv_icon.alignleft,.tve_cb.tve_cb_symbol>.thrv_cb_text.alignleft{float:none !important;left:0;transform:translate(0,-50%);}.tve_cb.tve_cb_symbol.tve_sb_bot{padding-top:0;padding-bottom:30px;margin-top:0;margin-bottom:45px;}.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_icon,.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_cb_text{top:auto;bottom:0;}.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_icon.aligncenter,.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_cb_text.aligncenter{left:50%;display:inline-block;transform:translate(-50%,50%);}.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_icon.alignright,.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_cb_text.alignright{float:none !important;left:100%;transform:translate(-100%,50%);}.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_icon.alignleft,.tve_cb.tve_cb_symbol.tve_sb_bot>.thrv_cb_text.alignleft{float:none !important;left:0;transform:translate(0%,50%);}.thrv_widget_menu li{margin-top:0px;padding:0px 10px;}.thrv_widget_menu.thrv_wrapper.tcb-mega-std .tve_w_menu.tve_horizontal>li ul{border:none;}.thrv_widget_menu.thrv_wrapper.tve-vertical-menu{width:100%;}.thrv_widget_menu.thrv_wrapper.tve_center{display:table;margin-left:auto !important;margin-right:auto !important;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu{position:relative;margin:0;padding:0 0 0 1em;list-style-type:none;list-style-image:none;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu ul{margin:0;padding:0 0 0 1em;list-style-type:none;list-style-image:none;background-color:#fff;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu li{margin-bottom:0;margin-left:0;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu li:before{content:"";display:none;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu li>a{color:#373737;text-decoration:none;display:flex;align-items:center;line-height:1;position:relative;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical>li ul{border:1px solid #b4b4b4;border-radius:3px;padding:0;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_vertical>li ul li>a{padding:2px 15px;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal{z-index:9;padding:0;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal li{display:inline-block;position:relative;padding:2px 10px;max-width:100%;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal>li ul{padding:0;position:absolute;border:1px solid #b4b4b4;border-radius:3px;display:none;z-index:4;}@media only screen and (min-width: 774px){.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal>li ul .tve_w_menu.tve_horizontal>li ul{left:-100%;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal>li ul .tve_w_menu.tve_horizontal>li ul li{text-align:right;}}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal>li ul li{padding:0;display:block;position:relative;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal>li ul li:first-child a{border-top-left-radius:3px;border-top-right-radius:3px;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal>li ul li:last-child a{border-bottom-left-radius:3px;border-bottom-right-radius:3px;}.thrv_widget_menu.thrv_wrapper ul.tve_w_menu.tve_horizontal>li ul li>a{padding:2px 15px;overflow:hidden;text-overflow:ellipsis;}.thrv_widget_menu.thrv_wrapper:not(.tve-regular) ul.tve_w_menu.tve_horizontal>li ul{position:static;}@media only screen and (max-width: 774px){.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .tve_menu_title{display:none;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .thrive-shortcode-html{padding-top:1px;position:relative;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade).tve_center,.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade).tve_left,.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade).tve_right{display:block;float:none;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .tve-m-trigger.t_tve_horizontal{border-radius:4px;box-sizing:content-box !important;border-width:1px;border-style:solid;display:inline-block;float:right;font-size:33px;height:30px;line-height:30px;margin:0;padding:8px;text-align:center;text-decoration:none;width:33px;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .tve-m-trigger .thrv_icon{margin:0;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .tve-m-trigger .tcb-icon-close{display:none;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .tve-m-trigger.tve-triggered-icon .tcb-icon-open{display:none;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .tve-m-trigger.tve-triggered-icon .tcb-icon-close{display:block;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul{max-width:none !important;width:100% !important;box-sizing:border-box !important;min-width:250px;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul li,.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul a{display:block !important;box-sizing:border-box !important;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) .tve-ham-wrap.tve-m-expanded{transition:max-height .3s;border:1px solid #b4b4b4;top:49px !important;min-height:200px;overflow-y:scroll;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal{background-color:#fff;max-height:0;overflow:hidden;top:50px !important;position:absolute;transition:max-height .3s;z-index:9999;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal.tve-m-expanded{transition:max-height .3s;border:1px solid #b4b4b4;top:49px !important;min-height:200px;overflow-y:scroll;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal>li>a{padding:12px 15px;display:block;background-color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal>li ul{display:block !important;position:static !important;border:0 !important;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal>li ul a:after{display:none !important;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal>li ul a{border-radius:0 !important;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal>li>ul>li>a{padding-left:30px;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal>li>ul>li>ul>li>a{padding-left:45px;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal>li>ul>li>ul>li>ul>li>a{padding-left:45px;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal::-webkit-scrollbar-track{background-color:#e1e1e1;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal::-webkit-scrollbar{width:6px;background-color:#e1e1e1;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal::-webkit-scrollbar-thumb{border-radius:10px;background-color:#ccc;}}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_vertical a,.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal a{line-height:2;}.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_vertical svg,.thrv_widget_menu.thrv_wrapper:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_horizontal svg{width:1.5em;height:1em;transition:all .15s ease;fill:currentColor;margin-left:5px;}.thrv_widget_menu.thrv_wrapper.tve-regular .tve_vertical li>a{display:inline-flex;}body.tve-lightbox-page .tve_p_lb_overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.8;}body.tve-lightbox-page .tve_p_lb_background{top:32px;padding-top:150px;}body.tve-lightbox-page .tve-spacer{height:40px;width:100%;}.tve-lp-pw-form{margin:auto;max-width:700px;padding:50px 0 0;}.thrv_progress_bar{padding:0;}.tve_progress_bar{border-radius:1px;background:#f7f7f7;display:block;font-size:18px;height:2.778em;position:relative;overflow:hidden;}.thrv_progress_bar.tve_brdr_none{border-style:none !important;}.thrv_progress_bar.tve_brdr_dotted{border-style:dotted !important;}.thrv_progress_bar.tve_brdr_dashed{border-style:dashed !important;}.thrv_progress_bar.tve_brdr_solid{border-style:solid !important;}.thrv_progress_bar.tve_brdr_double{border-style:double !important;}.thrv_progress_bar.tve_brdr_groove{border-style:groove !important;}.thrv_progress_bar.tve_brdr_ridge{border-style:ridge !important;}.thrv_progress_bar.tve_brdr_inset{border-style:inset !important;}.thrv_progress_bar.tve_brdr_outset{border-style:outset !important;}@keyframes progress-bar{0%{width:0;}100%{width:100%;}}.thrv_data_element_start .tve_progress_bar_fill{animation:progress-bar 2s linear;}.tve_progress_bar_fill{border-radius:1px;height:2.778em;overflow:hidden;}@supports (-webkit-overflow-scrolling: touch){.tve_progress_bar_fill{animation-play-state:running;}}.tve_progress_bar .tve_data_element_label{border-radius:1px;background:rgba(44,44,44,.67);color:#fff;display:block;font-weight:300;line-height:26px;height:1.444em;margin:auto 0;max-width:80%;padding:0 10px;overflow:hidden;position:absolute;top:0;bottom:0;left:10px;text-overflow:ellipsis;z-index:3;white-space:nowrap;}.thrv_fill_counter{border-radius:100%;display:table;}.thrv_fill_counter.aligncenter{display:table;}.thrv_fill_counter.tve_brdr_none{border-style:none !important;}.thrv_fill_counter.tve_brdr_dotted{border-style:dotted !important;}.thrv_fill_counter.tve_brdr_dashed{border-style:dashed !important;}.thrv_fill_counter.tve_brdr_solid{border-style:solid !important;}.thrv_fill_counter.tve_brdr_double{border-style:double !important;}.thrv_fill_counter.tve_brdr_groove{border-style:groove !important;}.thrv_fill_counter.tve_brdr_ridge{border-style:ridge !important;}.thrv_fill_counter.tve_brdr_inset{border-style:inset !important;}.thrv_fill_counter.tve_brdr_outset{border-style:outset !important;}.tve_normalfc .tve_fill_counter{height:202px;width:202px;}.tve_normalfc .tve_fill_counter .tve_fill_circle,.tve_normalfc .tve_fill_counter .tve_fill_c_in{height:202px;width:202px;}.tve_normalfc .tve_fill_counter .tve_fill_circle{clip:rect(0px,202px,202px,101px);}.tve_normalfc .tve_fill_counter .tve_fill_circle .tve_fill_c_in{clip:rect(0px,101px,202px,0px);}.tve_normalfc .tve_fill_text_in{height:186px;top:8px;bottom:8px;left:8px;right:8px;width:186px;display:flex;flex-direction:column;justify-content:center;align-items:center;}.tve_normalfc .tve_fill_text_in .tve_fill_text{font-size:60px;line-height:normal;}.tve_normalfc .tve_fill_text_in .thrv-inline-text{line-height:normal;}.tve_fill_counter{border-radius:50%;background-color:#e0e0e0;position:relative;}.tve_fill_counter .tve_fill_circle,.tve_fill_counter .tve_fill_c_in{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;border-radius:50%;position:absolute;transition:-webkit-transform 2s;transition:-ms-transform 2s;transition:transform 2s;}.tve_fill_text_in{border-radius:50%;background:#fff;position:absolute;text-align:center;}.tve_fill_text_in .tve_fill_text_before{font-weight:300;}.tve_fill_text_in .tve_fill_text{font-weight:300;}.tve_fill_text_in .tve_fill_text_after{font-weight:300;}.tve_fill_text_in .tve_data_element_label{color:#343434;display:block;font-size:17px;font-weight:300;}@keyframes fill-counter-svg-normal{from{stroke-dasharray:0 635;}}@keyframes fill-counter-svg-small{from{stroke-dasharray:0 321;}}@keyframes fill-counter-svg-big{from{stroke-dasharray:0 792;}}.tve_fill_counter_n{position:relative;}.tve_fill_counter_n .tve_fill_counter_circle{transform:rotate(-90deg);background:#e0e0e0;border-radius:50%;display:block;stroke-dasharray:inherit;}.tve_fill_counter_n .tve_fill_counter_circle circle{transition:stroke-dasharray 2s linear;fill:none;}.thrv_data_element_start .tve_fill_counter_n .tve_fill_counter_circle circle,.tve_editor_page .tve_fill_counter_n .tve_fill_counter_circle circle{stroke-dasharray:inherit;}.tve_normalfc .tve_fill_counter_circle{height:202px;width:202px;}.tve_normalfc .tve_fill_counter_circle circle{stroke-dasharray:0 635;stroke-width:16;}.tve_normalfc.thrv_data_element_start .tve_fill_counter_circle circle{animation:fill-counter-svg-normal 2s linear;}.tve_number_counter{display:table;text-align:center;}.tve_number_counter .tve_numberc_before{font-weight:300;font-size:50px;line-height:1em;}.tve_number_counter .tve_numberc_text{font-weight:300;font-size:50px;line-height:1em;}.tve_number_counter .tve_numberc_after{font-weight:300;font-size:50px;line-height:1em;}.tve_number_counter .tve_data_element_label{color:#2c2c2c;display:block;font-weight:300;font-size:18px;margin-top:5px;padding:0 20px;}.thrv_data_element.thrv_wrapper.aligncenter{display:table;}.thrv_data_element_start .tve_progress_bar_fill{animation-play-state:running;}#tve_editor [class*=ttfm] a{font-family:inherit !important;}.thrv_responsive_video.thrv_wrapper{max-height:100%;max-width:100%;margin-left:auto;margin-right:auto;}.thrv_responsive_video.thrv_wrapper.rv_style_white_frame{background:#000;border:7px solid #fff;border-radius:7px;padding:0;}.thrv_responsive_video.thrv_wrapper.rv_style_gray_frame{background:#000;border:10px solid #f1f1f1;padding:0;}.thrv_responsive_video.thrv_wrapper.rv_style_gray_frame .tve_responsive_video_container{box-shadow:0 0 3px 0 rgba(0,0,0,.56);}.thrv_responsive_video.thrv_wrapper.rv_style_dark_frame{background-image:linear-gradient(#000 0%,#656565 50%,#000 50%,#000 100%);box-shadow:0 0 3px 0 rgba(0,0,0,.95);border-radius:20px;padding:20px;}.thrv_responsive_video.thrv_wrapper.rv_style_dark_frame .tve_responsive_video_container{box-shadow:0 0 3px 0 rgba(0,0,0,.56);background:#000;}.thrv_responsive_video.thrv_wrapper.rv_style_light_frame{background:#000;border:1px solid #fff;box-shadow:0 0 6px 0 rgba(0,0,0,.19);padding:0;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style1{background:#000;margin-bottom:50px;position:relative;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style1:after{background-image:-moz-radial-gradient(center,ellipse,rgba(0,0,0,.5) 0%,transparent 100%);background-image:-webkit-radial-gradient(center,ellipse,rgba(0,0,0,.5) 0%,transparent 50%);background-image:radial-gradient(ellipse at center,rgba(0,0,0,.5) 0%,transparent 50%);border-radius:100%;content:"";display:block;height:30px;position:absolute;bottom:-35px;left:0;right:0;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style2{background:#000;box-shadow:0 0 3px 0 rgba(0,0,0,.56);position:relative;-webkit-perspective:150px;perspective:150px;padding:0;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style2:before{transform:rotateX(45deg);box-shadow:0 0 8px 9px rgba(0,0,0,.7);content:"";display:block;height:0;position:absolute;bottom:0;left:50px;right:50px;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style3{background:#000;box-shadow:0 0 3px 0 rgba(0,0,0,.56);margin-bottom:50px;padding:0;position:relative;z-index:1;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style3:before{transform:translateY(0);background-image:url("data:image/png;base64,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");background-repeat:no-repeat;background-size:100% auto;background-position:center top;content:"";display:block;height:45px;position:absolute;top:100%;left:0;right:0;width:100%;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style4{background:#000;box-shadow:0 0 3px 0 rgba(0,0,0,.56);margin-bottom:50px;padding:0;position:relative;z-index:1;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style4:before{transform:translateY(0);background-image:url("data:image/png;base64,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");background-repeat:no-repeat;background-size:100% auto;background-position:center top;content:"";display:block;height:45px;position:absolute;top:100%;left:0;right:0;width:100%;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style5{background:#000;-webkit-perspective:150px;perspective:150px;-webkit-perspective-origin:bottom center;perspective-origin:bottom center;padding:0;position:relative;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style5:before{transform:rotateX(-25deg);box-shadow:0 0 14px 9px rgba(0,0,0,.7);content:"";display:block;height:0;position:absolute;bottom:10px;width:100%;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style6{background:#000;padding:0;position:relative;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style6 .tve_responsive_video_container{border:4px solid #fff;box-shadow:0 0 6px 0 rgba(0,0,0,.19);}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style6:before,.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style6:after{background-image:url("data:image/png;base64,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");background-repeat:no-repeat;background-position:right top;background-size:auto 100%;content:"";height:100%;position:absolute;top:0;bottom:0;width:26px;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style6:before{transform:translateX(-100%);left:1px;}.thrv_responsive_video.thrv_wrapper.rv_style_lifted_style6:after{transform:rotateY(180deg);left:100%;}.thrv_responsive_video.thrv_wrapper.rv_style_grey_monitor{position:relative;}.thrv_responsive_video.thrv_wrapper.rv_style_grey_monitor[data-embed_type=popover]:before{background-size:100% 100%;}.thrv_responsive_video.thrv_wrapper.rv_style_grey_monitor:before{background-image:url("data:image/png;base64,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");background-size:contain;background-repeat:no-repeat;content:"";position:absolute;top:-7%;bottom:-34%;left:-4%;right:-4%;}.thrv_responsive_video.thrv_wrapper.rv_style_black_monitor{position:relative;}.thrv_responsive_video.thrv_wrapper.rv_style_black_monitor[data-embed_type=popover]:before{background-size:100% 100%;}.thrv_responsive_video.thrv_wrapper.rv_style_black_monitor:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABWgAAAP1CAMAAADLhfbRAAADAFBMVEVMaXH+/v7///////////8RJDP///////////////////8MExkZM0oPIjT///8YGRr///////////9eaXP///////+NlJv////Hycv///////8nKi3///////////+boqj///////////+6wMX///////8RL0cJFB7////////////Dx8z///+Zm5////////////8KEhgbN1AOIjPHy8/////////////P09f////////R1dmZm5/v8fPW296xs7ZZanfZ3eEXGBiCjpqvusSXo66ksLvR0tQYGRpTWF7LzM+cn6MLExoNJz0KHS4QLEIWMkgfOk8lLzkNFBkXLkEQHyzW19lxg5Foe4owQlGwsrZKWmcQEBBic4LT1NYzNDUUFRaNj5PW19moqq5JTFASICwRFRgYJzISGSAZGhvZ2dtKVmC/wMMSFhgSGiEXISoaHyQ4P0YrMzoPEBCrrbFGTlXc3N6MjpMPEBDFxslMT1M0NDWys7fb3N6dn6POz9EhIyUVFhcPDw9XWV07PD4VFhY2NjYVFBUoKSkiIiIcHBwwLzDg4OIVFhdiZWg2NjYTDgsVEQ4iHhtucHMRCwcQDQsODg4PDw8PEBIQEBASEhITExMUFBMWFhYYGBgaGhocHBweHh4hISEMKjojIyMlJSUnJycpKSkrKystLS0uLi4zLy0wMDAyMjIzMzMJR2lBQ0ZPUFFQUlQEbqZ4en1+gIV/gYaAg4eChYmEh4uGiY2Ji4+LjpKNj5OPkZWRlJiUlZqVl5yXmZ2Ym56anJ+bnKCcnaKdn6SeoaSfoaWgoaWgoqaho6eio6ejpKmkpaqkpaylpqump6unqKmmqKynqa2oqa+pq6+qq7CrrLGsrbKtr7OvsbWxsreztLi0trm2uLu4ur27vMC+wMPBwsXDxMjFx8nIyczKzM7MztDOz9LQ0dPS09bU1djW19nY2dvZ2tzb3N7c3d/e3+Df4OLh4ePh4uPi4uXj5OXk5ebo6Onr7Ozw8fH09PT29vb///+qCKMaAAAAlHRSTlMAAQIDBAQFBgcICQkJCQoKCwwNDQ4PDxAQERISExQVFRYXGBgZGhoaGxwdHR4eHyAhISEhISIjJCQlJigoKSstLi81ODw9QkRRV1hYWlpa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");background-size:contain;background-repeat:no-repeat;content:"";position:absolute;top:-7%;bottom:-34%;left:-4%;right:-4%;}.thrv_responsive_video.thrv_wrapper.rv_style_black_tablet{position:relative;}.thrv_responsive_video.thrv_wrapper.rv_style_black_tablet[data-embed_type=popover]:before{background-size:100% 100%;}.thrv_responsive_video.thrv_wrapper.rv_style_black_tablet:before{background-image:url("data:image/png;base64,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");background-size:contain;background-repeat:no-repeat;content:"";position:absolute;top:-5%;bottom:-5%;left:-5%;right:-6%;}.thrv_responsive_video.thrv_wrapper.rv_style_white_tablet{position:relative;}.thrv_responsive_video.thrv_wrapper.rv_style_white_tablet[data-embed_type=popover]:before{background-size:100% 100%;}.thrv_responsive_video.thrv_wrapper.rv_style_white_tablet:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAe4AAAEVCAYAAAAmQgaMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDcuMS1jMDAwIDc5LmRhYmFjYmIsIDIwMjEvMDQvMTQtMDA6Mzk6NDQgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyMy4wIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjlDOTM4RUZENDY3MjExRUM5Mzk4RjAwMEUxRUZGQTEyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjlDOTM4RUZFNDY3MjExRUM5Mzk4RjAwMEUxRUZGQTEyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OUM5MzhFRkI0NjcyMTFFQzkzOThGMDAwRTFFRkZBMTIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUM5MzhFRkM0NjcyMTFFQzkzOThGMDAwRTFFRkZBMTIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4gzBSjAAARYklEQVR42uzd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");background-size:contain;background-repeat:no-repeat;content:"";position:absolute;top:-5%;bottom:-5%;left:-6%;right:-6%;}@media only screen and (max-device-width: 1366px){.thrv_responsive_video.thrv_wrapper:not(.tcb-no-perspective){transform:translateZ(0);}}.tve_selected_typist{-webkit-transition:background-color 300ms linear;-moz-transition:background-color 300ms linear;transition:background-color 300ms linear;}span.tve_typefocus .tve_selected_typist{background-color:#fff;}.typed-cursor{color:inherit !important;display:inline-block;font-family:arial,sans-serif;opacity:1;-webkit-animation:blink .5s infinite;-moz-animation:blink .5s infinite;animation:blink .5s infinite;}@keyframes blink{0%{opacity:1;}50%{opacity:0;}100%{opacity:1;}}@-webkit-keyframes blink{0%{opacity:1;}50%{opacity:0;}100%{opacity:1;}}@-moz-keyframes blink{0%{opacity:1;}50%{opacity:0;}100%{opacity:1;}}#tve_zoom_overlay{background:#000;opacity:.7;filter:alpha(opacity=70);position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000000;}#tve_zoom_lightbox{position:fixed;z-index:1000050;top:50%;left:50%;padding:15px;border-radius:10px;height:auto;}.tve_close_lb{cursor:pointer;position:absolute;right:-15px;top:-15px;color:#fff;background:#000;height:25px;width:25px;border-radius:16px;font-size:10px;border:2px solid #fff;box-shadow:0 0 10px 2px #000;transition:transform .1s ease-in-out;display:flex;justify-content:center;align-items:center;}.tve_close_lb:hover,.tve_close_lb:focus{transform:scale(1.1);transform-origin:center;}.tve_ea_thrive_zoom img:hover{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;}.video_overlay{cursor:pointer;}.video_overlay.tcb-video-cover{display:flex;flex-direction:column;box-sizing:border-box;justify-content:center;position:absolute;background-color:#fff;width:100%;height:100%;margin:0;padding:0;z-index:3;background-image:linear-gradient(rgba(0,0,0,.06),rgba(0,0,0,.06));background-size:auto;background-position:50% 50%;background-attachment:scroll;background-repeat:no-repeat;}.video_overlay.tcb-video-cover[data-ct=video_cover-0],.video_overlay.tcb-video-cover[data-ct=video_cover--1]{--tcb-local-default-master-h:var(--tcb-main-master-h,0);--tcb-local-default-master-s:var(--tcb-main-master-s,100%);--tcb-local-default-master-l:var(--tcb-main-master-l,69%);--tcb-local-default-master-a:var(--tcb-main-master-a,1);}.video_overlay.tcb-video-cover[data-ct=video_cover-0] .tcb-video-cover-default-play-icon,.video_overlay.tcb-video-cover[data-ct=video_cover--1] .tcb-video-cover-default-play-icon{background-color:hsla(var(--tcb-local-default-master-h),var(--tcb-local-default-master-s),var(--tcb-local-default-master-l),var(--tcb-main-master-a,1));--background-color:hsla(var(--tcb-local-default-master-h),var(--tcb-local-default-master-s),var(--tcb-local-default-master-l),var(--tcb-main-master-a,1));--tve-applied-background-color:hsla(var(--tcb-local-default-master-h),var(--tcb-local-default-master-s),var(---tcb-local-default-master-l),var(--tcb-main-master-a,1));}.video_overlay.tcb-video-cover .tcb-video-cover-image,.video_overlay.tcb-video-cover picture{position:absolute;z-index:2;width:100%;height:100%;object-fit:cover;}.video_overlay.tcb-video-cover .tcb-video-cover-overlay{position:absolute;top:0;bottom:0;left:0;right:0;height:100%;width:100%;z-index:2;}.video_overlay.tcb-video-cover .thrv_wrapper{position:relative;z-index:2;}.video_overlay.tcb-video-cover .tcb-video-cover-default-text-wrapper{position:relative;top:0;left:0;z-index:12;margin:0 auto;padding:9px 11px 11px;}.video_overlay.tcb-video-cover .tcb-video-cover-default-text-wrapper p,.video_overlay.tcb-video-cover .tcb-video-cover-default-text-wrapper .tcb-plain-text{letter-spacing:2px;padding:0 !important;margin:0 !important;text-transform:uppercase;font-size:22px !important;line-height:1.35em !important;color:#111 !important;font-weight:bold !important;}@media (max-width: 1023px){.video_overlay.tcb-video-cover .tcb-video-cover-default-text-wrapper p,.video_overlay.tcb-video-cover .tcb-video-cover-default-text-wrapper .tcb-plain-text{font-size:20px !important;}}@media (max-width: 767px){.video_overlay.tcb-video-cover .tcb-video-cover-default-text-wrapper p,.video_overlay.tcb-video-cover .tcb-video-cover-default-text-wrapper .tcb-plain-text{font-size:15px !important;}}.video_overlay.video_overlay_image{z-index:3;position:absolute;width:100%;height:100%;}.video_overlay .overlay_play_button{transition:color,.3s,ease;color:inherit;cursor:pointer;text-align:center;}.video_overlay .overlay_play_button svg{position:absolute;top:50%;left:50%;width:4em;height:5em;transform:translate(-50%,-50%);}.video_overlay .overlay_play_button div.thrv_icon span{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:60px;}.tcb-video-cover-default-text-wrapper-bg{border-radius:8px;box-shadow:none;overflow:hidden;background-color:hsla(0,0%,100%,.6);}.tcb-video-cover-overlay{background-color:rgba(0,0,0,.2);}.tcb-video-cover-default-arrow{--tcb-icon-rotation-angle:-127deg;position:relative;font-size:45px;width:45px;height:45px;left:-74px;margin:0 auto -33px auto !important;z-index:12 !important;color:#111 !important;}@media (max-width: 1023px){.tcb-video-cover-default-arrow{font-size:39px;width:39px;height:39px;inset:6px -15px -42px -66px;margin-bottom:-27px !important;}}@media (max-width: 767px){.tcb-video-cover-default-arrow{right:-19px;bottom:-35px;font-size:30px;width:30px;height:30px;left:-47px;margin-bottom:-24px !important;margin-top:-2px !important;}}.tcb-video-cover-default-play-icon{font-size:50px;border-radius:100px;overflow:hidden;width:50px;height:50px;max-height:50px;box-shadow:0 11px 30px 0 rgba(0,0,0,.22);margin:0 auto;background-color:#ff6161;padding:22px !important;z-index:14 !important;}@media (max-width: 1023px){.tcb-video-cover-default-play-icon{font-size:40px;width:40px;height:40px;max-height:40px;padding:18px !important;}}@media (max-width: 767px){.tcb-video-cover-default-play-icon{font-size:26px;width:26px;height:26px;max-height:26px;padding:12px !important;}}.tcb-video-cover-default-play-icon .tcb-icon{color:#fff;}.rv_button_rounded_rectangle_light{position:relative;}.rv_button_rounded_rectangle_light .video_overlay{color:hsla(0,0%,100%,.7);}.rv_button_rounded_rectangle_light .video_overlay:hover{color:#fff;}.rv_button_rounded_rectangle_light .overlay_play_button{transform:translate(-50%,-50%);position:absolute;top:50%;left:50%;}.rv_button_rounded_rectangle_dark{position:relative;}.rv_button_rounded_rectangle_dark .video_overlay{color:#000;}.rv_button_rounded_rectangle_dark .video_overlay:hover{color:#5a6e6c;}.rv_button_rounded_rectangle_dark .overlay_play_button{transform:translate(-50%,-50%);border:4px solid;border-radius:15px;line-height:initial;padding:10px 30px 8px 38px;position:absolute;top:50%;left:50%;text-shadow:0 0 11px rgba(252,247,249,.47);}.rv_button_rounded_rectangle_dark .overlay_play_button:before{content:"▶";font-size:40px;}.rv_button_circular_dark{position:relative;}.rv_button_circular_dark .video_overlay{color:rgba(0,0,0,.7);}.rv_button_circular_dark .video_overlay:hover{color:#000;}.rv_button_circular_dark .overlay_play_button{transform:translate(-50%,-50%);border-radius:100%;overflow:hidden;position:absolute;top:50%;left:50%;width:74px;height:74px;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7);}.rv_button_circular_dark .overlay_play_button:hover{text-shadow:0 0 27px rgba(189,197,216,.75);}.rv_button_circular_dark .overlay_play_button:before{content:"▶";font-size:35px;line-height:35px;color:#cecece;margin-left:4px;}.rv_button_circular_outline_dark{position:relative;}.rv_button_circular_outline_dark .video_overlay{color:#3b3247;}.rv_button_circular_outline_dark .video_overlay:hover{color:#08060c;}.rv_button_circular_outline_dark .video_overlay:hover .overlay_play_button:before{border-color:#08060c;}.rv_button_circular_outline_dark .overlay_play_button{transform:translate(-50%,-50%);position:absolute;top:50%;left:50%;width:74px;height:74px;display:flex;justify-content:center;align-items:center;text-shadow:0 0 20px rgba(234,218,221,.74);}.rv_button_circular_outline_dark .overlay_play_button:hover{text-shadow:0 0 20px #eadadd;}.rv_button_circular_outline_dark .overlay_play_button:before{content:"▶";font-size:35px;border:3px solid #3b3247;padding:10px 7px 7px 13px;border-radius:100%;line-height:35px;width:35px;height:35px;}.rv_button_simple_play_light{position:relative;}.rv_button_simple_play_light .video_overlay{color:#fff;}.rv_button_simple_play_light .overlay_play_button{transform:translate(-50%,-50%);position:absolute;top:50%;left:50%;text-shadow:0 0 11px #000;}.rv_button_simple_play_light .overlay_play_button:hover{text-shadow:0 0 11px rgba(184,118,82,.75);}.rv_button_simple_play_light .overlay_play_button:before{content:"▶";font-size:100px;}.tve_with_wistia_popover{height:100%;padding-bottom:0;}.tve_wistia_popover{height:100%;}.wistia_popover_overlay{z-index:1000002 !important;}.wistia_popover_embed{z-index:1000003 !important;}.wistia_placebo_close_button{z-index:1000004 !important;}.thrv_wrapper .wistia_responsive_padding{box-sizing:border-box;height:100%;padding-bottom:56.25%;}span.tve_wistia_popover>div{display:inline;}@keyframes tooltip-top{from{transform:translateY(-100%);opacity:0;}to{transform:translateY(0);opacity:1;}}@keyframes tooltip-top-right{from{transform:translate3d(50%,-50%,0);opacity:0;}to{transform:translate3d(0,0,0);opacity:1;}}@keyframes tooltip-right{from{transform:translateX(100%);opacity:0;}to{transform:translateX(0);opacity:1;}}@keyframes tooltip-bottom-right{from{transform:translate3d(50%,50%,0);opacity:0;}to{transform:translate3d(0);opacity:1;}}@keyframes tooltip-bottom{from{transform:translateY(100%);opacity:0;}to{transform:translateY(0);opacity:1;}}@keyframes tooltip-bottom-left{from{transform:translate3d(-50%,50%,0);opacity:0;}to{transform:translate3d(0,0,0);opacity:1;}}@keyframes tooltip-left{from{transform:translateX(-100%);opacity:0;}to{transform:translateX(0);opacity:1;}}@keyframes tooltip-top-left{from{transform:translate3d(-50%,-50%,0);opacity:0;}to{transform:translate3d(0,0,0);opacity:1;}}.tve_ui_tooltip{animation-duration:.3s;animation-timing-function:ease-in;animation-fill-mode:forwards;border-radius:7px;box-shadow:0 0 5px 0 rgba(0,0,0,.25);max-width:300px;padding:10px;position:fixed;z-index:2147483646;}.tve_ui_tooltip:after{content:"";display:block;height:0;position:absolute;width:0;}.tve_ui_tooltip:before{content:"";display:block;height:0;position:absolute;width:0;}.tve_ui_tooltip.tve_tooltip_style_light:after{color:#fff;}.tve_ui_tooltip.tve_tooltip_style_dark:after{color:#494949;}.tve_ui_tooltip.tve_tooltip_position_top{animation-name:tooltip-top;}.tve_ui_tooltip.tve_tooltip_position_top:after{border-top:7px solid;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);margin:0 auto;left:0;right:0;bottom:-7px;}.tve_ui_tooltip.tve_tooltip_position_top:before{border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-top:7px solid rgba(0,0,0,.15);margin:0 auto;left:0;right:0;bottom:-8px;}.tve_ui_tooltip.tve_tooltip_position_top_right{animation-name:tooltip-top-right;border-bottom-left-radius:0;}.tve_ui_tooltip.tve_tooltip_position_top_right:after{display:none;}.tve_ui_tooltip.tve_tooltip_position_top_right:before{display:none;}.tve_ui_tooltip.tve_tooltip_position_right{animation-name:tooltip-right;}.tve_ui_tooltip.tve_tooltip_position_right:after{border-right:7px solid;border-top:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,0);margin:auto;top:0;bottom:0;left:-7px;}.tve_ui_tooltip.tve_tooltip_position_right:before{border-bottom:7px solid rgba(0,0,0,0);border-top:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,.15);margin:auto;top:0;bottom:0;left:-8px;}.tve_ui_tooltip.tve_tooltip_position_bottom_right{animation-name:tooltip-bottom-right;border-top-left-radius:0;}.tve_ui_tooltip.tve_tooltip_position_bottom_right:after{display:none;}.tve_ui_tooltip.tve_tooltip_position_bottom_right:before{display:none;}.tve_ui_tooltip.tve_tooltip_position_bottom{animation-name:tooltip-bottom;}.tve_ui_tooltip.tve_tooltip_position_bottom:after{border-bottom:7px solid;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);margin:auto;left:0;right:0;top:-7px;}.tve_ui_tooltip.tve_tooltip_position_bottom:before{border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,.15);margin:auto;left:0;right:0;top:-8px;}.tve_ui_tooltip.tve_tooltip_position_bottom_left{animation-name:tooltip-bottom-left;border-top-right-radius:0;}.tve_ui_tooltip.tve_tooltip_position_bottom_left:after{display:none;}.tve_ui_tooltip.tve_tooltip_position_bottom_left:before{display:none;}.tve_ui_tooltip.tve_tooltip_position_left{animation-name:tooltip-left;}.tve_ui_tooltip.tve_tooltip_position_left:after{border-left:7px solid;border-top:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,0);margin:auto;top:0;bottom:0;right:-7px;}.tve_ui_tooltip.tve_tooltip_position_left:before{border-bottom:7px solid rgba(0,0,0,0);border-top:7px solid rgba(0,0,0,0);border-left:7px solid rgba(0,0,0,.15);margin:auto;top:0;bottom:0;right:-8px;}.tve_ui_tooltip.tve_tooltip_position_top_left{animation-name:tooltip-top-left;border-bottom-right-radius:0;}.tve_ui_tooltip.tve_tooltip_position_top_left:after{display:none;}.tve_ui_tooltip.tve_tooltip_position_top_left:before{display:none;}.tve_ui_tooltip.tve_tooltip_style_light{background:#fff;color:#a9a9a9;}.tve_ui_tooltip.tve_tooltip_style_dark{background:#494949;color:#c9c9c9;}.tvd-toast{justify-content:space-between;}.tvd-toast.tve-fe-message{top:50px;width:60%;padding:0;color:#000;max-width:500px;position:fixed;z-index:9999993;left:50%;}.tvd-toast.tve-fe-message .tve-toast-message{position:relative;left:-50%;background:#fff;box-shadow:0 0 15px 0 #a7a7a7;}.tvd-toast.tve-fe-message .tve-toast-icon-container{display:inline-block;width:50px;background:green;color:#fff;height:100%;position:absolute;}.tvd-toast.tve-fe-message .tve-toast-icon-container.tve-toast-error{background:red;}.tvd-toast.tve-fe-message .tve-toast-message-container{padding:20px 10px 20px 70px;margin:auto 0;font-family:Roboto,sans-serif;font-size:16px;}.tvd-toast.tve-fe-message span{text-align:center;display:flex;justify-content:center;flex-direction:column;align-items:center;min-height:50px;height:100%;width:100%;}.tve-editable-field{text-align:left;}.tve-editable-field p{display:inline-block;padding-left:10px;margin:0;overflow:hidden;text-overflow:ellipsis;max-width:75%;}.tve-editable-field span{cursor:pointer;float:right;position:relative;top:5px;display:block;height:20px;width:20px;background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/tve_lock.png") !important;background-size:contain !important;background-repeat:no-repeat !important;}.tve-editable-field span.nitro-lazy{background-image:none !important;}#tve_editor.tve_empty_dropzone .thrv_symbol.thrv_header .symbol-section-in,#tve_editor.tve_empty_dropzone .thrv_symbol.thrv_footer .symbol-section-in{padding:1px;}#wrapper .symbol-edit-mode.thrv_header .symbol-section-in,#wrapper .symbol-edit-mode.thrv_footer .symbol-section-in{padding:1px;}.thrv_symbol.thrv_header,.thrv_symbol.thrv_footer{width:100%;position:relative;box-sizing:border-box;}.thrv_symbol.thrv_header .thrive-symbol-shortcode,.thrv_symbol.thrv_footer .thrive-symbol-shortcode{margin:0 auto;position:relative;}.symbol-section-in{margin:0 auto;position:relative;z-index:1;box-sizing:border-box;}.symbol-section-in:empty:before{font-family:sans-serif;line-height:40px;}.symbol-section-in:after,.symbol-section-in:before{content:"";display:block;overflow:auto;}.symbol-section-in.symbol-section-full-height{min-height:100vh !important;}.thrive-shortcode-content a{color:inherit;}.thrive-shortcode-content[data-shortcode=thrive_woo_meta_shortcode][data-attr-on_sale_effect=strikethrough]{text-decoration:line-through;}.thrive-shortcode-content[data-shortcode=thrive_woo_meta_shortcode][data-attr-on_sale_effect=fade_n_strike]{opacity:.5;text-decoration:line-through;}.thrive-shortcode-content[data-shortcode=thrive_woo_meta_shortcode][data-attr-on_sale_effect=fade]{opacity:.5;}.tve-loader-square{overflow:hidden;position:relative;}.tve-loader-square:before{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/spinner.svg");background-color:hsla(0,0%,100%,.8);background-position:center;background-repeat:no-repeat;background-size:40px 40px;content:"";display:block;height:100%;position:absolute;top:0;left:0;width:100%;z-index:2;}.tcb-woo-shop.tve-loader-square,.tcb-woo-product-categories.tve-loader-square{overflow:visible;position:relative;}.tcb-woo-shop.tve-loader-square:before,.tcb-woo-product-categories.tve-loader-square:before{position:absolute;background-size:70px 70px;}.symbol-section-out{position:absolute;width:100%;height:100%;left:0;top:0;box-sizing:border-box !important;overflow:hidden;}#tve_zoom_image_content img{box-shadow:0 0 22px -2px rgba(0,0,0,.75);max-width:100%;}.tve-page-section-out[data-clip-id],.tve-content-box-background[data-clip-id]{transform:rotateZ(0);}.thrv_widget:empty{display:none;}body:not(.tve_editor_page) .tve_more_tag{visibility:hidden;height:1px !important;}.tve-hide-x-overflow{overflow-x:hidden !important;}.grecaptcha-badge{z-index:99;}:not(#_s):not(#_s) .tcb-conditional-display-placeholder{min-height:var(--tcb-container-height-d,100px) !important;position:relative;}:not(#_s):not(#_s) .tcb-conditional-display-placeholder.thrv-page-section{box-sizing:border-box;margin:0;}:not(#_s):not(#_s) .tcb-conditional-display-placeholder.thrv-content-box{box-sizing:border-box;}:not(#_s):not(#_s) .tcb-conditional-display-placeholder .tve-page-section-out,:not(#_s):not(#_s) .tcb-conditional-display-placeholder .tve-content-box-background{box-sizing:border-box;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;}@media (max-width: 1023px){:not(#_s):not(#_s) .tcb-conditional-display-placeholder{min-height:var(--tcb-container-height-t) !important;}}@media (max-width: 767px){:not(#_s):not(#_s) .tcb-conditional-display-placeholder{min-height:var(--tcb-container-height-m) !important;}}.thrv-google-map-embedded-code,.thrv_tw_qs{max-width:100%;}.tve_shortcode_rendered p:empty{display:none !important;}.tve_shortcode_rendered ul,.tve_shortcode_rendered ol{line-height:1.875em;margin-bottom:1.25em;padding-left:3.15em;}body:not(.tve_editor_page) .tve_audio-no_audio{display:none;}.thrv_facebook_comments{min-width:100px;}.tve-fb-comments{width:100%;}.tve-fb-comments>span{width:100% !important;}.tve-fb-comments iframe{width:100% !important;}@keyframes slide-wobble{0%{transform:translateX(30%);opacity:0;}25%{transform:translateX(-15%);}50%{transform:translateX(10%);}75%{transform:translateX(-5%);}100%{transform:translateX(0%);opacity:1;}}@keyframes fade-out{0%{transform:translateX(0%);opacity:1;}25%{transform:translateX(-5%);}100%{transform:translateX(100%);opacity:0;}}.tcb-woo-mini-cart{position:relative;display:inline-flex;align-self:flex-start;cursor:pointer;color:#93a3b0;overflow:visible !important;--tve-cart-size:30px;}.tcb-woo-mini-cart:not(.tcb-compact-edit-mode){position:relative;}.tcb-woo-mini-cart:not(.tcb-compact-edit-mode):after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:rgba(255,255,255,0);}.tcb-woo-mini-cart>div{display:inline-flex;align-items:center;}.tcb-woo-mini-cart[data-align=right]{justify-content:flex-end;align-self:flex-end;}.tcb-woo-mini-cart[data-align=center]{justify-content:center;align-self:center;}.tcb-woo-mini-cart .widget_shopping_cart_content,.tcb-woo-mini-cart .tcb-woo-mini-cart-items,.tcb-woo-mini-cart .tcb-woo-mini-cart-amount,.tcb-woo-mini-cart .tcb-woo-mini-cart-text{display:none;}.tcb-woo-mini-cart[data-type=amount] .tcb-woo-mini-cart-amount{display:inline-flex;margin-left:6px;}.tcb-woo-mini-cart[data-type=text] .tcb-woo-mini-cart-text{display:inline-flex;margin-left:6px;}.tcb-woo-mini-cart .tcb-woo-mini-cart-icon{font-size:var(--tve-cart-size);position:relative;}.tcb-woo-mini-cart .tcb-woo-mini-cart-count{text-align:center;position:absolute;top:-5px;right:-5px;border-radius:50%;min-width:var(--tve-cart-count-size);min-height:var(--tve-cart-count-size);padding:3px;line-height:1;display:flex;align-items:center;justify-content:center;box-sizing:content-box !important;--tve-cart-count-size:calc(var(--tve-cart-size) / 2);font-size:var(--tve-cart-count-size);background-color:#fa6400;color:#fff;}.tcb-woo-mini-cart .tcb-woo-mini-cart-count:empty{display:none;}.tcb-woo-mini-cart-content-wrapper{display:none;top:0;position:absolute;}.tcb-woo-mini-cart-content-wrapper:not(#s){z-index:999 !important;}.admin-bar .tcb-woo-mini-cart-content-wrapper{z-index:99999 !important;}.tcb-woo-mini-cart-content-wrapper.full-height{position:fixed;height:100vh;max-width:90vw;}.tcb-woo-mini-cart-content-wrapper.full-height .tcb-woo-mini-cart-content,.tcb-woo-mini-cart-content-wrapper.full-height .widget_shopping_cart_content{margin-top:0 !important;height:100%;max-width:90vw;}.tcb-woo-mini-cart-content-wrapper.full-height .woocommerce-mini-cart-item{max-width:90vw;}.tcb-woo-mini-cart-content-wrapper.full-height .widget_shopping_cart_content{overflow-y:auto;}.tcb-woo-mini-cart-content-wrapper.full-height .widget_shopping_cart_content:not(.tcb-woo-no-items){padding-top:23px !important;}.tcb-woo-mini-cart-content-wrapper.full-height .widget_shopping_cart_content .tcb-cart-close-icon{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgOSAxMCI+CiAgICA8cGF0aCBmaWxsPSIjNEI0QjRCIiBmaWxsLW9wYWNpdHk9Ii41NTIiIGQ9Ik03LjkxNiA5LjEyNWMuMDY0IDAgLjExNC0uMDE4LjE1LS4wNTVsLjYzLS42MjljLjAzNi0uMDM2LjA1NC0uMDg2LjA1NC0uMTVzLS4wMTgtLjExNC0uMDU1LS4xNUw1LjMwNSA0Ljc1bDMuMzktMy4zOWMuMDM3LS4wMzcuMDU1LS4wODcuMDU1LS4xNTFzLS4wMTgtLjExNC0uMDU1LS4xNWwtLjYyOS0uNjNDOC4wMy4zOTQgNy45OC4zNzYgNy45MTYuMzc2cy0uMTE0LjAxOC0uMTUuMDU1TDQuMzc1IDMuODIuOTg1LjQzQy45NDcuMzkzLjg5Ny4zNzUuODMzLjM3NVMuNzIuMzkzLjY4NC40M2wtLjYzLjYyOWMtLjAzNi4wMzYtLjA1NC4wODYtLjA1NC4xNXMuMDE4LjExNC4wNTUuMTVsMy4zOSAzLjM5MS0zLjM5IDMuMzlDLjAxOCA4LjE3OCAwIDguMjI4IDAgOC4yOTJzLjAxOC4xMTQuMDU1LjE1bC42MjkuNjNjLjAzNi4wMzYuMDg2LjA1NC4xNS4wNTRzLjExNC0uMDE4LjE1LS4wNTVsMy4zOTEtMy4zOSAzLjM5IDMuMzljLjAzNy4wMzcuMDg3LjA1NS4xNTEuMDU1eiIvPgo8L3N2Zz4K");color:#b1b1b1;opacity:.8;position:absolute;right:9px;top:9px;height:10px;width:9px;cursor:pointer;}.tcb-woo-mini-cart-content-wrapper.full-height .widget_shopping_cart_content .tcb-cart-close-icon.nitro-lazy{background-image:none !important;}.tcb-woo-mini-cart-content-wrapper.full-height .widget_shopping_cart_content .tcb-cart-close-icon:hover{opacity:1;}.tcb-woo-mini-cart-content-wrapper.full-height .woocommerce-mini-cart__empty-message{height:100%;max-width:90vw;background-position-y:calc(50% - 20px) !important;}.tcb-woo-mini-cart-content-wrapper.full-height .tcb-woo-mini-cart-no-products{height:100%;}.tcb-woo-mini-cart-content-wrapper .animate-cart{position:relative;}.tcb-woo-mini-cart-content-wrapper .animate-cart>li{transition:left .5s ease-in-out,opacity .5s ease-in-out;}.tcb-woo-mini-cart-content-wrapper:not(.full-height){max-width:0;max-height:0;overflow:hidden;transition:max-width 1s ease-in-out,max-height 1s ease-in-out;}.tcb-woo-mini-cart-content-wrapper:not(.full-height) .woocommerce-mini-cart{max-height:45vh;overflow-y:auto;overflow-x:hidden;}.tcb-woo-mini-cart-content-wrapper .tcb-woo-mini-cart-content{border:0 !important;border-radius:0 !important;color:unset !important;margin:0 !important;padding:0 !important;background:unset !important;text-shadow:unset !important;--tve-font-size:unset !important;}.tcb-woo-mini-cart-content-wrapper.open{display:block;width:fit-content;}.tcb-woo-mini-cart-content-wrapper .widget_shopping_cart_content:not(.tcb-woo-no-items){padding:20px;}.tcb-woo-mini-cart-content-wrapper .widget_shopping_cart_content,.tcb-woo-mini-cart-content-wrapper .tcb-woo-mini-cart-no-products .woocommerce-mini-cart__empty-message{width:300px;background:#fff;margin-top:14px;box-shadow:0 2px 10px 0 #c9caca;border:solid 1px rgba(80,86,95,.2);position:relative;}.tcb-woo-mini-cart-content-wrapper .tcb-woo-mini-cart-no-products .woocommerce-mini-cart__empty-message,.tcb-woo-mini-cart-content-wrapper .widget_shopping_cart_content .woocommerce-mini-cart__empty-message{background:#edeeef url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDM0IDMwIj4KICAgIDxwYXRoIGZpbGw9IiM5M0EzQjAiIGZpbGwtb3BhY2l0eT0iLjUiIGQ9Ik0zMC45NDUgMTcuNjU1bDIuNzctMTIuMTg3Yy4yLS44OC0uNDctMS43MTgtMS4zNzItMS43MThIOS4zM2wtLjUzNy0yLjYyNkM4LjY1OC40NyA4LjA4MiAwIDcuNDE0IDBIMS40MDZDLjYzIDAgMCAuNjMgMCAxLjQwNnYuOTM4QzAgMy4xMi42MyAzLjc1IDEuNDA2IDMuNzVoNC4wOTVsNC4xMTYgMjAuMTIzYy0uOTg1LjU2Ni0xLjY0OCAxLjYyOC0xLjY0OCAyLjg0NkM3Ljk2OSAyOC41MyA5LjQzOCAzMCAxMS4yNSAzMHMzLjI4MS0xLjQ3IDMuMjgxLTMuMjgxYzAtLjkxOS0uMzc4LTEuNzQ4LS45ODYtMi4zNDRIMjUuODNjLS42MDcuNTk2LS45ODUgMS40MjUtLjk4NSAyLjM0NCAwIDEuODEyIDEuNDY5IDMuMjgxIDMuMjgxIDMuMjgxczMuMjgxLTEuNDcgMy4yODEtMy4yODFjMC0xLjMtLjc1NS0yLjQyMi0xLjg1LTIuOTU0bC4zMjMtMS40MjJjLjItLjg4LS40NjktMS43MTgtMS4zNzEtMS43MThIMTIuNzhsLS4zODMtMS44NzVoMTcuMTc2Yy42NTcgMCAxLjIyNi0uNDU0IDEuMzcyLTEuMDk1eiIvPgo8L3N2Zz4K") top 60px center no-repeat;}.tcb-woo-mini-cart-content-wrapper .tcb-woo-mini-cart-no-products .woocommerce-mini-cart__empty-message.nitro-lazy,.tcb-woo-mini-cart-content-wrapper .widget_shopping_cart_content .woocommerce-mini-cart__empty-message.nitro-lazy{background-image:none !important;}.tcb-woo-mini-cart-content-wrapper .tcb-woo-mini-cart-no-products .woocommerce-mini-cart__empty-message:after,.tcb-woo-mini-cart-content-wrapper .widget_shopping_cart_content .woocommerce-mini-cart__empty-message:after{background-color:inherit;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__total{padding:10px 0 0;margin:20px 0 15px;border-top:1px solid #f0f3f3;display:flex;align-items:center;justify-content:space-between;text-transform:uppercase;--tve-font-size:12px;--g-bold-weight:bold;font-size:var(--tve-font-size);font-weight:var(--g-bold-weight);color:#50565f;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__total .woocommerce-Price-amount{font-size:calc(var(--tve-font-size) + 4px) !important;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__buttons{padding-bottom:0;display:flex;flex-direction:column-reverse;align-items:center;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__buttons a:not(.checkout){background:none;padding:0;--tve-text-decoration:underline;--tve-color:var(--tcb-skin-color-0);margin:15px 0 8px;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__buttons a:not(.checkout):hover{background:none;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__buttons a.checkout{text-align:center;display:block;width:100%;background:var(--tcb-skin-color-0);color:var(--tve-color,white) !important;transition:background-color .15s;border-radius:0;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__buttons a.checkout:hover{background:var(--tcb-skin-color-1);color:var(--tve-color,white) !important;}.tcb-woo-mini-cart-content-wrapper ul.woocommerce-mini-cart li.woocommerce-mini-cart-item{margin-bottom:10px;min-height:80px;padding:5px 5px 2px 90px;display:flex;flex-direction:column-reverse;justify-content:space-between;}.tcb-woo-mini-cart-content-wrapper ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:before,.tcb-woo-mini-cart-content-wrapper ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:after{content:none;}.tcb-woo-mini-cart-content-wrapper ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:hover{background-color:rgba(240,243,243,.8);}.tcb-woo-mini-cart-content-wrapper ul.woocommerce-mini-cart li.woocommerce-mini-cart-item img{width:80px;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart-item a.remove_from_cart_button{visibility:hidden;padding:0 !important;position:absolute;right:0;top:0;overflow:hidden;font-size:18px;font-weight:bold;opacity:.6;transition:opacity .15s;display:block;height:1em;width:1em;text-align:center;line-height:1;color:#6a6b6c;text-decoration:none;border:0;}@media screen and (max-width: 782px){.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart-item a.remove_from_cart_button{opacity:1 !important;visibility:visible;}}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart-item a.remove_from_cart_button:hover{opacity:1;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart-item:hover a.remove_from_cart_button{visibility:visible;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart-item a:not(.remove_from_cart_button){order:10;padding:0 15px 0 0 !important;--tve-color:#50565f;--tve-font-size:12px;--tve-font-weight:bold;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart-item a:not(.remove_from_cart_button)>img{transform:none;transition:none;float:none;margin:0;left:0;top:0;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart-item .quantity{order:9;--tve-color:#93a3b0;--tve-font-size:12px;--tve-font-weight:bold;align-self:flex-end;}.tcb-woo-mini-cart-content-wrapper .quantity,.tcb-woo-mini-cart-content-wrapper a:not(.remove_from_cart_button),.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__total>strong,.tcb-woo-mini-cart-content-wrapper .woocommerce-Price-amount,.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__buttons>.button,.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__empty-message{color:var(--tve-color) !important;text-transform:var(--tve-text-transform) !important;font-weight:var(--tve-font-weight) !important;font-style:var(--tve-font-style) !important;text-decoration:var(--tve-text-decoration) !important;font-size:var(--tve-font-size) !important;line-height:var(--tve-line-height) !important;font-family:var(--tve-font-family) !important;letter-spacing:var(--tve-letter-spacing) !important;}.tcb-woo-mini-cart-content-wrapper .woocommerce-mini-cart__empty-message{text-align:center;display:flex;flex-direction:column;justify-content:center;padding:105px 0 75px;--tve-font-size:18px;}.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) .woocommerce-product-gallery,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) .summary,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) #reviews,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) section.products{position:relative;}.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) .woocommerce-product-gallery:after,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) .summary:after,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) #reviews:after,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) section.products:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:transparent;}.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) .woocommerce-product-gallery:after,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) .summary:after,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) #reviews:after,.tve_editor_page div.post-wrapper.product:not(.thrive-woocommerce-product-editable) section.products:after{z-index:100;}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0);}.slick-list{position:relative;overflow-x:clip;overflow-y:unset;display:block;margin:0;padding:0;}.slick-list:focus{outline:none;}.slick-list.dragging{cursor:pointer;cursor:hand;}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto;}.slick-track:before,.slick-track:after{content:"";display:table;}.slick-track:after{clear:both;}.slick-loading .slick-track{visibility:hidden;}.slick-slide{float:left;height:100%;min-height:1px;display:none;}[dir=rtl] .slick-slide{float:right;}.slick-slide img{display:block;}.slick-slide.slick-loading img{display:none;}.slick-slide.dragging img{pointer-events:none;}.slick-initialized .slick-slide{display:block;}.slick-loading .slick-slide{visibility:hidden;}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0);}.slick-arrow.slick-hidden{display:none;}.slick-prev,.slick-next{position:absolute;display:block;height:20px;width:20px;line-height:0px;font-size:0px;cursor:pointer;background:rgba(0,0,0,0);color:rgba(0,0,0,0);top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);padding:0;border:none;outline:none;}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{outline:none;background:rgba(0,0,0,0);color:rgba(0,0,0,0);}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1;}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25;}.slick-prev{left:-25px;}[dir=rtl] .slick-prev{left:auto;right:-25px;}.slick-next{right:-25px;}[dir=rtl] .slick-next{left:-25px;right:auto;}.slick-dotted.slick-slider{margin-bottom:30px;}.slick-dots{position:absolute;bottom:-25px;list-style:none;display:block;text-align:center;padding:0;margin:0;width:100%;}.slick-dots li{position:relative;display:inline-block;height:20px;width:20px;margin:0 5px;padding:0;cursor:pointer;}.tve_btn.tve_black a>span{color:#fff;}.tve_btn.tve_blue a>span{color:#fff;}.tve_btn.tve_green a>span{color:#fff;}.tve_btn.tve_orange a>span{color:#fff;}.tve_btn.tve_purple a>span{color:#fff;}.tve_btn.tve_red a>span{color:#fff;}.tve_btn.tve_teal a>span{color:#fff;}.tve_btn.tve_white a.tve_btnLink{color:#6f6e6e;}.tve_btn.tve_white a.tve_btnLink>span{color:#6f6e6e;}.tve_normalBtn.tve_btn5.tve_black i,.tve_normalBtn.tve_btn6.tve_black i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_black.png");}.tve_normalBtn.tve_btn5.tve_black i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_black i.nitro-lazy{background-image:none !important;}.tve_normalBtn.tve_btn5.tve_blue i,.tve_normalBtn.tve_btn6.tve_blue i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_blue.png");}.tve_normalBtn.tve_btn5.tve_blue i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_blue i.nitro-lazy{background-image:none !important;}.tve_normalBtn.tve_btn5.tve_green i,.tve_normalBtn.tve_btn6.tve_green i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/source/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_green.png");}.tve_normalBtn.tve_btn5.tve_green i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_green i.nitro-lazy{background-image:none !important;}.tve_normalBtn.tve_btn5.tve_orange i,.tve_normalBtn.tve_btn6.tve_orange i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_orange.png");}.tve_normalBtn.tve_btn5.tve_orange i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_orange i.nitro-lazy{background-image:none !important;}.tve_normalBtn.tve_btn5.tve_purple i,.tve_normalBtn.tve_btn6.tve_purple i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_purple.png");}.tve_normalBtn.tve_btn5.tve_purple i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_purple i.nitro-lazy{background-image:none !important;}.tve_normalBtn.tve_btn5.tve_red i,.tve_normalBtn.tve_btn6.tve_red i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_red.png");}.tve_normalBtn.tve_btn5.tve_red i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_red i.nitro-lazy{background-image:none !important;}.tve_normalBtn.tve_btn5.tve_teal i,.tve_normalBtn.tve_btn6.tve_teal i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_teal.png");}.tve_normalBtn.tve_btn5.tve_teal i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_teal i.nitro-lazy{background-image:none !important;}.tve_normalBtn.tve_btn5.tve_white i,.tve_normalBtn.tve_btn6.tve_white i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_white.png");}.tve_normalBtn.tve_btn5.tve_white i.nitro-lazy,.tve_normalBtn.tve_btn6.tve_white i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_black i,.tve_smallBtn.tve_btn6.tve_black i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/source/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_black.png");}.tve_smallBtn.tve_btn5.tve_black i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_black i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_blue i,.tve_smallBtn.tve_btn6.tve_blue i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_blue.png");}.tve_smallBtn.tve_btn5.tve_blue i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_blue i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_green i,.tve_smallBtn.tve_btn6.tve_green i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_green.png");}.tve_smallBtn.tve_btn5.tve_green i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_green i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_orange i,.tve_smallBtn.tve_btn6.tve_orange i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_orange.png");}.tve_smallBtn.tve_btn5.tve_orange i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_orange i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_purple i,.tve_smallBtn.tve_btn6.tve_purple i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_purple.png");}.tve_smallBtn.tve_btn5.tve_purple i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_purple i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_red i,.tve_smallBtn.tve_btn6.tve_red i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_red.png");}.tve_smallBtn.tve_btn5.tve_red i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_red i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_teal i,.tve_smallBtn.tve_btn6.tve_teal i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_teal.png");}.tve_smallBtn.tve_btn5.tve_teal i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_teal i.nitro-lazy{background-image:none !important;}.tve_smallBtn.tve_btn5.tve_white i,.tve_smallBtn.tve_btn6.tve_white i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_small_white.png");}.tve_smallBtn.tve_btn5.tve_white i.nitro-lazy,.tve_smallBtn.tve_btn6.tve_white i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_black i,.tve_bigBtn.tve_btn6.tve_black i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_black.png");}.tve_bigBtn.tve_btn5.tve_black i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_black i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_blue i,.tve_bigBtn.tve_btn6.tve_blue i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_blue.png");}.tve_bigBtn.tve_btn5.tve_blue i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_blue i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_green i,.tve_bigBtn.tve_btn6.tve_green i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_green.png");}.tve_bigBtn.tve_btn5.tve_green i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_green i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_orange i,.tve_bigBtn.tve_btn6.tve_orange i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_orange.png");}.tve_bigBtn.tve_btn5.tve_orange i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_orange i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_purple i,.tve_bigBtn.tve_btn6.tve_purple i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_purple.png");}.tve_bigBtn.tve_btn5.tve_purple i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_purple i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_red i,.tve_bigBtn.tve_btn6.tve_red i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_red.png");}.tve_bigBtn.tve_btn5.tve_red i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_red i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_teal i,.tve_bigBtn.tve_btn6.tve_teal i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_teal.png");}.tve_bigBtn.tve_btn5.tve_teal i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_teal i.nitro-lazy{background-image:none !important;}.tve_bigBtn.tve_btn5.tve_white i,.tve_bigBtn.tve_btn6.tve_white i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_big_white.png");}.tve_bigBtn.tve_btn5.tve_white i.nitro-lazy,.tve_bigBtn.tve_btn6.tve_white i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_black i,.tve_hugeBtn.tve_btn6.tve_black i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_black.png");}.tve_hugeBtn.tve_btn5.tve_black i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_black i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_blue i,.tve_hugeBtn.tve_btn6.tve_blue i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_blue.png");}.tve_hugeBtn.tve_btn5.tve_blue i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_blue i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_green i,.tve_hugeBtn.tve_btn6.tve_green i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_green.png");}.tve_hugeBtn.tve_btn5.tve_green i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_green i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_orange i,.tve_hugeBtn.tve_btn6.tve_orange i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_orange.png");}.tve_hugeBtn.tve_btn5.tve_orange i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_orange i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_purple i,.tve_hugeBtn.tve_btn6.tve_purple i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_purple.png");}.tve_hugeBtn.tve_btn5.tve_purple i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_purple i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_red i,.tve_hugeBtn.tve_btn6.tve_red i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_red.png");}.tve_hugeBtn.tve_btn5.tve_red i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_red i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_teal i,.tve_hugeBtn.tve_btn6.tve_teal i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_teal.png");}.tve_hugeBtn.tve_btn5.tve_teal i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_teal i.nitro-lazy{background-image:none !important;}.tve_hugeBtn.tve_btn5.tve_white i,.tve_hugeBtn.tve_btn6.tve_white i{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/btn_huge_white.png");}.tve_hugeBtn.tve_btn5.tve_white i.nitro-lazy,.tve_hugeBtn.tve_btn6.tve_white i.nitro-lazy{background-image:none !important;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_black{color:#101010;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_black a:hover{color:#101010;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_black.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_black.tve_horizontal ul a.tve-active{background-color:#101010;color:#fff;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_blue{color:#3e68b2;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_blue a:hover{color:#3e68b2;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_blue.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_blue.tve_horizontal ul a.tve-active{background-color:#3e68b2;color:#fff;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_green{color:#1abc9c;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_green a:hover{color:#1abc9c;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_green.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_green.tve_horizontal ul a.tve-active{background-color:#1abc9c;color:#fff;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_orange{color:#e67e22;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_orange a:hover{color:#e67e22;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_orange.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_orange.tve_horizontal ul a.tve-active{background-color:#e67e22;color:#fff;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_purple{color:#8656c1;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_purple a:hover{color:#8656c1;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_purple.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_purple.tve_horizontal ul a.tve-active{background-color:#8656c1;color:#fff;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_red{color:#ce271b;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_red a:hover{color:#ce271b;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_red.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_red.tve_horizontal ul a.tve-active{background-color:#ce271b;color:#fff;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_teal{color:#387d71;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_teal a:hover{color:#387d71;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_teal.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_teal.tve_horizontal ul a.tve-active{background-color:#387d71;color:#fff;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) a.tve-m-trigger.tve_white{color:#d8d8d8;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_white a:hover{color:#d8d8d8;}.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_white.tve_horizontal ul a:hover,.thrv_widget_menu:not(.tve-custom-menu-upgrade) ul.tve_w_menu.tve_white.tve_horizontal ul a.tve-active{background-color:#d8d8d8;color:#fff;}.tve_flt .tve_fg .tve_line{padding-left:90px;}.tve_flt .tve_fg{box-sizing:border-box !important;margin-left:auto;margin-right:auto;padding:4.2%;position:relative;width:83%;}.tve_flt .tve_fg>span{background-repeat:no-repeat;display:block;}.tve_flt .tve_fg hr{border:none;height:1px;margin:25px auto 25px auto;width:60%;}.tve_flt .tve_fg .tve_line{height:51px;max-height:51px;position:relative;}.tve_flt .tve_fg .tve_line h3{position:absolute;top:50%;height:51px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:-16px 0px 0px 0px !important;padding:0px !important;}.tve_flt .tve_fg.tve_fg3 .tve_badge,.tve_flt .tve_fg.tve_fg4 .tve_badge,.tve_flt .tve_fg.tve_fg5 .tve_badge{display:block;position:absolute;z-index:2;}.tve_flt .tve_fg.tve_fg2 h2,.tve_flt .tve_fg.tve_fg1 h2{text-align:center;}.tve_flt .tve_fg1{margin:100px auto 0px auto;}.tve_flt .tve_fg1 .tve_badge{margin:-130px auto 0px auto;}.tve_flt .tve_fg2{margin-top:10px;}.tve_flt .tve_fg3{margin-top:30px;position:relative;width:78%;}.tve_flt .tve_fg3 .tve_line h3{left:28%;width:70%;}.tve_flt .tve_fg3 p{clear:right;}.tve_flt .tve_fg4{margin-top:30px;}.tve_flt .tve_fg4 .tve_line{padding-right:10px;width:60%;}.tve_flt .tve_fg4 .tve_line h3{left:25%;width:75%;}.tve_flt .tve_fg5{margin-top:60px;padding-top:1%;padding-bottom:10%;}.tve_flt .tve_fg5 .tve_badge{left:-70px;top:-51px;}.tve_flt .tve_fg5 .tve_rbn{margin-top:12%;margin-bottom:-17%;position:relative;}.tve_flt .tve_fg5 .tve_rbn>span.tve_left{height:42px;width:6px;}.tve_flt .tve_fg5 .tve_line{height:38px;max-height:38px;width:78%;}.tve_flt .tve_fg5 .tve_line h3{height:38px;}.tve_flt .tve_fg2{background:#fef29e;margin-bottom:105px;}.tve_flt .tve_fg2 .tve_badge{margin:0px auto -129px auto;}.tve_flt .tve_fg2 hr{background:#eedf75;}.tve_flt .tve_fg3{position:relative;background:#f2f0f0;border:2px solid #cbc9c9;margin-top:40px;padding-top:20px;}.tve_flt .tve_fg3 .tve_badge{top:-33px;left:-60px;}.tve_flt .tve_fg3 .tve_line{float:right;margin-right:-5.6%;margin-bottom:70px;padding-left:0px;width:100%;z-index:1;}.tve_flt .tve_fg3 .tve_line h3{left:15%;width:80%;}.tve_flt .tve_fg3 .tve_rbn{margin-top:80px;}.tve_flt .tve_fg4{margin-top:50px;}.tve_flt .tve_fg4 .tve_line{margin-bottom:70px;width:80%;}.tve_flt .tve_fg4 .tve_badge{left:-35px;top:-30px;height:176px;width:220px;}.tve_flt .tve_fg5{padding-bottom:37%;margin-bottom:100px;}.tve_flt .tve_fg5 .tve_badge{height:176px;top:-73px;width:176px;}.tve_flt .tve_fg5 .tve_rbn{margin-bottom:-48%;margin-top:89px;}.tve_flt .tve_fg5 .tve_line h3{left:25%;width:70%;}.tve_flt .tve_fg1,.tve_flt .tve_fg5,.tve_flt .tve_fg3,.tve_flt .tve_fg4{background:#fff;border:2px solid #e5e5e5;}.tve_flt .tve_fg1 .tve_badge,.tve_flt .tve_fg2 .tve_badge,.tve_flt .tve_fg3 .tve_badge{height:176px;width:176px;}.tve_flt .tve_fg1 hr,.tve_flt .tve_fg5 hr{background:#e5e5e5;}.tve_flt .tve_black.tve_fg1 .tve_badge,.tve_flt .tve_black.tve_fg2 .tve_badge,.tve_flt .tve_black.tve_fg3 .tve_badge,.tve_flt .tve_black.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/black_s1_f.png");}.tve_flt .tve_black.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_black.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_black.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_black.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_black.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/black_s3_f.png");}.tve_flt .tve_black.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_blue.tve_fg1 .tve_badge,.tve_flt .tve_blue.tve_fg2 .tve_badge,.tve_flt .tve_blue.tve_fg3 .tve_badge,.tve_flt .tve_blue.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/blue_s1_f.png");}.tve_flt .tve_blue.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_blue.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_blue.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_blue.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_blue.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/blue_s3_f.png");}.tve_flt .tve_blue.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_green.tve_fg1 .tve_badge,.tve_flt .tve_green.tve_fg2 .tve_badge,.tve_flt .tve_green.tve_fg3 .tve_badge,.tve_flt .tve_green.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/green_s1_f.png");}.tve_flt .tve_green.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_green.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_green.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_green.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_green.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/green_s3_f.png");}.tve_flt .tve_green.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_orange.tve_fg1 .tve_badge,.tve_flt .tve_orange.tve_fg2 .tve_badge,.tve_flt .tve_orange.tve_fg3 .tve_badge,.tve_flt .tve_orange.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/orange_s1_f.png");}.tve_flt .tve_orange.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_orange.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_orange.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_orange.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_orange.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/orange_s3_f.png");}.tve_flt .tve_orange.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_purple.tve_fg1 .tve_badge,.tve_flt .tve_purple.tve_fg2 .tve_badge,.tve_flt .tve_purple.tve_fg3 .tve_badge,.tve_flt .tve_purple.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/purple_s1_f.png");}.tve_flt .tve_purple.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_purple.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_purple.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_purple.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_purple.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/purple_s3_f.png");}.tve_flt .tve_purple.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_red.tve_fg1 .tve_badge,.tve_flt .tve_red.tve_fg2 .tve_badge,.tve_flt .tve_red.tve_fg3 .tve_badge,.tve_flt .tve_red.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/red_s1_f.png");}.tve_flt .tve_red.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_red.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_red.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_red.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_red.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/red_s3_f.png");}.tve_flt .tve_red.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_teal.tve_fg1 .tve_badge,.tve_flt .tve_teal.tve_fg2 .tve_badge,.tve_flt .tve_teal.tve_fg3 .tve_badge,.tve_flt .tve_teal.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/teal_s1_f.png");}.tve_flt .tve_teal.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_teal.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_teal.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_teal.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_teal.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/teal_s3_f.png");}.tve_flt .tve_teal.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_white.tve_fg1 .tve_badge,.tve_flt .tve_white.tve_fg2 .tve_badge,.tve_flt .tve_white.tve_fg3 .tve_badge,.tve_flt .tve_white.tve_fg5 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/white_s1_f.png");}.tve_flt .tve_white.tve_fg1 .tve_badge.nitro-lazy,.tve_flt .tve_white.tve_fg2 .tve_badge.nitro-lazy,.tve_flt .tve_white.tve_fg3 .tve_badge.nitro-lazy,.tve_flt .tve_white.tve_fg5 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_white.tve_fg4 .tve_badge{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/white_s3_f.png");}.tve_flt .tve_white.tve_fg4 .tve_badge.nitro-lazy{background-image:none !important;}.tve_flt .tve_fg3.tve_black .tve_line,.tve_flt .tve_fg4.tve_black .tve_line,.tve_flt .tve_fg5.tve_black .tve_line{background:#101010;}.tve_flt .tve_fg3.tve_blue .tve_line,.tve_flt .tve_fg4.tve_blue .tve_line,.tve_flt .tve_fg5.tve_blue .tve_line{background:#3e68b2;}.tve_flt .tve_fg3.tve_green .tve_line,.tve_flt .tve_fg4.tve_green .tve_line,.tve_flt .tve_fg5.tve_green .tve_line{background:#34ae44;}.tve_flt .tve_fg3.tve_orange .tve_line,.tve_flt .tve_fg4.tve_orange .tve_line,.tve_flt .tve_fg5.tve_orange .tve_line{background:#e25c1b;}.tve_flt .tve_fg3.tve_purple .tve_line,.tve_flt .tve_fg4.tve_purple .tve_line,.tve_flt .tve_fg5.tve_purple .tve_line{background:#8656c1;}.tve_flt .tve_fg3.tve_red .tve_line,.tve_flt .tve_fg4.tve_red .tve_line,.tve_flt .tve_fg5.tve_red .tve_line{background:#ce271b;}.tve_flt .tve_fg3.tve_teal .tve_line,.tve_flt .tve_fg4.tve_teal .tve_line,.tve_flt .tve_fg5.tve_teal .tve_line{background:#387d71;}.tve_flt .tve_fg3.tve_white .tve_line,.tve_flt .tve_fg4.tve_white .tve_line,.tve_flt .tve_fg5.tve_white .tve_line{background:#d8d8d8;}.tve_flt .tve_black.tve_fg1 h2,.tve_flt .tve_black.tve_fg2 h2{color:#1f1f1f !important;}.tve_flt .tve_black.tve_fg3 h3,.tve_flt .tve_black.tve_fg4 h3,.tve_flt .tve_black.tve_fg5 h3{color:#fff !important;}.tve_flt .tve_blue.tve_fg1 h2,.tve_flt .tve_blue.tve_fg2 h2{color:#4e7ac7 !important;}.tve_flt .tve_blue.tve_fg3 h3,.tve_flt .tve_blue.tve_fg4 h3,.tve_flt .tve_blue.tve_fg5 h3{color:#fff !important;}.tve_flt .tve_green.tve_fg1 h2,.tve_flt .tve_green.tve_fg2 h2{color:#45bf55 !important;}.tve_flt .tve_green.tve_fg3 h3,.tve_flt .tve_green.tve_fg4 h3,.tve_flt .tve_green.tve_fg5 h3{color:#fff !important;}.tve_flt .tve_orange.tve_fg1 h2,.tve_flt .tve_orange.tve_fg2 h2{color:#ff712c !important;}.tve_flt .tve_orange.tve_fg3 h3,.tve_flt .tve_orange.tve_fg4 h3,.tve_flt .tve_orange.tve_fg5 h3{color:#fff !important;}.tve_flt .tve_purple.tve_fg1 h2,.tve_flt .tve_purple.tve_fg2 h2{color:#9768d1 !important;}.tve_flt .tve_purple.tve_fg3 h3,.tve_flt .tve_purple.tve_fg4 h3,.tve_flt .tve_purple.tve_fg5 h3{color:#fff !important;}.tve_flt .tve_red.tve_fg1 h2,.tve_flt .tve_red.tve_fg2 h2{color:#e5372b !important;}.tve_flt .tve_red.tve_fg3 h3,.tve_flt .tve_red.tve_fg4 h3,.tve_flt .tve_red.tve_fg5 h3{color:#fff !important;}.tve_flt .tve_teal.tve_fg1 h2,.tve_flt .tve_teal.tve_fg2 h2{color:#479486 !important;}.tve_flt .tve_teal.tve_fg3 h3,.tve_flt .tve_teal.tve_fg4 h3,.tve_flt .tve_teal.tve_fg5 h3{color:#fff !important;}.tve_flt .tve_white.tve_fg1 h2,.tve_flt .tve_white.tve_fg2 h2{color:#3d3d3d !important;}.tve_flt .tve_white.tve_fg3 h3,.tve_flt .tve_white.tve_fg4 h3,.tve_flt .tve_white.tve_fg5 h3{color:#3d3d3d !important;}.tve_flt .tve_white .tve_line{background:#fbfbfb;}.tve_flt .tve_btn.tve_nb.tve_btn5,.tve_flt .tve_btn.tve_nb.tve_btn6{display:table;overflow:hidden;}.tve_flt .tve_btn.tve_nb.tve_btn5 a.tve_btnLink,.tve_flt .tve_btn.tve_nb.tve_btn6 a.tve_btnLink{box-sizing:border-box !important;display:table !important;overflow:hidden;table-layout:auto;width:100%;}.tve_flt .tve_btn.tve_nb.tve_btn5 .tve_btn_im,.tve_flt .tve_btn.tve_nb.tve_btn6 .tve_btn_im{display:table-cell;float:none;vertical-align:middle;position:relative;}.tve_flt .tve_btn.tve_nb.tve_btn5 .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_nb.tve_btn6 .tve_btn_im .tve_btn_divider{display:block;height:500px;position:absolute;top:-200px;right:0;width:1px;}.tve_flt .tve_btn.tve_nb.tve_btn5 .tve_btn_im i,.tve_flt .tve_btn.tve_nb.tve_btn6 .tve_btn_im i{margin-top:0;}.tve_flt .tve_btn.tve_nb.tve_btn5 .tve_btn_im i.tve_sc_icon,.tve_flt .tve_btn.tve_nb.tve_btn6 .tve_btn_im i.tve_sc_icon{height:auto;min-width:50px;width:auto;}.tve_flt .tve_btn.tve_nb.tve_btn5 .tve_btn_txt,.tve_flt .tve_btn.tve_nb.tve_btn6 .tve_btn_txt{box-sizing:border-box !important;display:table-cell;padding-right:10%;vertical-align:middle;white-space:nowrap;width:100%;}@media only screen and (max-width: 940px){.tve_flt .tve_btn.tve_nb.tve_btn5 .tve_btn_txt,.tve_flt .tve_btn.tve_nb.tve_btn6 .tve_btn_txt{white-space:normal;}}@media only screen and (max-width: 540px){.tve_flt .thrv_button_shortcode .tve_btn.tve_btn5 .tve_btn_im,.tve_flt .thrv_button_shortcode .tve_btn.tve_btn6 .tve_btn_im{display:none;}.tve_flt .thrv_button_shortcode .tve_btn.tve_btn5 .tve_btn_txt,.tve_flt .thrv_button_shortcode .tve_btn.tve_btn6 .tve_btn_txt{padding-right:0;}}.tve_flt .tve_btn.tve_btn1,.tve_flt .tve_btn.tve_btn2,.tve_flt .tve_btn.tve_btn7{border-radius:2px;}.tve_flt .tve_btn.tve_btn3,.tve_flt .tve_btn.tve_btn6,.tve_flt .tve_btn.tve_btn8{border-radius:100px;}.tve_flt .tve_btn.tve_black{background:#595959;}.tve_flt .tve_btn.tve_black a{text-shadow:#6c6c6c 0px 1px 0px;}.tve_flt .tve_btn.tve_black.tve_btn7,.tve_flt .tve_btn.tve_black.tve_btn8{box-shadow:0 5px 0 #0e0e0e;border-bottom:1px solid #727272;}.tve_flt .tve_btn.tve_black.tve_btn7:hover,.tve_flt .tve_btn.tve_black.tve_btn8:hover{box-shadow:0 5px 0 #333;border-bottom:1px solid #727272;}.tve_flt .tve_btn.tve_black.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_black.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#1d1d1d;}.tve_flt .tve_btn.tve_black.tve_btn5 a>div,.tve_flt .tve_btn.tve_black.tve_btn6 a>div{border-right:1px solid #1d1d1d;}.tve_flt .tve_btn.tve_black:hover{background-color:#686868;}.tve_flt .tve_btn.tve_black:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#383838;}.tve_flt .tve_btn.tve_black:hover a>div{border-right:1px solid #383838;}.tve_flt .tve_btn.tve_blue{background-color:#4e7ac7;}.tve_flt .tve_btn.tve_blue a{text-shadow:#1176c1 0px 1px 0px;}.tve_flt .tve_btn.tve_blue.tve_btn7,.tve_flt .tve_btn.tve_blue.tve_btn8{box-shadow:0 5px 0 #3c65ab;border-bottom:1px solid #7497d3;}.tve_flt .tve_btn.tve_blue.tve_btn7:hover,.tve_flt .tve_btn.tve_blue.tve_btn8:hover{box-shadow:0 5px 0 #4268aa;border-bottom:1px solid #7597d3;}.tve_flt .tve_btn.tve_blue.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_blue.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#3c65ab;}.tve_flt .tve_btn.tve_blue.tve_btn5 a>div,.tve_flt .tve_btn.tve_blue.tve_btn6 a>div{border-right:1px solid #3c65ab;}.tve_flt .tve_btn.tve_blue:hover{background-color:#5981c6;}.tve_flt .tve_btn.tve_blue:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#4371ad;}.tve_flt .tve_btn.tve_blue:hover a>div{border-right:1px solid #4371ad;}.tve_flt .tve_btn.tve_green{background:#45bf55;}.tve_flt .tve_btn.tve_green a{text-shadow:#329d40 0px 1px 0px;}.tve_flt .tve_btn.tve_green.tve_btn7,.tve_flt .tve_btn.tve_green.tve_btn8{box-shadow:0 5px 0 #36aa45;border-bottom:1px solid #6acc77;}.tve_flt .tve_btn.tve_green.tve_btn7:hover,.tve_flt .tve_btn.tve_green.tve_btn8:hover{box-shadow:0 5px 0 #42b54a;border-bottom:1px solid #6bcc78;}.tve_flt .tve_btn.tve_green.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_green.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#36aa45;}.tve_flt .tve_btn.tve_green.tve_btn5 a>div,.tve_flt .tve_btn.tve_green.tve_btn6 a>div{border-right:1px solid #36aa45;}.tve_flt .tve_btn.tve_green:hover{background-color:#52c958;}.tve_flt .tve_btn.tve_green:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#39b542;}.tve_flt .tve_btn.tve_green:hover a>div{border-right:1px solid #39b542;}.tve_flt .tve_btn.tve_orange{background:#ff712c;}.tve_flt .tve_btn.tve_orange a{text-shadow:#d76a01 0px 1px 0px;}.tve_flt .tve_btn.tve_orange.tve_btn7,.tve_flt .tve_btn.tve_orange.tve_btn8{box-shadow:0 5px 0 #e25f20;border-bottom:1px solid #ff935f;}.tve_flt .tve_btn.tve_orange.tve_btn7:hover,.tve_flt .tve_btn.tve_orange.tve_btn8:hover{box-shadow:0 5px 0 #e56e24;border-bottom:1px solid #ff935f;}.tve_flt .tve_btn.tve_orange.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_orange.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#e25f20;}.tve_flt .tve_btn.tve_orange.tve_btn5 a>div,.tve_flt .tve_btn.tve_orange.tve_btn6 a>div{border-right:1px solid #e25f20;}.tve_flt .tve_btn.tve_orange:hover{background-color:#ff8738;}.tve_flt .tve_btn.tve_orange:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#e57027;}.tve_flt .tve_btn.tve_orange:hover a>div{border-right:1px solid #e57027;}.tve_flt .tve_btn.tve_purple{background:#9768d1;}.tve_flt .tve_btn.tve_purple a{text-shadow:#2f579c 0px 1px 0px;}.tve_flt .tve_btn.tve_purple.tve_btn7,.tve_flt .tve_btn.tve_purple.tve_btn8{box-shadow:0 5px 0 #8352bf;border-bottom:1px solid #b18fdc;}.tve_flt .tve_btn.tve_purple.tve_btn7:hover,.tve_flt .tve_btn.tve_purple.tve_btn8:hover{box-shadow:0 5px 0 #8d5cc9;border-bottom:1px solid #b28fdd;}.tve_flt .tve_btn.tve_purple.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_purple.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#8352bf;}.tve_flt .tve_btn.tve_purple.tve_btn5 a>div,.tve_flt .tve_btn.tve_purple.tve_btn6 a>div{border-right:1px solid #8352bf;}.tve_flt .tve_btn.tve_purple:hover{background-color:#a67add;}.tve_flt .tve_btn.tve_purple:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#8e5ec9;}.tve_flt .tve_btn.tve_purple:hover a>div{border-right:1px solid #8e5ec9;}.tve_flt .tve_btn.tve_red{background:#e93c31;}.tve_flt .tve_btn.tve_red a{text-shadow:#a70c0c 0px 1px 0px;}.tve_flt .tve_btn.tve_red.tve_btn7,.tve_flt .tve_btn.tve_red.tve_btn8{box-shadow:0 5px 0 #c5281d;border-bottom:1px solid hsl(3.5869565217,80.701754386%,65.2941176471%);}.tve_flt .tve_btn.tve_red.tve_btn7:hover,.tve_flt .tve_btn.tve_red.tve_btn8:hover{box-shadow:0 5px 0 #d33726;border-bottom:1px solid #ee685f;}.tve_flt .tve_btn.tve_red.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_red.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#c5281d;}.tve_flt .tve_btn.tve_red.tve_btn5 a>div,.tve_flt .tve_btn.tve_red.tve_btn6 a>div{border-right:1px solid #c5281d;}.tve_flt .tve_btn.tve_red:hover{background-color:#ea493f;}.tve_flt .tve_btn.tve_red:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#d63131;}.tve_flt .tve_btn.tve_red:hover a>div{border-right:1px solid #d63131;}.tve_flt .tve_btn.tve_teal{background:teal;}.tve_flt .tve_btn.tve_teal a{text-shadow:#005454 0px 1px 0px;}.tve_flt .tve_btn.tve_teal.tve_btn7,.tve_flt .tve_btn.tve_teal.tve_btn8{box-shadow:0 5px 0 #006a6a;border-bottom:1px solid #00b3b3;}.tve_flt .tve_btn.tve_teal.tve_btn7:hover,.tve_flt .tve_btn.tve_teal.tve_btn8:hover{box-shadow:0 5px 0 #007c7c;border-bottom:1px solid #00b3b3;}.tve_flt .tve_btn.tve_teal.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_teal.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#006a6a;}.tve_flt .tve_btn.tve_teal.tve_btn5 a>div,.tve_flt .tve_btn.tve_teal.tve_btn6 a>div{border-right:1px solid #006a6a;}.tve_flt .tve_btn.tve_teal:hover{background-color:#008e85;}.tve_flt .tve_btn.tve_teal:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#007c72;}.tve_flt .tve_btn.tve_teal:hover a>div{border-right:1px solid #007c72;}.tve_flt .tve_btn.tve_white{background:#efefef;}.tve_flt .tve_btn.tve_white a{text-shadow:#fff 0px 0px 0px;}.tve_flt .tve_btn.tve_white.tve_btn7,.tve_flt .tve_btn.tve_white.tve_btn8{box-shadow:0 5px 0 #d9d9d9;border-bottom:1px solid #fbfbfb;}.tve_flt .tve_btn.tve_white.tve_btn7:hover,.tve_flt .tve_btn.tve_white.tve_btn8:hover{box-shadow:0 5px 0 #ddd;border-bottom:1px solid #fbfbfb;}.tve_flt .tve_btn.tve_white.tve_btn5.tve_nb .tve_btn_im .tve_btn_divider,.tve_flt .tve_btn.tve_white.tve_btn6.tve_nb .tve_btn_im .tve_btn_divider{background:#d9d9d9;}.tve_flt .tve_btn.tve_white.tve_btn5 a>div,.tve_flt .tve_btn.tve_white.tve_btn6 a>div{border-right:1px solid #d9d9d9;}.tve_flt .tve_btn.tve_white:hover{background-color:#f4f4f4;}.tve_flt .tve_btn.tve_white:hover.tve_nb .tve_btn_im .tve_btn_divider{background:#e2e2e2;}.tve_flt .tve_btn.tve_white:hover a>div{border-right:1px solid #e2e2e2;}.tve_flt .tve_ca{box-sizing:content-box;margin:40px auto 80px auto;padding:4%;position:relative;width:85%;}.tve_flt .tve_ca.tve_ca1 .tve_btn_cnt{margin-top:4%;}.tve_flt .tve_ca.tve_ca1 .tve_btn_cnt .tve_btn.tve_normalBtn{font-size:30px !important;line-height:100% !important;}.tve_flt .tve_ca.tve_ca1 .tve_btn_cnt .tve_btn.tve_normalBtn,.tve_flt .tve_ca.tve_ca4 .tve_btn_cnt .tve_btn.tve_normalBtn{display:inline-block;font-size:30px !important;line-height:100% !important;position:relative;width:auto;}.tve_flt .tve_ca.tve_ca3 .tve_btn.tve_normalBtn,.tve_flt .tve_ca.tve_ca4 .tve_btn.tve_normalBtn{font-size:30px;line-height:100% !important;}.tve_flt .tve_ca.tve_ca3 .tve_btn.tve_normalBtn .tve_ca_sp,.tve_flt .tve_ca.tve_ca4 .tve_btn.tve_normalBtn .tve_ca_sp{display:block;font-size:12px;}.tve_flt .tve_ca.tve_ca2 h1,.tve_flt .tve_ca.tve_ca2 h2,.tve_flt .tve_ca.tve_ca2 h3,.tve_flt .tve_ca.tve_ca2 h2.tve_ca_heading,.tve_flt .tve_ca.tve_ca3 h1,.tve_flt .tve_ca.tve_ca3 h2,.tve_flt .tve_ca.tve_ca3 h3,.tve_flt .tve_ca.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_ca.tve_ca4 h1,.tve_flt .tve_ca.tve_ca4 h2,.tve_flt .tve_ca.tve_ca4 h3,.tve_flt .tve_ca.tve_ca4 h2.tve_ca_heading{margin:0px !important;padding:0px !important;}.tve_flt .tve_ca p{color:#888787;margin:0px !important;padding:0px !important;}.tve_flt .tve_ca.tve_ca1 .tve_line{padding:0px 20px;margin:0 auto;}.tve_flt .tve_ca .tve_btn_cnt{height:0px;position:relative;bottom:0px;text-align:center;}.tve_flt .tve_black.tve_ca1 h1,.tve_flt .tve_black.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_black.tve_ca3 h1,.tve_flt .tve_black.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_black.tve_ca4 h1,.tve_flt .tve_black.tve_ca4 h2.tve_ca_heading{color:#1f1f1f !important;}.tve_flt .tve_black.tve_ca2,.tve_flt .tve_black.tve_ca3{border:2px solid #000;}.tve_flt .tve_black.tve_ca2 .tve_ca_t{background-color:#1f1f1f;}.tve_flt .tve_black.tve_ca3 .tve_ca_t .tve_btn{border:2px solid #000;}.tve_flt .tve_blue.tve_ca1 h1,.tve_flt .tve_blue.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_blue.tve_ca3 h1,.tve_flt .tve_blue.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_blue.tve_ca4 h1,.tve_flt .tve_blue.tve_ca4 h2.tve_ca_heading{color:#4e7ac7 !important;}.tve_flt .tve_blue.tve_ca2,.tve_flt .tve_blue.tve_ca3{border:2px solid #345da4;}.tve_flt .tve_blue.tve_ca2 .tve_ca_t{background-color:#4e7ac7;}.tve_flt .tve_blue.tve_ca3 .tve_ca_t .tve_btn{border:2px solid #345da4;}.tve_flt .tve_green.tve_ca1 h1,.tve_flt .tve_green.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_green.tve_ca3 h1,.tve_flt .tve_green.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_green.tve_ca4 h1,.tve_flt .tve_green.tve_ca4 h2.tve_ca_heading{color:#45bf55 !important;}.tve_flt .tve_green.tve_ca2,.tve_flt .tve_green.tve_ca3{border:2px solid #2ea43e;}.tve_flt .tve_green.tve_ca2 .tve_ca_t{background-color:#45bf55;}.tve_flt .tve_green.tve_ca3 .tve_ca_t .tve_btn{border:2px solid #2ea43e;}.tve_flt .tve_orange.tve_ca1 h1,.tve_flt .tve_orange.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_orange.tve_ca3 h1,.tve_flt .tve_orange.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_orange.tve_ca4 h1,.tve_flt .tve_orange.tve_ca4 h2.tve_ca_heading{color:#ff712c !important;}.tve_flt .tve_orange.tve_ca2,.tve_flt .tve_orange.tve_ca3{border:2px solid #d8591c;}.tve_flt .tve_orange.tve_ca2 .tve_ca_t{background-color:#ff712c;}.tve_flt .tve_orange.tve_ca3 .tve_ca_t .tve_btn{border:2px solid #d8591c;}.tve_flt .tve_purple.tve_ca1 h1,.tve_flt .tve_purple.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_purple.tve_ca3 h1,.tve_flt .tve_purple.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_purple.tve_ca4 h1,.tve_flt .tve_purple.tve_ca4 h2.tve_ca_heading{color:#9768d1 !important;}.tve_flt .tve_purple.tve_ca2,.tve_flt .tve_purple.tve_ca3{border:2px solid #7546b0;}.tve_flt .tve_purple.tve_ca2 .tve_ca_t{background-color:#9768d1;}.tve_flt .tve_purple.tve_ca3 .tve_ca_t .tve_btn{border:2px solid #7546b0;}.tve_flt .tve_red.tve_ca1 h1,.tve_flt .tve_red.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_red.tve_ca3 h1,.tve_flt .tve_red.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_red.tve_ca4 h1,.tve_flt .tve_red.tve_ca4 h2.tve_ca_heading{color:#e5372b !important;text-align:center;}.tve_flt .tve_red.tve_ca2,.tve_flt .tve_red.tve_ca3{border:2px solid #cd2b1f;}.tve_flt .tve_red.tve_ca2 .tve_ca_t{background-color:#e5372b;}.tve_flt .tve_red.tve_ca3 .tve_ca_t .tve_btn{border:2px solid #cd2b1f;}.tve_flt .tve_teal.tve_ca1 h1,.tve_flt .tve_teal.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_teal.tve_ca3 h1,.tve_flt .tve_teal.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_teal.tve_ca4 h1,.tve_flt .tve_teal.tve_ca4 h2.tve_ca_heading{color:#479486 !important;}.tve_flt .tve_teal.tve_ca2,.tve_flt .tve_teal.tve_ca3{border:2px solid teal;}.tve_flt .tve_teal.tve_ca2 .tve_ca_t{background-color:#479486;}.tve_flt .tve_teal.tve_ca3 .tve_ca_t .tve_btn{border:2px solid teal;}.tve_flt .tve_white.tve_ca1 h1,.tve_flt .tve_white.tve_ca1 h2.tve_ca_heading,.tve_flt .tve_white.tve_ca3 h1,.tve_flt .tve_white.tve_ca3 h2.tve_ca_heading,.tve_flt .tve_white.tve_ca4 h1,.tve_flt .tve_white.tve_ca4 h2.tve_ca_heading{color:#4c4c4c !important;}.tve_flt .tve_white.tve_ca2,.tve_flt .tve_white.tve_ca3{border:2px solid #efefef;}.tve_flt .tve_white.tve_ca2 .tve_ca_t{background-color:#efefef;}.tve_flt .tve_white.tve_ca2 .tve_ca_t a{color:#4c4c4c !important;}.tve_flt .tve_white.tve_ca3 .tve_ca_t .tve_btn{border:2px solid #efefef;}.tve_flt .tve_arrow_left,.tve_flt .tve_arrow_right{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrows.png");display:inline-block;height:84px;width:64px;}.tve_flt .tve_arrow_left.nitro-lazy,.tve_flt .tve_arrow_right.nitro-lazy{background-image:none !important;}.tve_flt .tve_arrow_left{background-position:0px 0px;}.tve_flt .tve_arrow_right{background-position:-64px 0px;}.tve_flt .tve_ca h1,.tve_flt .tve_ca h2,.tve_flt .tve_ca h3,.tve_flt .tve_ca h2.tve_ca_heading{color:#6b6b6b !important;}.tve_flt .tve_black.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_black.png");}.tve_flt .tve_black.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_blue.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_blue.png");}.tve_flt .tve_blue.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_green.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_green.png");}.tve_flt .tve_green.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_orange.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_orange.png");}.tve_flt .tve_orange.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_purple.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_purple.png");}.tve_flt .tve_purple.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_red.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_red.png");}.tve_flt .tve_red.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_teal.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_teal.png");}.tve_flt .tve_teal.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_white.tve_ca2 .tve_ca_t a>.tve_ca_sp{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/cta_arrow_white.png");}.tve_flt .tve_white.tve_ca2 .tve_ca_t a>.tve_ca_sp.nitro-lazy{background-image:none !important;}.tve_flt .tve_black.tve_ca2 .tve_ca_t a{color:#fff !important;}.tve_flt .tve_blue.tve_ca2 .tve_ca_t a{color:#fff !important;}.tve_flt .tve_green.tve_ca2 .tve_ca_t a{color:#fff !important;}.tve_flt .tve_orange.tve_ca2 .tve_ca_t a{color:#fff !important;}.tve_flt .tve_purple.tve_ca2 .tve_ca_t a{color:#fff !important;}.tve_flt .tve_red.tve_ca2 .tve_ca_t a{color:#fff !important;}.tve_flt .tve_teal.tve_ca2 .tve_ca_t a{color:#fff !important;}.tve_flt .tve_ca1{text-align:center;margin-bottom:100px;padding:0px 39px 19px 39px;}.tve_flt .tve_ca1 .tve_line{width:90%;}.tve_flt .tve_ca1 .tve_line h1,.tve_flt .tve_ca1 .tve_line h2.tve_ca_heading{margin-bottom:10px;}.tve_flt .tve_ca1 .tve_btn{top:0px;}.tve_flt .tve_ca2 .tve_ca_o{float:left;font-size:1em;line-height:1em;padding:1.2em 0em 0em 0em;width:70%;}.tve_flt .tve_ca2{height:97px;padding:0px 0px 0px 34px;margin:10px auto;}.tve_flt .tve_ca2 h3{margin-top:15px !important;}.tve_flt .tve_ca2 h3,.tve_flt .tve_ca2 p{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:90%;}.tve_flt .tve_ca2 .tve_ca_t{float:right;height:121px;margin-top:-12px;margin-right:-2px;padding-right:5px;position:relative;text-align:center;width:25%;}.tve_flt .tve_ca2 .tve_ca_t a{display:block;font-size:26px !important;line-height:26px !important;margin-top:18%;text-decoration:none;}.tve_flt .tve_ca2 .tve_ca_t a>.tve_ca_sp{background-repeat:no-repeat;background-position:left top;display:block;height:121px;min-width:64px;position:absolute;left:-64px;top:0px;}.tve_flt .tve_ca3{margin:0px auto 25px auto;text-align:center;position:relative;padding-bottom:10px;}.tve_flt .tve_ca3 .tve_ca_t{height:40px;text-align:center;}.tve_flt .tve_ca3 .tve_ca_t .tve_btn{bottom:-20px;margin-left:auto;margin-right:auto;position:relative;}.tve_flt .tve_ca3 .tve_ca_t .tve_btn .tve_btnLink{font-weight:bold;}.tve_flt .tve_ca3 .tve_ca_t .tve_btn .tve_btnLink>.tve_ca_sp{display:none;}.tve_flt .tve_ca4{margin:0px auto;text-align:center;}.tve_flt .tve_ca4 .tve_btn_cnt{background:#c5c5c5;height:1px;margin:60px auto 0px auto;width:70%;}.tve_flt .tve_ca4 .tve_btn.tve_normalBtn{bottom:30px;padding:0px 60px;}.tve_flt .tve_ca4 .tve_btn.tve_normalBtn .tve_btnLink>.tve_ca_sp{display:none;}.tve_flt .tve_black.tve_cb2 ul,.tve_flt .tve_black.tve_cb2 ol,.tve_flt .tve_black.tve_cb3 ul,.tve_flt .tve_black.tve_cb3 ol,.tve_flt .tve_black.tve_cb5 ul,.tve_flt .tve_black.tve_cb5 ol,.tve_flt .tve_black.tve_cb6 ul,.tve_flt .tve_black.tve_cb6 ol{color:#fff;}.tve_flt .tve_black.tve_ts2 ul,.tve_flt .tve_black.tve_ts2 ol,.tve_flt .tve_black.tve_ts3 ul,.tve_flt .tve_black.tve_ts3 ol,.tve_flt .tve_black.tve_ts4 ul,.tve_flt .tve_black.tve_ts4 ol,.tve_flt .tve_black.tve_ts9 ul,.tve_flt .tve_black.tve_ts9 ol{color:#fff;}.tve_flt .tve_blue.tve_cb2 ul,.tve_flt .tve_blue.tve_cb2 ol,.tve_flt .tve_blue.tve_cb3 ul,.tve_flt .tve_blue.tve_cb3 ol,.tve_flt .tve_blue.tve_cb5 ul,.tve_flt .tve_blue.tve_cb5 ol,.tve_flt .tve_blue.tve_cb6 ul,.tve_flt .tve_blue.tve_cb6 ol{color:#fff;}.tve_flt .tve_blue.tve_ts2 ul,.tve_flt .tve_blue.tve_ts2 ol,.tve_flt .tve_blue.tve_ts3 ul,.tve_flt .tve_blue.tve_ts3 ol,.tve_flt .tve_blue.tve_ts4 ul,.tve_flt .tve_blue.tve_ts4 ol,.tve_flt .tve_blue.tve_ts9 ul,.tve_flt .tve_blue.tve_ts9 ol{color:#fff;}.tve_flt .tve_green.tve_cb2 ul,.tve_flt .tve_green.tve_cb2 ol,.tve_flt .tve_green.tve_cb3 ul,.tve_flt .tve_green.tve_cb3 ol,.tve_flt .tve_green.tve_cb5 ul,.tve_flt .tve_green.tve_cb5 ol,.tve_flt .tve_green.tve_cb6 ul,.tve_flt .tve_green.tve_cb6 ol{color:#fff;}.tve_flt .tve_green.tve_ts2 ul,.tve_flt .tve_green.tve_ts2 ol,.tve_flt .tve_green.tve_ts3 ul,.tve_flt .tve_green.tve_ts3 ol,.tve_flt .tve_green.tve_ts4 ul,.tve_flt .tve_green.tve_ts4 ol,.tve_flt .tve_green.tve_ts9 ul,.tve_flt .tve_green.tve_ts9 ol{color:#fff;}.tve_flt .tve_orange.tve_cb2 ul,.tve_flt .tve_orange.tve_cb2 ol,.tve_flt .tve_orange.tve_cb3 ul,.tve_flt .tve_orange.tve_cb3 ol,.tve_flt .tve_orange.tve_cb5 ul,.tve_flt .tve_orange.tve_cb5 ol,.tve_flt .tve_orange.tve_cb6 ul,.tve_flt .tve_orange.tve_cb6 ol{color:#fff;}.tve_flt .tve_orange.tve_ts2 ul,.tve_flt .tve_orange.tve_ts2 ol,.tve_flt .tve_orange.tve_ts3 ul,.tve_flt .tve_orange.tve_ts3 ol,.tve_flt .tve_orange.tve_ts4 ul,.tve_flt .tve_orange.tve_ts4 ol,.tve_flt .tve_orange.tve_ts9 ul,.tve_flt .tve_orange.tve_ts9 ol{color:#fff;}.tve_flt .tve_purple.tve_cb2 ul,.tve_flt .tve_purple.tve_cb2 ol,.tve_flt .tve_purple.tve_cb3 ul,.tve_flt .tve_purple.tve_cb3 ol,.tve_flt .tve_purple.tve_cb5 ul,.tve_flt .tve_purple.tve_cb5 ol,.tve_flt .tve_purple.tve_cb6 ul,.tve_flt .tve_purple.tve_cb6 ol{color:#fff;}.tve_flt .tve_purple.tve_ts2 ul,.tve_flt .tve_purple.tve_ts2 ol,.tve_flt .tve_purple.tve_ts3 ul,.tve_flt .tve_purple.tve_ts3 ol,.tve_flt .tve_purple.tve_ts4 ul,.tve_flt .tve_purple.tve_ts4 ol,.tve_flt .tve_purple.tve_ts9 ul,.tve_flt .tve_purple.tve_ts9 ol{color:#fff;}.tve_flt .tve_red.tve_cb2 ul,.tve_flt .tve_red.tve_cb2 ol,.tve_flt .tve_red.tve_cb3 ul,.tve_flt .tve_red.tve_cb3 ol,.tve_flt .tve_red.tve_cb5 ul,.tve_flt .tve_red.tve_cb5 ol,.tve_flt .tve_red.tve_cb6 ul,.tve_flt .tve_red.tve_cb6 ol{color:#fff;}.tve_flt .tve_red.tve_ts2 ul,.tve_flt .tve_red.tve_ts2 ol,.tve_flt .tve_red.tve_ts3 ul,.tve_flt .tve_red.tve_ts3 ol,.tve_flt .tve_red.tve_ts4 ul,.tve_flt .tve_red.tve_ts4 ol,.tve_flt .tve_red.tve_ts9 ul,.tve_flt .tve_red.tve_ts9 ol{color:#fff;}.tve_flt .tve_teal.tve_cb2 ul,.tve_flt .tve_teal.tve_cb2 ol,.tve_flt .tve_teal.tve_cb3 ul,.tve_flt .tve_teal.tve_cb3 ol,.tve_flt .tve_teal.tve_cb5 ul,.tve_flt .tve_teal.tve_cb5 ol,.tve_flt .tve_teal.tve_cb6 ul,.tve_flt .tve_teal.tve_cb6 ol{color:#fff;}.tve_flt .tve_teal.tve_ts2 ul,.tve_flt .tve_teal.tve_ts2 ol,.tve_flt .tve_teal.tve_ts3 ul,.tve_flt .tve_teal.tve_ts3 ol,.tve_flt .tve_teal.tve_ts4 ul,.tve_flt .tve_teal.tve_ts4 ol,.tve_flt .tve_teal.tve_ts9 ul,.tve_flt .tve_teal.tve_ts9 ol{color:#fff;}.tve_flt .tve_cb{width:auto;}.tve_flt .tve_cb h1,.tve_flt .tve_cb h2.tve_ca_heading{color:#fff;}.tve_flt .tve_cb .tve_cb_cnt{padding:20px;}.tve_flt .tve_black.tve_cb.tve_cb1,.tve_flt .tve_black.tve_cb.tve_cb3,.tve_flt .tve_black.tve_cb.tve_cb4,.tve_flt .tve_black.tve_cb.tve_cb6{border:2px solid #1f1f1f;}.tve_flt .tve_black.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_black.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_black.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_black.tve_cb.tve_cb2,.tve_flt .tve_black.tve_cb.tve_cb5,.tve_flt .tve_black.tve_cb.tve_cb_symbol{background:#1f1f1f;}.tve_flt .tve_black.tve_cb.tve_cb2 hr{background:#131313;}.tve_flt .tve_black.tve_cb .tve_hd h3{text-shadow:0 1px 0 #0b0b0b;color:#fff;margin:0px !important;}.tve_flt .tve_black.tve_cb.tve_cb3,.tve_flt .tve_black.tve_cb.tve_cb6{background:#2f2f2f;}.tve_flt .tve_black.tve_cb5 .tve_cb_cnt p{text-shadow:0 1px 0 #0b0b0b;color:#fff;}.tve_flt .tve_black.tve_cb_symbol .tve_cb_cnt p,.tve_flt .tve_black.tve_cb_symbol li{color:#fff;}.tve_flt .tve_blue.tve_cb.tve_cb1,.tve_flt .tve_blue.tve_cb.tve_cb3,.tve_flt .tve_blue.tve_cb.tve_cb4,.tve_flt .tve_blue.tve_cb.tve_cb6{border:2px solid #4e7ac7;}.tve_flt .tve_blue.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_blue.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_blue.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_blue.tve_cb.tve_cb2,.tve_flt .tve_blue.tve_cb.tve_cb5,.tve_flt .tve_blue.tve_cb.tve_cb_symbol{background:#4e7ac7;}.tve_flt .tve_blue.tve_cb.tve_cb2 hr{background:#3966b5;}.tve_flt .tve_blue.tve_cb.tve_cb3,.tve_flt .tve_blue.tve_cb.tve_cb6{background:#608ad2;}.tve_flt .tve_blue.tve_cb .tve_hd h3{text-shadow:0 1px 0 #2d59a6;color:#fff;margin:0px !important;}.tve_flt .tve_blue.tve_cb5 .tve_cb_cnt p{text-shadow:0 1px 0 #2d59a6;color:#fff;}.tve_flt .tve_blue.tve_cb_symbol .tve_cb_cnt p,.tve_flt .tve_blue.tve_cb_symbol li{color:#fff;}.tve_flt .tve_green.tve_cb.tve_cb1,.tve_flt .tve_green.tve_cb.tve_cb3,.tve_flt .tve_green.tve_cb.tve_cb4,.tve_flt .tve_green.tve_cb.tve_cb6{border:2px solid #45bf55;}.tve_flt .tve_green.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_green.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_green.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_green.tve_cb.tve_cb2,.tve_flt .tve_green.tve_cb.tve_cb5,.tve_flt .tve_green.tve_cb.tve_cb_symbol{background:#45bf55;}.tve_flt .tve_green.tve_cb.tve_cb2 hr{background:#2fa73f;}.tve_flt .tve_green.tve_cb.tve_cb3,.tve_flt .tve_green.tve_cb.tve_cb6{background:#52ce62;}.tve_flt .tve_green.tve_cb .tve_hd h3{text-shadow:0 1px 0 #279435;color:#fff;margin:0px !important;}.tve_flt .tve_green.tve_cb5 .tve_cb_cnt p{text-shadow:0 1px 0 #279435;color:#fff;}.tve_flt .tve_green.tve_cb_symbol .tve_cb_cnt p,.tve_flt .tve_green.tve_cb_symbol li{color:#fff;}.tve_flt .tve_orange.tve_cb.tve_cb1,.tve_flt .tve_orange.tve_cb.tve_cb3,.tve_flt .tve_orange.tve_cb.tve_cb4,.tve_flt .tve_orange.tve_cb.tve_cb6{border:2px solid #ff712c;}.tve_flt .tve_orange.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_orange.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_orange.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_orange.tve_cb.tve_cb2,.tve_flt .tve_orange.tve_cb.tve_cb5,.tve_flt .tve_orange.tve_cb.tve_cb_symbol{background:#ff712c;}.tve_flt .tve_orange.tve_cb.tve_cb2 hr{background:#ed6321;}.tve_flt .tve_orange.tve_cb.tve_cb3,.tve_flt .tve_orange.tve_cb.tve_cb6{background:#fe8f59;}.tve_flt .tve_orange.tve_cb .tve_hd h3{text-shadow:0 1px 0 #e05c1c;color:#fff;margin:0px !important;}.tve_flt .tve_orange.tve_cb5 .tve_cb_cnt p{text-shadow:0 1px 0 #e05c1c;color:#fff;}.tve_flt .tve_orange.tve_cb_symbol .tve_cb_cnt p,.tve_flt .tve_orange.tve_cb_symbol li{color:#fff;}.tve_flt .tve_purple.tve_cb.tve_cb1,.tve_flt .tve_purple.tve_cb.tve_cb3,.tve_flt .tve_purple.tve_cb.tve_cb4,.tve_flt .tve_purple.tve_cb.tve_cb6{border:2px solid #9768d1;}.tve_flt .tve_purple.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_purple.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_purple.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_purple.tve_cb.tve_cb2,.tve_flt .tve_purple.tve_cb.tve_cb5,.tve_flt .tve_purple.tve_cb.tve_cb_symbol{background:#9768d1;}.tve_flt .tve_purple.tve_cb.tve_cb2 hr{background:#8858c2;}.tve_flt .tve_purple.tve_cb.tve_cb3,.tve_flt .tve_purple.tve_cb.tve_cb6{background:#a477dc;}.tve_flt .tve_purple.tve_cb .tve_hd h3{text-shadow:0 1px 0 #7044a7;color:#fff;margin:0px !important;}.tve_flt .tve_purple.tve_cb5 .tve_cb_cnt p{text-shadow:0 1px 0 #7044a7;color:#fff;}.tve_flt .tve_purple.tve_cb_symbol .tve_cb_cnt p,.tve_flt .tve_purple.tve_cb_symbol li{color:#fff;}.tve_flt .tve_red.tve_cb.tve_cb1,.tve_flt .tve_red.tve_cb.tve_cb3,.tve_flt .tve_red.tve_cb.tve_cb4,.tve_flt .tve_red.tve_cb.tve_cb6{border:2px solid #e5372b;}.tve_flt .tve_red.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_red.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_red.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_red.tve_cb.tve_cb2,.tve_flt .tve_red.tve_cb.tve_cb5,.tve_flt .tve_red.tve_cb.tve_cb_symbol{background:#e5372b;}.tve_flt .tve_red.tve_cb.tve_cb2 hr{background:#d22115;}.tve_flt .tve_red.tve_cb.tve_cb3,.tve_flt .tve_red.tve_cb.tve_cb6{background:#f54d42;}.tve_flt .tve_red.tve_cb .tve_hd h3{text-shadow:0 1px 0 #a1180f;color:#fff;margin:0px !important;}.tve_flt .tve_red.tve_cb5 .tve_cb_cnt p{text-shadow:0 1px 0 #a1180f;color:#fff;}.tve_flt .tve_red.tve_cb_symbol .tve_cb_cnt p,.tve_flt .tve_red.tve_cb_symbol li{color:#fff;}.tve_flt .tve_teal.tve_cb.tve_cb1,.tve_flt .tve_teal.tve_cb.tve_cb3,.tve_flt .tve_teal.tve_cb.tve_cb4,.tve_flt .tve_teal.tve_cb.tve_cb6{border:2px solid #479486;}.tve_flt .tve_teal.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_teal.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_teal.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_teal.tve_cb.tve_cb2,.tve_flt .tve_teal.tve_cb.tve_cb5,.tve_flt .tve_teal.tve_cb.tve_cb_symbol{background:#479486;}.tve_flt .tve_teal.tve_cb.tve_cb2 hr{background:#307c6e;}.tve_flt .tve_teal.tve_cb.tve_cb3,.tve_flt .tve_teal.tve_cb.tve_cb6{background:#57a798;}.tve_flt .tve_teal.tve_cb .tve_hd h3{text-shadow:0 1px 0 #226055;color:#fff;margin:0px !important;}.tve_flt .tve_teal.tve_cb5 .tve_cb_cnt p{text-shadow:0 1px 0 #226055;color:#fff;}.tve_flt .tve_teal.tve_cb_symbol .tve_cb_cnt p,.tve_flt .tve_teal.tve_cb_symbol li{color:#fff;}.tve_flt .tve_white.tve_cb.tve_cb1,.tve_flt .tve_white.tve_cb.tve_cb3,.tve_flt .tve_white.tve_cb.tve_cb4,.tve_flt .tve_white.tve_cb.tve_cb6{border:2px solid #efefef;}.tve_flt .tve_white.tve_cb.tve_cb1 .tve_hd,.tve_flt .tve_white.tve_cb.tve_cb2 .tve_hd,.tve_flt .tve_white.tve_cb.tve_cb3 .tve_hd,.tve_flt .tve_white.tve_cb.tve_cb5,.tve_flt .tve_white.tve_cb.tve_cb_symbol{background:#efefef;}.tve_flt .tve_white.tve_cb .tve_hd h3,.tve_flt .tve_white.tve_cb .tve_cb_cnt p{color:#525151;margin:0px;}.tve_flt .tve_white.tve_cb.tve_cb2{background:#efefef;border:2px solid #d3d1d1;}.tve_flt .tve_white.tve_cb.tve_cb2 hr{background:#d3d1d1;}.tve_flt .tve_white.tve_cb.tve_cb3,.tve_flt .tve_white.tve_cb.tve_cb6{background:#fff;}.tve_flt .tve_white.tve_cb.tve_cb5{border:2px solid #d3d1d1;}.tve_flt .tve_cb1{overflow:hidden;}.tve_flt .tve_cb2 .tve_cb_cnt p{color:#fff;}.tve_flt .tve_cb2 h3{color:#fff;}.tve_flt .tve_cb2 hr{border:none;height:1px;margin:5px 0px 0px 0px !important;width:100%;}.tve_flt .tve_cb3{margin:0 auto;width:inherit;}.tve_flt .tve_cb3>hr{display:none;}.tve_flt .tve_cb3 .tve_hd{margin:23px -17px 0px -17px;width:99.3%;}.tve_flt .tve_cb3 .tve_cb_cnt p,.tve_flt .tve_cb6 .tve_cb_cnt p{color:#fff;}.tve_flt .tve_black.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.tve_flt .tve_blue.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.tve_flt .tve_green.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.tve_flt .tve_orange.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.tve_flt .tve_purple.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.tve_flt .tve_red.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.tve_flt .tve_teal.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.tve_flt .tve_white.tve_cb.tve_cb4 div.tve_hd{padding:0px;}.thrv_columns .tve_flt .tve_ts{box-sizing:border-box !important;}.thrv_columns .tve_flt .tve_ts div{box-sizing:border-box !important;}.tve_flt .tve_ts.tve_ts1{margin-bottom:40px;}.tve_flt .tve_ts.tve_black .tve_ts_o img,.tve_flt .tve_ts.tve_black.tve_ts1,.tve_flt .tve_ts.tve_black .tve_ts_imc{border:2px solid #1f1f1f;}.tve_flt .tve_ts.tve_black.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_black.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_black.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_black.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_black.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_black.tve_ts9 .tve_ts_cn{background-color:#1f1f1f;}.tve_flt .tve_ts.tve_black.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_black.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_black.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_black.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_black.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_black.tve_ts9 .tve_ts_cn p{color:#fef1f1;}.tve_flt .tve_ts.tve_black.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_black.tve_ts3 .tve_ts_o{border-bottom:1px solid #131313;}.tve_flt .tve_ts.tve_blue .tve_ts_o img,.tve_flt .tve_ts.tve_blue.tve_ts1,.tve_flt .tve_ts.tve_blue .tve_ts_imc{border:2px solid #4e7ac7;}.tve_flt .tve_ts.tve_blue.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_blue.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_blue.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_blue.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_blue.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_blue.tve_ts9 .tve_ts_cn{background-color:#4e7ac7;}.tve_flt .tve_ts.tve_blue.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_blue.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_blue.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_blue.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_blue.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_blue.tve_ts9 .tve_ts_cn p{color:#fff;}.tve_flt .tve_ts.tve_blue.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_blue.tve_ts3 .tve_ts_o{border-bottom:1px solid #3764b2;}.tve_flt .tve_ts.tve_green .tve_ts_o img,.tve_flt .tve_ts.tve_green.tve_ts1,.tve_flt .tve_ts.tve_green .tve_ts_imc{border:2px solid #45bf55;}.tve_flt .tve_ts.tve_green.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_green.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_green.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_green.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_green.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_green.tve_ts9 .tve_ts_cn{background-color:#45bf55;}.tve_flt .tve_ts.tve_green.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_green.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_green.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_green.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_green.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_green.tve_ts9 .tve_ts_cn p{color:#ebfded;}.tve_flt .tve_ts.tve_green.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_green.tve_ts3 .tve_ts_o{border-bottom:1px solid #2ea53e;}.tve_flt .tve_ts.tve_orange .tve_ts_o img,.tve_flt .tve_ts.tve_orange.tve_ts1,.tve_flt .tve_ts.tve_orange .tve_ts_imc{border:2px solid #ff712c;}.tve_flt .tve_ts.tve_orange.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_orange.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_orange.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_orange.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_orange.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_orange.tve_ts9 .tve_ts_cn{background-color:#ff712c;}.tve_flt .tve_ts.tve_orange.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_orange.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_orange.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_orange.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_orange.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_orange.tve_ts9 .tve_ts_cn p{color:#fdf7f4;}.tve_flt .tve_ts.tve_orange.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_orange.tve_ts3 .tve_ts_o{border-bottom:1px solid #e85c18;}.tve_flt .tve_ts.tve_purple .tve_ts_o img,.tve_flt .tve_ts.tve_purple.tve_ts1,.tve_flt .tve_ts.tve_purple .tve_ts_imc{border:2px solid #9768d1;}.tve_flt .tve_ts.tve_purple.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_purple.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_purple.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_purple.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_purple.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_purple.tve_ts9 .tve_ts_cn{background-color:#9768d1;}.tve_flt .tve_ts.tve_purple.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_purple.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_purple.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_purple.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_purple.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_purple.tve_ts9 .tve_ts_cn p{color:#f6eeff;}.tve_flt .tve_ts.tve_purple.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_purple.tve_ts3 .tve_ts_o{border-bottom:1px solid #8858c2;}.tve_flt .tve_ts.tve_red .tve_ts_o img,.tve_flt .tve_ts.tve_red.tve_ts1,.tve_flt .tve_ts.tve_red .tve_ts_imc{border:2px solid #e5372b;}.tve_flt .tve_ts.tve_red.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_red.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_red.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_red.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_red.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_red.tve_ts9 .tve_ts_cn{background-color:#e5372b;}.tve_flt .tve_ts.tve_red.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_red.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_red.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_red.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_red.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_red.tve_ts9 .tve_ts_cn p{color:#fdeeed;}.tve_flt .tve_ts.tve_red.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_red.tve_ts3 .tve_ts_o{border-bottom:1px solid #d22115;}.tve_flt .tve_ts.tve_teal .tve_ts_o img,.tve_flt .tve_ts.tve_teal.tve_ts1,.tve_flt .tve_ts.tve_teal .tve_ts_imc{border:2px solid #479486;}.tve_flt .tve_ts.tve_teal.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_teal.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_teal.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_teal.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_teal.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_teal.tve_ts9 .tve_ts_cn{background-color:#479486;}.tve_flt .tve_ts.tve_teal.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_teal.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_teal.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_teal.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_teal.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_teal.tve_ts9 .tve_ts_cn p{color:#effefb;}.tve_flt .tve_ts.tve_teal.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_teal.tve_ts3 .tve_ts_o{border-bottom:1px solid #286f62;}.tve_flt .tve_ts.tve_white .tve_ts_o img,.tve_flt .tve_ts.tve_white.tve_ts1,.tve_flt .tve_ts.tve_white .tve_ts_imc{border:2px solid #efefef;}.tve_flt .tve_ts.tve_white.tve_ts2 .tve_ts_cn,.tve_flt .tve_ts.tve_white.tve_ts3 .tve_ts_cn,.tve_flt .tve_ts.tve_white.tve_ts3 .tve_ts_o,.tve_flt .tve_ts.tve_white.tve_ts1 .tve_ts_o,.tve_flt .tve_ts.tve_white.tve_ts4 .tve_ts_cn,.tve_flt .tve_ts.tve_white.tve_ts9 .tve_ts_cn{background-color:#efefef;}.tve_flt .tve_ts.tve_white.tve_ts2 .tve_ts_cn p,.tve_flt .tve_ts.tve_white.tve_ts3 .tve_ts_cn p,.tve_flt .tve_ts.tve_white.tve_ts3 .tve_ts_o p,.tve_flt .tve_ts.tve_white.tve_ts1 .tve_ts_o p,.tve_flt .tve_ts.tve_white.tve_ts4 .tve_ts_cn p,.tve_flt .tve_ts.tve_white.tve_ts9 .tve_ts_cn p{color:#4e4e4e;}.tve_flt .tve_ts.tve_white.tve_ts2 .tve_ts_o,.tve_flt .tve_ts.tve_white.tve_ts3 .tve_ts_o{border-bottom:1px solid #d3d1d1;}.tve_flt .tve_ts .tve_ts_ql{float:left;display:block;height:19px;margin-right:20px;}.tve_flt .tve_ts .tve_ts_cn{padding:40px;}.tve_flt .tve_ts .tve_ts_o>span{font-size:1em;}.tve_flt .tve_ts .tve_ts_o>span>b{font-size:1.3em;}.tve_flt .tve_ts4 .tve_ts_cn,.tve_flt .tve_ts9 .tve_ts_cn{padding-bottom:20px;}.tve_flt .tve_tS:before{content:"" !important;}.tve_flt .tve_ts_c{display:block;height:19px;width:21px;}.tve_flt .tve_ts .tve_ts_qr{display:block;height:19px;width:27px;}.tve_flt .tve_ts .tve_ts_qr{float:right;margin-top:-15px;}.tve_flt .tve_ts .tve_ts_ql{width:27px;}.tve_flt .tve_ts2 .tve_ts_o,.tve_flt .tve_ts4 .tve_ts_o,.tve_flt .tve_ts9 .tve_ts_o{text-align:center;}.tve_flt .tve_ts2 .tve_ts_o .tve_ts_imc,.tve_flt .tve_ts4 .tve_ts_o .tve_ts_imc,.tve_flt .tve_ts9 .tve_ts_o .tve_ts_imc{border-radius:100px !important;display:inline-block;}.tve_flt .tve_ts2 .tve_ts_o img,.tve_flt .tve_ts4 .tve_ts_o img,.tve_flt .tve_ts9 .tve_ts_o img{border-radius:100px !important;border:none !important;display:block;max-height:104px;margin:0 auto;max-width:104px;}.tve_flt .tve_ts1{padding:40px;position:relative;}.tve_flt .tve_ts1 .tve_ts_o{display:table;position:absolute;left:-2px;bottom:-34px;height:63px;}.tve_flt .tve_ts1 .tve_ts_o img{float:left;max-height:63px;max-width:63px;}.tve_flt .tve_ts1 .tve_ts_o>span{color:#fff;clear:right;display:block;display:table-cell;padding:0px 0px;padding:0px 20px;vertical-align:middle;text-align:left;line-height:1.5em;}.tve_flt .tve_black.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_black.png") no-repeat center top;}.tve_flt .tve_black.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_black.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_black.png") no-repeat center top;}.tve_flt .tve_black.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_black .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_black.png") no-repeat center top;}.tve_flt .tve_black .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_black .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_black.png");}.tve_flt .tve_black .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_blue.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_blue.png") no-repeat center top;}.tve_flt .tve_blue.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_blue.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_blue.png") no-repeat center top;}.tve_flt .tve_blue.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_blue .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_blue.png") no-repeat center top;}.tve_flt .tve_blue .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_blue .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_blue.png");}.tve_flt .tve_blue .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_green.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_green.png") no-repeat center top;}.tve_flt .tve_green.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_green.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_green.png") no-repeat center top;}.tve_flt .tve_green.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_green .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_green.png") no-repeat center top;}.tve_flt .tve_green .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_green .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_green.png");}.tve_flt .tve_green .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_orange.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/source/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_orange.png") no-repeat center top;}.tve_flt .tve_orange.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_orange.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/source/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_orange.png") no-repeat center top;}.tve_flt .tve_orange.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_orange .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_orange.png") no-repeat center top;}.tve_flt .tve_orange .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_orange .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_orange.png");}.tve_flt .tve_orange .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_purple.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_purple.png") no-repeat center top;}.tve_flt .tve_purple.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_purple.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_purple.png") no-repeat center top;}.tve_flt .tve_purple.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_purple .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_purple.png") no-repeat center top;}.tve_flt .tve_purple .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_purple .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_purple.png");}.tve_flt .tve_purple .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_red.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_red.png") no-repeat center top;}.tve_flt .tve_red.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_red.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_red.png") no-repeat center top;}.tve_flt .tve_red.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_red .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_red.png") no-repeat center top;}.tve_flt .tve_red .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_red .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_red.png");}.tve_flt .tve_red .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_teal.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_teal.png") no-repeat center top;}.tve_flt .tve_teal.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_teal.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_teal.png") no-repeat center top;}.tve_flt .tve_teal.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_teal .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_teal.png") no-repeat center top;}.tve_flt .tve_teal .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_teal .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_teal.png");}.tve_flt .tve_teal .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_white.tve_ts4 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_white.png") no-repeat center top;}.tve_flt .tve_white.tve_ts4 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_white.tve_ts9 .tve_ts_c{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/qc_r_white.png") no-repeat center top;}.tve_flt .tve_white.tve_ts9 .tve_ts_c.nitro-lazy{background-image:none !important;}.tve_flt .tve_white .tve_ts_qr{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_r_white.png") no-repeat center top;}.tve_flt .tve_white .tve_ts_qr.nitro-lazy{background-image:none !important;}.tve_flt .tve_white .tve_ts_ql{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/q_l_white.png");}.tve_flt .tve_white .tve_ts_ql.nitro-lazy{background-image:none !important;}.tve_flt .tve_black.tve_ts2 .tve_ts_o,.tve_flt .tve_black.tve_ts3 .tve_ts_o{color:#fff !important;}.tve_flt .tve_blue.tve_ts2 .tve_ts_o,.tve_flt .tve_blue.tve_ts3 .tve_ts_o{color:#fff !important;}.tve_flt .tve_green.tve_ts2 .tve_ts_o,.tve_flt .tve_green.tve_ts3 .tve_ts_o{color:#fff !important;}.tve_flt .tve_orange.tve_ts2 .tve_ts_o,.tve_flt .tve_orange.tve_ts3 .tve_ts_o{color:#fff !important;}.tve_flt .tve_purple.tve_ts2 .tve_ts_o,.tve_flt .tve_purple.tve_ts3 .tve_ts_o{color:#fff !important;}.tve_flt .tve_red.tve_ts2 .tve_ts_o,.tve_flt .tve_red.tve_ts3 .tve_ts_o{color:#fff !important;}.tve_flt .tve_teal.tve_ts2 .tve_ts_o,.tve_flt .tve_teal.tve_ts3 .tve_ts_o{color:#fff !important;}.tve_flt .tve_ts2{margin-top:60px;position:relative;}.tve_flt .tve_ts2 .tve_ts_o{margin-left:auto;margin-right:auto;position:absolute;top:-50px;left:0px;right:0px;padding-bottom:10px;text-align:center;min-width:40%;}.tve_flt .tve_ts2 .tve_ts_o b{display:block;}.tve_flt .tve_ts2 .tve_ts_o span{line-height:1.5em;}.tve_flt .tve_ts2 .tve_ts_cn{margin-top:10px;padding-top:130px;}.tve_flt .tve_ts2 .tve_ts_cn p:first-of-type{margin-top:0px !important;}.tve_flt .tve_ts2.tve_white .tve_ts_o{color:#4e4e4e !important;}.tve_flt .tve_ts2.tve_np{margin-top:0px;}.tve_flt .tve_ts3 .tve_ts_o{border-top-left-radius:2px;border-top-right-radius:2px;margin:0 auto;padding:10px 40px;}.tve_flt .tve_ts3 .tve_ts_o img{max-height:68px;float:left;max-width:68px;}.tve_flt .tve_ts3 .tve_ts_o>span{display:block;float:left;margin-left:20px;padding-top:15px;line-height:1.5em;}.tve_flt .tve_ts3 .tve_ts_o>span>b{display:block;}.tve_flt .tve_ts3 .tve_ts_o:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.tve_flt .tve_ts3 .tve_ts_cn{border-bottom-left-radius:2px;border-bottom-right-radius:2px;margin-left:auto;margin-right:auto;}.tve_flt .tve_ts3 .tve_ts_cn p:first-of-type{margin-top:0px !important;}.tve_flt .tve_ts4,.tve_flt .tve_ts9{width:100%;}.tve_flt .tve_ts4 .tve_ts_cn,.tve_flt .tve_ts9 .tve_ts_cn{width:78%;}.thrv_columns .tve_flt .tve_ts4 .tve_ts_cn,.thrv_columns .tve_flt .tve_ts9 .tve_ts_cn{width:84%;}.tve_flt .tve_ts4 .tve_ts_cn p:first-of-type,.tve_flt .tve_ts9 .tve_ts_cn p:first-of-type{margin-top:0px !important;}.tve_flt .tve_ts4 .tve_ts_o,.tve_flt .tve_ts9 .tve_ts_o{color:#3b3b3b;float:left;width:17%;}.thrv_columns .tve_flt .tve_ts4 .tve_ts_o,.thrv_columns .tve_flt .tve_ts9 .tve_ts_o{width:30%;}.tve_flt .tve_ts4 .tve_ts_o>span,.tve_flt .tve_ts9 .tve_ts_o>span{display:block;text-align:center;line-height:1.5em;}.tve_flt .tve_ts4 .tve_ts_o>span>b,.tve_flt .tve_ts9 .tve_ts_o>span>b{display:block;}.tve_flt .tve_ts4 .tve_ts_t,.tve_flt .tve_ts9 .tve_ts_t{float:left;width:83%;}.thrv_columns .tve_flt .tve_ts4 .tve_ts_t,.thrv_columns .tve_flt .tve_ts9 .tve_ts_t{width:70%;}.tve_flt .tve_ts2.tve_np .tve_ts_o{top:30px;}.tve_flt .tve_ts3.tve_np .tve_ts_o{padding-bottom:40px;}.tve_flt .tve_ts3.tve_np .tve_ts_o>span{margin-left:0px;}.tve_flt .tve_ts4.tve_np .tve_ts_o,.tve_flt .tve_ts9.tve_np .tve_ts_o{top:30px;}.tve_flt .tve_black.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_black.png") !important;}.tve_flt .tve_black.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_black.png") !important;}.tve_flt .tve_black.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_black.png") !important;}.tve_flt .tve_black.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_black.png") !important;}.tve_flt .tve_black.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_black.png") !important;}.tve_flt .tve_black.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_black.png") !important;}.tve_flt .tve_black.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_black.png") !important;}.tve_flt .tve_blue.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_blue.png") !important;}.tve_flt .tve_blue.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/source/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_blue.png") !important;}.tve_flt .tve_blue.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_blue.png") !important;}.tve_flt .tve_blue.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_blue.png") !important;}.tve_flt .tve_blue.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_blue.png") !important;}.tve_flt .tve_blue.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_blue.png") !important;}.tve_flt .tve_blue.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_blue.png") !important;}.tve_flt .tve_green.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_green.png") !important;}.tve_flt .tve_green.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_green.png") !important;}.tve_flt .tve_green.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_green.png") !important;}.tve_flt .tve_green.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_green.png") !important;}.tve_flt .tve_green.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_green.png") !important;}.tve_flt .tve_green.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_green.png") !important;}.tve_flt .tve_green.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_green.png") !important;}.tve_flt .tve_orange.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_orange.png") !important;}.tve_flt .tve_orange.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_orange.png") !important;}.tve_flt .tve_orange.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_orange.png") !important;}.tve_flt .tve_orange.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_orange.png") !important;}.tve_flt .tve_orange.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_orange.png") !important;}.tve_flt .tve_orange.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_orange.png") !important;}.tve_flt .tve_orange.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_orange.png") !important;}.tve_flt .tve_purple.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_purple.png") !important;}.tve_flt .tve_purple.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_purple.png") !important;}.tve_flt .tve_purple.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_purple.png") !important;}.tve_flt .tve_purple.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_purple.png") !important;}.tve_flt .tve_purple.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_purple.png") !important;}.tve_flt .tve_purple.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_purple.png") !important;}.tve_flt .tve_purple.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_purple.png") !important;}.tve_flt .tve_red.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_red.png") !important;}.tve_flt .tve_red.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_red.png") !important;}.tve_flt .tve_red.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_red.png") !important;}.tve_flt .tve_red.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_red.png") !important;}.tve_flt .tve_red.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_red.png") !important;}.tve_flt .tve_red.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_red.png") !important;}.tve_flt .tve_red.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_red.png") !important;}.tve_flt .tve_teal.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_teal.png") !important;}.tve_flt .tve_teal.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_teal.png") !important;}.tve_flt .tve_teal.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_teal.png") !important;}.tve_flt .tve_teal.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_teal.png") !important;}.tve_flt .tve_teal.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_teal.png") !important;}.tve_flt .tve_teal.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_teal.png") !important;}.tve_flt .tve_teal.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_teal.png") !important;}.tve_flt .tve_white.tve_ul1 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul1_f_white.png") !important;}.tve_flt .tve_white.tve_ul2 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul2_f_white.png") !important;}.tve_flt .tve_white.tve_ul3 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul3_f_white.png") !important;}.tve_flt .tve_white.tve_ul4 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul4_f_white.png") !important;}.tve_flt .tve_white.tve_ul5 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul5_f_white.png") !important;}.tve_flt .tve_white.tve_ul6 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul6_f_white.png") !important;}.tve_flt .tve_white.tve_ul7 li{list-style-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/ul7_f_white.png") !important;}.tve_flt .tve_sep{border:none;margin:0 !important;max-width:100% !important;}.tve_flt .thrv_wrapper>.tve_sep{width:100%;background-color:rgba(0,0,0,0);}.tve_flt .tve_sep1{border-top:1px solid #d9d9d9;}.tve_flt .tve_sep2{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/flat_sep2.png");background-repeat:repeat-x;height:4px;}.tve_flt .tve_sep2.nitro-lazy{background-image:none !important;}.tve_flt .tve_sep3{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/flat_sep3.png");background-repeat:repeat-x;height:1px;}.tve_flt .tve_sep3.nitro-lazy{background-image:none !important;}.tve_flt .tve_sep4{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/flat_sep4.png");background-repeat:repeat-x;height:3px;}.tve_flt .tve_sep4.nitro-lazy{background-image:none !important;}.tve_flt .tve_scT.tve_black li.tve_tS span.thrv-inline-text,.tve_flt .tve_scT.tve_black li.tve_tS span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_black li.tve_tS.edit_light span.thrv-inline-text,.tve_flt .tve_scT.tve_black li.tve_tS.edit_light span .tve-tab-text{color:#000 !important;}.tve_flt .tve_scT.tve_blue li.tve_tS span.thrv-inline-text,.tve_flt .tve_scT.tve_blue li.tve_tS span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_blue li.tve_tS.edit_light span.thrv-inline-text,.tve_flt .tve_scT.tve_blue li.tve_tS.edit_light span .tve-tab-text{color:#000 !important;}.tve_flt .tve_scT.tve_green li.tve_tS span.thrv-inline-text,.tve_flt .tve_scT.tve_green li.tve_tS span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_green li.tve_tS.edit_light span.thrv-inline-text,.tve_flt .tve_scT.tve_green li.tve_tS.edit_light span .tve-tab-text{color:#000 !important;}.tve_flt .tve_scT.tve_orange li.tve_tS span.thrv-inline-text,.tve_flt .tve_scT.tve_orange li.tve_tS span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_orange li.tve_tS.edit_light span.thrv-inline-text,.tve_flt .tve_scT.tve_orange li.tve_tS.edit_light span .tve-tab-text{color:#000 !important;}.tve_flt .tve_scT.tve_purple li.tve_tS span.thrv-inline-text,.tve_flt .tve_scT.tve_purple li.tve_tS span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_purple li.tve_tS.edit_light span.thrv-inline-text,.tve_flt .tve_scT.tve_purple li.tve_tS.edit_light span .tve-tab-text{color:#000 !important;}.tve_flt .tve_scT.tve_red li.tve_tS span.thrv-inline-text,.tve_flt .tve_scT.tve_red li.tve_tS span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_red li.tve_tS.edit_light span.thrv-inline-text,.tve_flt .tve_scT.tve_red li.tve_tS.edit_light span .tve-tab-text{color:#000 !important;}.tve_flt .tve_scT.tve_teal li.tve_tS span.thrv-inline-text,.tve_flt .tve_scT.tve_teal li.tve_tS span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_teal li.tve_tS.edit_light span.thrv-inline-text,.tve_flt .tve_scT.tve_teal li.tve_tS.edit_light span .tve-tab-text{color:#000 !important;}.tve_flt .tve_scT.tve_white li.tve_tS span{color:#4e4e4e !important;}.tve_flt .tve_scT>ul li:hover span.thrv-inline-text,.tve_flt .tve_scT>ul li:hover span .tve-tab-text{color:#fff !important;}.tve_flt .tve_scT.tve_black>ul li.tve_tS{background:#101010;}.tve_flt .tve_scT.tve_black>ul li:hover{background:#434343;}.tve_flt .tve_scT.tve_black>ul li a{color:#101010 !important;}.tve_flt .tve_scT.tve_blue>ul li.tve_tS{background:#3e68b2;}.tve_flt .tve_scT.tve_blue>ul li:hover{background:#335693;}.tve_flt .tve_scT.tve_blue>ul li a{color:#3e68b2 !important;}.tve_flt .tve_scT.tve_green>ul li.tve_tS{background:#34ae44;}.tve_flt .tve_scT.tve_green>ul li:hover{background:#2a8e37;}.tve_flt .tve_scT.tve_green>ul li a{color:#34ae44 !important;}.tve_flt .tve_scT.tve_orange>ul li.tve_tS{background:#e25c1b;}.tve_flt .tve_scT.tve_orange>ul li:hover{background:#bd4d16;}.tve_flt .tve_scT.tve_orange>ul li a{color:#e25c1b !important;}.tve_flt .tve_scT.tve_purple>ul li.tve_tS{background:#8656c1;}.tve_flt .tve_scT.tve_purple>ul li:hover{background:#713fae;}.tve_flt .tve_scT.tve_purple>ul li a{color:#8656c1 !important;}.tve_flt .tve_scT.tve_red>ul li.tve_tS{background:#ce271b;}.tve_flt .tve_scT.tve_red>ul li:hover{background:#a92016;}.tve_flt .tve_scT.tve_red>ul li a{color:#ce271b !important;}.tve_flt .tve_scT.tve_teal>ul li.tve_tS{background:#387d71;}.tve_flt .tve_scT.tve_teal>ul li:hover{background:#2b6057;}.tve_flt .tve_scT.tve_teal>ul li a{color:#387d71 !important;}.tve_flt .tve_scT.tve_white>ul li.tve_tS{background:#d8d8d8;}.tve_flt .tve_scT.tve_white>ul li:hover{background:#c3c3c3;}.tve_flt .tve_scT.tve_white>ul li a{color:#4e4e4e !important;}.tve_flt .tve_black>.tve_faq:hover{background:#101010;}.tve_flt .tve_blue>.tve_faq:hover{background:#3e68b2;}.tve_flt .tve_green>.tve_faq:hover{background:#34ae44;}.tve_flt .tve_orange>.tve_faq:hover{background:#e25c1b;}.tve_flt .tve_purple>.tve_faq:hover{background:#8656c1;}.tve_flt .tve_red>.tve_faq:hover{background:#ce271b;}.tve_flt .tve_teal>.tve_faq:hover{background:#387d71;}.tve_flt .tve_white>.tve_faq:hover{background:#fff;}.tve_flt .tve_white>.tve_faq:hover h4{color:#000 !important;}.tve_flt .tve_white>.tve_faq:hover .tve_toggle{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-visual-editor/editor/css/images/toggle_closed.png") no-repeat center center;}.tve_flt .tve_white>.tve_faq:hover .tve_toggle.nitro-lazy{background-image:none !important;}.tve_flt .tve_prt.tve_black .tve_prt_col .tve_prt_in{background-color:#383838;}.tve_flt .tve_prt.tve_blue .tve_prt_col .tve_prt_in{background-color:#7497d3;}.tve_flt .tve_prt.tve_green .tve_prt_col .tve_prt_in{background-color:#6acc77;}.tve_flt .tve_prt.tve_orange .tve_prt_col .tve_prt_in{background-color:#ff935f;}.tve_flt .tve_prt.tve_purple .tve_prt_col .tve_prt_in{background-color:#b18fdc;}.tve_flt .tve_prt.tve_red .tve_prt_col .tve_prt_in{background-color:#ea6158;}.tve_flt .tve_prt.tve_teal .tve_prt_col .tve_prt_in{background-color:#5cb1a1;}.tve_flt .tve_prt.tve_white .tve_prt_col .tve_prt_in{background-color:#d5d5d5;}.tve_flt .tve_prt.tve_black .tve_prt_col.tve_hgh .tve_prt_in{background-color:#1f1f1f;}.tve_flt .tve_prt.tve_blue .tve_prt_col.tve_hgh .tve_prt_in{background-color:#4e7ac7;}.tve_flt .tve_prt.tve_green .tve_prt_col.tve_hgh .tve_prt_in{background-color:#45bf55;}.tve_flt .tve_prt.tve_orange .tve_prt_col.tve_hgh .tve_prt_in{background-color:#ff712c;}.tve_flt .tve_prt.tve_purple .tve_prt_col.tve_hgh .tve_prt_in{background-color:#9768d1;}.tve_flt .tve_prt.tve_red .tve_prt_col.tve_hgh .tve_prt_in{background-color:#e5372b;}.tve_flt .tve_prt.tve_teal .tve_prt_col.tve_hgh .tve_prt_in{background-color:#479486;}.tve_flt .tve_prt.tve_white .tve_prt_col.tve_hgh .tve_prt_in{background-color:#efefef;}.tve_flt .tve_prt.tve_black .tve_prt_col .tve_ftr{border-color:#050505;}.tve_flt .tve_prt.tve_blue .tve_prt_col .tve_ftr{border-color:#3660ab;}.tve_flt .tve_prt.tve_green .tve_prt_col .tve_ftr{border-color:#359b42;}.tve_flt .tve_prt.tve_orange .tve_prt_col .tve_ftr{border-color:#f85100;}.tve_flt .tve_prt.tve_purple .tve_prt_col .tve_ftr{border-color:#7c40c5;}.tve_flt .tve_prt.tve_red .tve_prt_col .tve_ftr{border-color:#c42318;}.tve_flt .tve_prt.tve_teal .tve_prt_col .tve_ftr{border-color:#367166;}.tve_flt .tve_prt.tve_white .tve_prt_col .tve_ftr{border-color:#bcbcbc;}.tve_flt .tve_prt.tve_black .tve_prt_col.tve_hgh .tve_ftr{border-color:#383838;}.tve_flt .tve_prt.tve_blue .tve_prt_col.tve_hgh .tve_ftr{border-color:#7497d3;}.tve_flt .tve_prt.tve_green .tve_prt_col.tve_hgh .tve_ftr{border-color:#6acc77;}.tve_flt .tve_prt.tve_orange .tve_prt_col.tve_hgh .tve_ftr{border-color:#ff935f;}.tve_flt .tve_prt.tve_purple .tve_prt_col.tve_hgh .tve_ftr{border-color:#b18fdc;}.tve_flt .tve_prt.tve_red .tve_prt_col.tve_hgh .tve_ftr{border-color:#ea6158;}.tve_flt .tve_prt.tve_teal .tve_prt_col.tve_hgh .tve_ftr{border-color:#5cb1a1;}.tve_flt .tve_prt.tve_white .tve_prt_col.tve_hgh .tve_ftr{border-color:#d5d5d5;}.tve_flt .tve_prt.tve_black h2{text-shadow:#050505 0px 1px 0px;}.tve_flt .tve_prt.tve_blue h2{text-shadow:#3660ab 0px 1px 0px;}.tve_flt .tve_prt.tve_green h2{text-shadow:#359b42 0px 1px 0px;}.tve_flt .tve_prt.tve_orange h2{text-shadow:#f85100 0px 1px 0px;}.tve_flt .tve_prt.tve_purple h2{text-shadow:#7c40c5 0px 1px 0px;}.tve_flt .tve_prt.tve_red h2{text-shadow:#c42318 0px 1px 0px;}.tve_flt .tve_prt.tve_teal h2{text-shadow:#367166 0px 1px 0px;}.tve_flt .tve_prt.tve_white h2{text-shadow:#bcbcbc 0px 1px 0px;}.tve_flt .tve_prt .tve_prt_in h2{color:#fff !important;}.tve_flt .tve_prt .tve_prt_in p{color:#fff !important;}.tve_flt .tve_prt .tve_prt_in h3{color:#fff !important;}.tve_flt .tve_prt .tve_prt_in .tve_ctr h3{margin-top:15px;}.tve_flt .tve_prt .tve_ul{color:#fff !important;}.tve_flt .tve_prt .tve_ul:last-of-type li:last-of-type{margin-bottom:0px;}.tve_flt .tve_prt.tve_white h2,.tve_flt .tve_prt.tve_white h3,.tve_flt .tve_prt.tve_white p,.tve_flt .tve_prt.tve_white ul{color:#525151 !important;}.tve_flt .tve_prt h3>span{font-size:.8em;}.tve_flt .tve_prt .tve_ftr{border-style:solid;border-width:1px 0px 1px 0px;}.tve_flt .tve_prt .tve_cond{margin-bottom:15px;}.tve_flt .tve_prt .tve_ctr:last-of-type .tve_cond{margin-bottom:30px;}.tve_flt .tve_prt_in{width:99.5%;}.tve_flt .tve_hgh .tve_prt_in{margin:0px -.5%;}.tve_flt .tve_five .tve_prt_in{width:99.4%;}.tve_flt .tve_wrap_all .tve_prt .tve_ul li{color:#fff;}.tve_flt .tve_table.tve_black{border:1px solid #101010;}.tve_flt .tve_table.tve_black>thead>tr>th{background:#101010;border-color:#101010;border-style:solid;}.tve_flt .tve_table.tve_black>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_black>tbody>tr>td{border-color:#101010;border-style:solid;}.tve_flt .tve_table.tve_blue{border:1px solid #3e68b2;}.tve_flt .tve_table.tve_blue>thead>tr>th{background:#3e68b2;border-color:#3e68b2;border-style:solid;}.tve_flt .tve_table.tve_blue>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_blue>tbody>tr>td{border-color:#3e68b2;border-style:solid;}.tve_flt .tve_table.tve_green{border:1px solid #34ae44;}.tve_flt .tve_table.tve_green>thead>tr>th{background:#34ae44;border-color:#34ae44;border-style:solid;}.tve_flt .tve_table.tve_green>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_green>tbody>tr>td{border-color:#34ae44;border-style:solid;}.tve_flt .tve_table.tve_orange{border:1px solid #e25c1b;}.tve_flt .tve_table.tve_orange>thead>tr>th{background:#e25c1b;border-color:#e25c1b;border-style:solid;}.tve_flt .tve_table.tve_orange>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_orange>tbody>tr>td{border-color:#e25c1b;border-style:solid;}.tve_flt .tve_table.tve_purple{border:1px solid #8656c1;}.tve_flt .tve_table.tve_purple>thead>tr>th{background:#8656c1;border-color:#8656c1;border-style:solid;}.tve_flt .tve_table.tve_purple>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_purple>tbody>tr>td{border-color:#8656c1;border-style:solid;}.tve_flt .tve_table.tve_red{border:1px solid #ce271b;}.tve_flt .tve_table.tve_red>thead>tr>th{background:#ce271b;border-color:#ce271b;border-style:solid;}.tve_flt .tve_table.tve_red>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_red>tbody>tr>td{border-color:#ce271b;border-style:solid;}.tve_flt .tve_table.tve_teal{border:1px solid #387d71;}.tve_flt .tve_table.tve_teal>thead>tr>th{background:#387d71;border-color:#387d71;border-style:solid;}.tve_flt .tve_table.tve_teal>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_teal>tbody>tr>td{border-color:#387d71;border-style:solid;}.tve_flt .tve_table.tve_white{border:1px solid #d8d8d8;}.tve_flt .tve_table.tve_white>thead>tr>th{background:#d8d8d8;border-color:#d8d8d8;border-style:solid;}.tve_flt .tve_table.tve_white>thead>tr>th>p{color:#fff;}.tve_flt .tve_table.tve_white>tbody>tr>td{border-color:#d8d8d8;border-style:solid;}.tve_flt .tve_image.tve_black{border-color:#101010;}.tve_flt .tve_image.tve_blue{border-color:#3e68b2;}.tve_flt .tve_image.tve_green{border-color:#34ae44;}.tve_flt .tve_image.tve_orange{border-color:#e25c1b;}.tve_flt .tve_image.tve_purple{border-color:#8656c1;}.tve_flt .tve_image.tve_red{border-color:#ce271b;}.tve_flt .tve_image.tve_teal{border-color:#387d71;}.tve_flt .tve_image.tve_white{border-color:#d8d8d8;}.tve_flt .tve_table.tve_white>thead>tr>th>p{color:#3d3d3d;}.tve_flt .tve_contents_table{border-radius:3px;background-color:#eaecf1;padding:0 0 10px 0;}.tve_flt .tve_contents_table .tve_ct_title{border-radius:3px;display:block;}.tve_flt .thrv_contents_table.tve_blue .tve_ct_title{background-color:#4e7ac7;}.tve_flt .thrv_contents_table.tve_blue .tve_contents_table a:hover{color:#4e7ac7;}.tve_flt .thrv_contents_table.tve_red .tve_ct_title{background-color:#e5372b;}.tve_flt .thrv_contents_table.tve_red .tve_contents_table a:hover{color:#e5372b;}.tve_flt .thrv_contents_table.tve_green .tve_ct_title{background-color:#45bf55;}.tve_flt .thrv_contents_table.tve_green .tve_contents_table a:hover{color:#45bf55;}.tve_flt .thrv_contents_table.tve_orange .tve_ct_title{background-color:#ff712c;}.tve_flt .thrv_contents_table.tve_orange .tve_contents_table a:hover{color:#ff712c;}.tve_flt .thrv_contents_table.tve_purple .tve_ct_title{background-color:#9768d1;}.tve_flt .thrv_contents_table.tve_purple .tve_contents_table a:hover{color:#9768d1;}.tve_flt .thrv_contents_table.tve_teal .tve_ct_title{background-color:#479486;}.tve_flt .thrv_contents_table.tve_teal .tve_contents_table a:hover{color:#479486;}.tve_flt .thrv_contents_table.tve_black .tve_ct_title{background-color:#1f1f1f;}.tve_flt .thrv_contents_table.tve_black .tve_contents_table a:hover{color:#1f1f1f;}.tve_flt .thrv_contents_table.tve_white .tve_ct_title{background-color:#efefef;color:#535353;}.tve_flt .thrv_contents_table.tve_white .tve_contents_table{background:none;}.tve_flt .thrv_contents_table.tve_white .tve_contents_table a:hover{color:#1f1f1f;}.tve_flt .thrv_countdown_timer{opacity:0;}.tve_flt .thrv_countdown_timer.tve_cd_expired{opacity:1;}.tve_flt .thrv_countdown_timer.tve_countdown_3 .tve_t_part .t-digits{border-radius:5px;font-size:48px;height:80px;min-width:50px;padding:0 10px;box-sizing:content-box;}.tve_flt .thrv_countdown_timer.tve_countdown_3 .tve_t_part .t-digits:after{background:#fff;content:"";display:block;height:3px;margin:auto 0;position:absolute;top:0;bottom:0;left:0;right:0;}.tve_flt .thrv_countdown_timer.tve_countdown_3 .tve_t_part .t-digits [class*=part-]{color:#fff;font-weight:700;line-height:80px;min-width:25px;right:10px;}.tve_flt .thrv_countdown_timer.tve_countdown_3 .tve_t_part .t-digits .part-2{right:35px;}.tve_flt .thrv_countdown_timer.tve_countdown_3 .tve_t_part .t-digits .part-3{right:60px;}.tve_flt .thrv_countdown_timer.tve_countdown_3 .tve_t_part .t-digits .part-4{right:85px;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part{border-radius:100%;padding:20px 0;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part .t-digits{font-size:60px;height:85px;min-width:80px;padding:0 35px;box-sizing:content-box;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part .t-digits [class*=part-]{line-height:70px;min-width:40px;right:35px;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part .t-digits .part-2{right:75px;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part .t-digits .part-3{right:115px;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part .t-digits .part-4{right:155px;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part .t-caption{border-top:0;font-size:13px;position:relative;}.tve_flt .thrv_countdown_timer.tve_countdown_2 .tve_t_part .t-caption:before{content:"";height:1px;margin:0 auto;position:absolute;left:0;right:0;top:0;width:80px;}.tve_flt .thrv_countdown_timer.tve_countdown_timer_evergreen{opacity:1;}.tve_flt .thrv_countdown_timer.init_done{transition:.2s,opacity,ease-in;opacity:1;}.tve_flt .thrv_countdown_timer .tve_t_part{position:relative;margin-right:10px;float:left;}.tve_flt .thrv_countdown_timer .tve_t_part.ct_finished{display:none !important;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits{position:relative;padding:0 17px;height:38px;overflow:hidden;min-width:50px;font-size:170%;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits [class*=part-]{line-height:38px;position:absolute;top:0;right:17px;min-width:25px;text-align:center;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits [class*=part-].go-down{transition:top .2s linear;top:100%;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits [class*=part-].next{top:-100%;transition:top .2s linear;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits [class*=part-].next.go-down{top:0;transition:top .2s linear;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits [class*=part-].ct-d-placeholder{position:static;display:inline-block;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits .part-2{right:42px;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits .part-3{right:67px;}.tve_flt .thrv_countdown_timer .tve_t_part .t-digits .part-4{right:92px;}.tve_flt .thrv_countdown_timer .tve_t_part .t-caption{border-top:1px solid #dedede;padding:5px 0;min-width:60px;text-align:center;}@media only screen and (max-width: 480px){.tve_flt .thrv_countdown_timer.thrv_wrapper.tve_countdown_2 .tve_t_part{border-radius:10px;}.tve_flt .thrv_countdown_timer.thrv_wrapper.tve_countdown_3 .tve_t_part .t-digits:after{display:none;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part{margin-right:4px;padding:0;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part .t-digits{height:30px;min-width:36px !important;padding:0 5px;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part .t-digits [class*=part-]{font-size:18px;line-height:30px;right:5px;min-width:18px;width:18px;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part .t-digits .part-2{right:33px;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part .t-digits .part-3{right:51px;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part .t-digits .part-4{right:69px;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part .t-caption{display:block;font-size:11px;padding:0 0 5px;border-top:none;}.tve_flt .thrv_countdown_timer.thrv_wrapper .tve_t_part .t-caption:before{display:none;}.tve_flt .thrv_countdown_timer.thrv_wrapper[data-dd="2"] .tve_t_day .t-digits{min-width:36px;}.tve_flt .thrv_countdown_timer.thrv_wrapper[data-dd="3"] .tve_t_day .t-digits{min-width:54px;}.tve_flt .thrv_countdown_timer.thrv_wrapper[data-dd="4"] .tve_t_day .t-digits{min-width:72px;}}.tve_flt .thrv_countdown_timer.tve_black .t-caption{color:#101010;}.tve_flt .thrv_countdown_timer.tve_black.tve_countdown_3 .t-digits{background:#101010;}.tve_flt .thrv_countdown_timer.tve_black.tve_countdown_2 .tve_t_part{border:4px solid #101010;}.tve_flt .thrv_countdown_timer.tve_black.tve_countdown_2 .t-digits [class*=part-]{color:#101010;}.tve_flt .thrv_countdown_timer.tve_black.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_countdown_timer.tve_blue .t-caption{color:#404b6c;}.tve_flt .thrv_countdown_timer.tve_blue.tve_countdown_3 .t-digits{background:#404b6c;}.tve_flt .thrv_countdown_timer.tve_blue.tve_countdown_2 .tve_t_part{border:4px solid #404b6c;}.tve_flt .thrv_countdown_timer.tve_blue.tve_countdown_2 .t-digits [class*=part-]{color:#404b6c;}.tve_flt .thrv_countdown_timer.tve_blue.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_countdown_timer.tve_green .t-caption{color:#56ac45;}.tve_flt .thrv_countdown_timer.tve_green.tve_countdown_3 .t-digits{background:#56ac45;}.tve_flt .thrv_countdown_timer.tve_green.tve_countdown_2 .tve_t_part{border:4px solid #56ac45;}.tve_flt .thrv_countdown_timer.tve_green.tve_countdown_2 .t-digits [class*=part-]{color:#56ac45;}.tve_flt .thrv_countdown_timer.tve_green.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_countdown_timer.tve_orange .t-caption{color:#e25c1b;}.tve_flt .thrv_countdown_timer.tve_orange.tve_countdown_3 .t-digits{background:#e25c1b;}.tve_flt .thrv_countdown_timer.tve_orange.tve_countdown_2 .tve_t_part{border:4px solid #e25c1b;}.tve_flt .thrv_countdown_timer.tve_orange.tve_countdown_2 .t-digits [class*=part-]{color:#e25c1b;}.tve_flt .thrv_countdown_timer.tve_orange.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_countdown_timer.tve_purple .t-caption{color:#8656c1;}.tve_flt .thrv_countdown_timer.tve_purple.tve_countdown_3 .t-digits{background:#8656c1;}.tve_flt .thrv_countdown_timer.tve_purple.tve_countdown_2 .tve_t_part{border:4px solid #8656c1;}.tve_flt .thrv_countdown_timer.tve_purple.tve_countdown_2 .t-digits [class*=part-]{color:#8656c1;}.tve_flt .thrv_countdown_timer.tve_purple.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_countdown_timer.tve_red .t-caption{color:#ce271b;}.tve_flt .thrv_countdown_timer.tve_red.tve_countdown_3 .t-digits{background:#ce271b;}.tve_flt .thrv_countdown_timer.tve_red.tve_countdown_2 .tve_t_part{border:4px solid #ce271b;}.tve_flt .thrv_countdown_timer.tve_red.tve_countdown_2 .t-digits [class*=part-]{color:#ce271b;}.tve_flt .thrv_countdown_timer.tve_red.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_countdown_timer.tve_teal .t-caption{color:#387d71;}.tve_flt .thrv_countdown_timer.tve_teal.tve_countdown_3 .t-digits{background:#387d71;}.tve_flt .thrv_countdown_timer.tve_teal.tve_countdown_2 .tve_t_part{border:4px solid #387d71;}.tve_flt .thrv_countdown_timer.tve_teal.tve_countdown_2 .t-digits [class*=part-]{color:#387d71;}.tve_flt .thrv_countdown_timer.tve_teal.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_countdown_timer.tve_white .t-caption{color:#d8d8d8;}.tve_flt .thrv_countdown_timer.tve_white.tve_countdown_3 .t-digits{background:#d8d8d8;}.tve_flt .thrv_countdown_timer.tve_white.tve_countdown_2 .tve_t_part{border:4px solid #d8d8d8;}.tve_flt .thrv_countdown_timer.tve_white.tve_countdown_2 .t-digits [class*=part-]{color:#d8d8d8;}.tve_flt .thrv_countdown_timer.tve_white.tve_countdown_2 .t-caption:before{background:currentColor;}.tve_flt .thrv_progress_bar.tve_blue .tve_progress_bar_fill{background:#537ea2;}.tve_flt .thrv_fill_counter.tve_blue .tve_fill_c_in{background:#537ea2;}.tve_flt .thrv_fill_counter.tve_blue .tve_fill_text,.tve_flt .thrv_fill_counter.tve_blue .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_blue .tve_fill_text_after{color:#537ea2;}.tve_flt .thrv_fill_counter.tve_blue .tve_fill_counter_circle circle{stroke:#537ea2;}.tve_flt .thrv_number_counter.tve_blue .tve_numberc_before,.tve_flt .thrv_number_counter.tve_blue .tve_numberc_after,.tve_flt .thrv_number_counter.tve_blue .tve_numberc_text{color:#537ea2;}.tve_flt .thrv_progress_bar.tve_black .tve_progress_bar_fill{background:#2c2c2c;}.tve_flt .thrv_fill_counter.tve_black .tve_fill_c_in{background:#2c2c2c;}.tve_flt .thrv_fill_counter.tve_black .tve_fill_text,.tve_flt .thrv_fill_counter.tve_black .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_black .tve_fill_text_after{color:#2c2c2c;}.tve_flt .thrv_fill_counter.tve_black .tve_fill_counter_circle circle{stroke:#2c2c2c;}.tve_flt .thrv_number_counter.tve_black .tve_numberc_before,.tve_flt .thrv_number_counter.tve_black .tve_numberc_after,.tve_flt .thrv_number_counter.tve_black .tve_numberc_text{color:#2c2c2c;}.tve_flt .thrv_progress_bar.tve_green .tve_progress_bar_fill{background:#408c52;}.tve_flt .thrv_fill_counter.tve_green .tve_fill_c_in{background:#408c52;}.tve_flt .thrv_fill_counter.tve_green .tve_fill_text,.tve_flt .thrv_fill_counter.tve_green .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_green .tve_fill_text_after{color:#408c52;}.tve_flt .thrv_fill_counter.tve_green .tve_fill_counter_circle circle{stroke:#408c52;}.tve_flt .thrv_number_counter.tve_green .tve_numberc_before,.tve_flt .thrv_number_counter.tve_green .tve_numberc_after,.tve_flt .thrv_number_counter.tve_green .tve_numberc_text{color:#408c52;}.tve_flt .thrv_progress_bar.tve_white .tve_progress_bar_fill{background:#fff;}.tve_flt .thrv_fill_counter.tve_white .tve_fill_c_in{background:#fff;}.tve_flt .thrv_fill_counter.tve_white .tve_fill_text,.tve_flt .thrv_fill_counter.tve_white .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_white .tve_fill_text_after{color:#fff;}.tve_flt .thrv_fill_counter.tve_white .tve_fill_counter_circle circle{stroke:#fff;}.tve_flt .thrv_number_counter.tve_white .tve_numberc_before,.tve_flt .thrv_number_counter.tve_white .tve_numberc_after,.tve_flt .thrv_number_counter.tve_white .tve_numberc_text{color:#fff;}.tve_flt .thrv_progress_bar.tve_orange .tve_progress_bar_fill{background:#e58406;}.tve_flt .thrv_fill_counter.tve_orange .tve_fill_c_in{background:#e58406;}.tve_flt .thrv_fill_counter.tve_orange .tve_fill_text,.tve_flt .thrv_fill_counter.tve_orange .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_orange .tve_fill_text_after{color:#e58406;}.tve_flt .thrv_fill_counter.tve_orange .tve_fill_counter_circle circle{stroke:#e58406;}.tve_flt .thrv_number_counter.tve_orange .tve_numberc_before,.tve_flt .thrv_number_counter.tve_orange .tve_numberc_after,.tve_flt .thrv_number_counter.tve_orange .tve_numberc_text{color:#e58406;}.tve_flt .thrv_progress_bar.tve_purple .tve_progress_bar_fill{background:#7c5f95;}.tve_flt .thrv_fill_counter.tve_purple .tve_fill_c_in{background:#7c5f95;}.tve_flt .thrv_fill_counter.tve_purple .tve_fill_text,.tve_flt .thrv_fill_counter.tve_purple .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_purple .tve_fill_text_after{color:#7c5f95;}.tve_flt .thrv_fill_counter.tve_purple .tve_fill_counter_circle circle{stroke:#7c5f95;}.tve_flt .thrv_number_counter.tve_purple .tve_numberc_before,.tve_flt .thrv_number_counter.tve_purple .tve_numberc_after,.tve_flt .thrv_number_counter.tve_purple .tve_numberc_text{color:#7c5f95;}.tve_flt .thrv_progress_bar.tve_red .tve_progress_bar_fill{background:#9f1a1a;}.tve_flt .thrv_fill_counter.tve_red .tve_fill_c_in{background:#9f1a1a;}.tve_flt .thrv_fill_counter.tve_red .tve_fill_text,.tve_flt .thrv_fill_counter.tve_red .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_red .tve_fill_text_after{color:#9f1a1a;}.tve_flt .thrv_fill_counter.tve_red .tve_fill_counter_circle circle{stroke:#9f1a1a;}.tve_flt .thrv_number_counter.tve_red .tve_numberc_before,.tve_flt .thrv_number_counter.tve_red .tve_numberc_after,.tve_flt .thrv_number_counter.tve_red .tve_numberc_text{color:#9f1a1a;}.tve_flt .thrv_progress_bar.tve_teal .tve_progress_bar_fill{background:#42a593;}.tve_flt .thrv_fill_counter.tve_teal .tve_fill_c_in{background:#42a593;}.tve_flt .thrv_fill_counter.tve_teal .tve_fill_text,.tve_flt .thrv_fill_counter.tve_teal .tve_fill_text_before,.tve_flt .thrv_fill_counter.tve_teal .tve_fill_text_after{color:#42a593;}.tve_flt .thrv_fill_counter.tve_teal .tve_fill_counter_circle circle{stroke:#42a593;}.tve_flt .thrv_number_counter.tve_teal .tve_numberc_before,.tve_flt .thrv_number_counter.tve_teal .tve_numberc_after,.tve_flt .thrv_number_counter.tve_teal .tve_numberc_text{color:#42a593;}@media only screen and (max-width: 1080px){.tve_flt .tve_ts1{width:75%;}.tve_flt .tve_fg4 .tve_line h3{left:33%;width:66%;}.tve_flt .tve_ts4 .tve_ts_cn,.tve_flt .tve_ts9 .tve_ts_cn{width:74%;}}@media only screen and (max-width: 940px){.tve_flt .tve_ca4 .tve_btn_cnt{background:none;width:100%;}.tve_flt .tve_ca4 .tve_btn_cnt .tve_btn.tve_normalBtn{padding:0px 0px;}.tve_flt .tve_ca4 .tve_btn_cnt .tve_btn.tve_normalBtn a{line-height:100%;padding:20px 10px;}.tve_flt .tve_ts9 .tve_ts_o,.tve_flt .tve_ts4 .tve_ts_o{display:table-header-group;}.tve_flt .tve_ts9 .tve_ts_t,.tve_flt .tve_ts4 .tve_ts_t{display:table-footer-group;}.tve_flt .tve_ts9 .tve_ts_o,.tve_flt .tve_ts9 .tve_ts_t,.tve_flt .tve_ts4 .tve_ts_o,.tve_flt .tve_ts4 .tve_ts_t{float:none;}.tve_flt .tve_ts9 .tve_ts_cn,.tve_flt .tve_ts4 .tve_ts_cn{float:none;margin:0 auto;width:84%;}.thrv_columns .tve_flt .tve_ts9 .tve_ts_cn,.thrv_columns .tve_flt .tve_ts4 .tve_ts_cn{width:87%;}}@media only screen and (max-width: 740px){.tve_flt .tve_btn.tve_bigBtn.tve_btn5 a,.tve_flt .tve_btn.tve_bigBtn.tve_btn6 a{padding:33px 10px;}.tve_flt .tve_btn.tve_bigBtn.tve_btn5 a>div,.tve_flt .tve_btn.tve_bigBtn.tve_btn6 a>div{height:92px;margin:-33px 0px;}.tve_flt .tve_btn.tve_bigBtn.tve_btn5 a>div i,.tve_flt .tve_btn.tve_bigBtn.tve_btn6 a>div i{margin-right:15px;}.tve_flt .tve_btn.tve_hugeBtn{font-size:36px !important;line-height:36px !important;width:99%;}.tve_flt .tve_btn.tve_hugeBtn.tve_btn5 a,.tve_flt .tve_btn.tve_hugeBtn.tve_btn6 a{padding:33px 10px;}.tve_flt .tve_btn.tve_hugeBtn.tve_btn5 a>div,.tve_flt .tve_btn.tve_hugeBtn.tve_btn6 a>div{height:101px;margin:-33px 0px;}.tve_flt .tve_btn.tve_hugeBtn.tve_btn5 a>div i,.tve_flt .tve_btn.tve_hugeBtn.tve_btn6 a>div i{margin-right:15px;margin-top:22px;}.tve_flt .tve_fg5{margin-bottom:60px;}.tve_flt .tve_fg5 .tve_line{width:75%;}.tve_flt .tve_fg5 .tve_line h3{left:10px;width:100%;}.tve_flt .tve_fg5 .tve_rbn{margin-top:10px;}.tve_flt .tve_fg.tve_fg4 .tve_line,.tve_flt .tve_fg.tve_fg5 .tve_line{margin-left:-5.5%;}.tve_flt .tve_fg.tve_fg5 .tve_rbn{margin-bottom:-50%;}.tve_flt .tve_fg.tve_fg5 .tve_rbn .tve_line{margin-top:200px;}.tve_flt .tve_fg .tve_line{height:auto;max-height:100%;margin-top:160px;margin-bottom:20px;padding:0px;width:111%;}.tve_flt .tve_fg .tve_line h3{height:auto;left:0%;margin:0px !important;width:100%;position:relative;overflow:hidden;text-overflow:visible;text-align:center;white-space:normal;}.tve_flt .tve_fg .tve_badge{margin-left:auto;margin-right:auto;left:0px;right:0px;top:0px;}.tve_flt .tve_arrow_left,.tve_flt .tve_arrow_right{display:none;}.tve_flt .tve_ca{width:74%;}.tve_flt .tve_ca1 .tve_btn{top:-15px;}.tve_flt .tve_ca2 .tve_ca_t{width:29%;}.tve_flt .tve_ts4 .tve_ts_cn,.tve_flt .tve_ts9 .tve_ts_cn{width:75%;}}@media only screen and (max-width: 700px){.tve_flt .tve_ca2 .tve_ca_t{float:none;height:auto;margin-top:10px;margin-left:-20px;width:100%;}.tve_flt .tve_ca2 .tve_ca_t a{margin-top:0px;}.tve_flt .tve_ca2 .tve_ca_t a>.tve_ca_sp{display:none;}.tve_flt .tve_ca2 h3,.tve_flt .tve_ca2 p{white-space:pre-wrap;}.tve_flt .tve_ca2{height:auto;width:75%;}.tve_flt .tve_ca2 .tve_ca_o{float:none;width:100%;}.tve_flt .tve_ca.tve_ca2{margin-bottom:80px;}}@media only screen and (max-width: 560px){.tve_flt .tve_btn.tve_btn5 a.tve_btnLink,.tve_flt .tve_btn.tve_btn6 a.tve_btnLink{padding:0px 0px 10px 0px;}.tve_flt .tve_btn.tve_btn5 a.tve_btnLink>div,.tve_flt .tve_btn.tve_btn6 a.tve_btnLink>div{border-right:none !important;margin:0px !important;width:100%;}.tve_flt .tve_btn.tve_btn5.tve_nb a.tve_btnLink,.tve_flt .tve_btn.tve_btn6.tve_nb a.tve_btnLink{padding:20px;}.tve_flt .tve_btn.tve_hugeBtn{font-size:20px !important;width:100% !important;}.tve_flt .tve_btn.tve_normalBtn{width:90%;}.tve_flt .tve_btn.tve_smallBtn{width:90%;}.tve_flt .tve_btn.tve_fullwidthBtn{min-width:100%;width:100%;}.tve_flt .tve_ca .tve_btn.tve_normalBtn{width:50%;}.tve_flt .tve_ca .tve_btn.tve_smallBtn{width:30%;}.tve_flt .tve_ts4 .tve_ts_o,.tve_flt .tve_ts9 .tve_ts_o{width:100%;}.tve_flt .tve_ts4 .tve_ts_cn{width:80%;}.tve_flt .tve_ts4 .tve_ts_c,.tve_flt .tve_ts9 .tve_ts_c{display:none;}.tve_flt .tve_ts2 .tve_ts_o{padding-bottom:0px;top:-60px;}.tve_flt .tve_fg5{padding-bottom:43%;}.tve_flt .tve_ts1 .tve_ts_o{position:static;}.tve_flt .tve_ca3 .tve_ca_t .tve_btn{min-width:80%;width:80%;}}@media only screen and (max-width: 380px){.tve_flt .tve_ca3 .tve_btn.tve_normalBtn{width:238px;}.tve_flt .tve_ts1{width:60%;}}.tve_prt .tve_prt_col{float:left;margin-top:10px;}.tve_prt .tve_prt_col.tve_hgh{margin-top:0px;}.tve_prt .tve_prt_col.tve_hgh .tve_prt_in{padding:50px 1.3% 10px 1.3%;}.tve_prt .tve_prt_in{margin:0 auto;padding:40px 0px 1px 0px;position:relative;z-index:0;}.tve_prt .tve_prt_in h2{margin:0px;}.tve_prt .tve_prt_in .tve_ftr p{margin:15px 0px 25px 0px;}.tve_prt .tve_prt_in .tve_ctr h3{margin-top:0px;}.tve_prt .tve_ul{margin:0px;padding-left:25px;padding-bottom:0px;}.tve_prt .tve_ul li{margin-bottom:20px;margin-left:0px;padding-left:10px;}.tve_prt .tve_ul li:before{content:"" !important;}.tve_prt .tve_ul:last-of-type li:last-of-type{margin-bottom:10px;}.tve_prt .tve_hgh .tve_prt_in{z-index:1;}.tve_prt .tve_cond{font-size:.8em;margin-bottom:30px;}.tve_prt .tve_ctr,.tve_prt .tve_ftr,.tve_prt .thrv_button_shortcode{margin:0 auto;width:75%;}.tve_prt .tve_btn.tve_normalBtn{min-width:100%;margin-bottom:15px;width:100%;}.tve_prt .thrv_button_shortcode{display:block;margin-bottom:0px;}.tve_prt .thrv_button_shortcode .tve_btn a.tve_btnLink{text-shadow:none;}.tve_prt .tve_centerBtn{display:table;margin:0 auto;width:auto;}.tve_prt .tve_btn.tve_bigBtn{min-width:100%;}.tve_four .tve_prt_in .tve_ul{font-size:.9em;}.tve_five .tve_prt_in .tve_ul{font-size:.8em;text-indent:0px;}.thrv_post_grid .tve_post_grid_wrapper{width:100%;}.thrv_post_grid .tve_post_grid_wrapper.tve_post_grid_masonry .tve_pg_container{margin:0 5px;}@media (min-width: 1024px){.thrv_post_grid .tve_pg_row:last-child .tve_post{padding-bottom:0;}}.thrv_post_grid .tve_post{box-sizing:border-box;float:left;padding-bottom:15px;position:relative;}.thrv_post_grid .tve_post:hover .tve_post_grid_image_wrapper .tve_pg_img_overlay{background-color:hsla(0,0%,100%,.34);transition:background-color .2s linear;}.thrv_post_grid .tve_post:hover .tve_post_grid_image_wrapper .tve_pg_img_overlay .thrv-icon-forward{opacity:1;transition:opacity .5s linear;}.thrv_post_grid .tve_post .tve_pg_img_overlay{width:100%;height:100%;position:relative;top:0;}.thrv_post_grid .tve_post .tve_pg_img_overlay .thrv-icon-forward{opacity:0;position:absolute;bottom:0;right:0;background-color:#161616;color:#b8b0af;padding:10px;}.thrv_post_grid .tve_post .tve_pg_container{height:100%;box-sizing:border-box;border:1px solid #e1e0e0;box-shadow:0px 3px 2px -3px rgba(0,0,0,.9);}.thrv_post_grid .tve_post.tve_last{margin-right:0;}.thrv_post_grid .tve_post .tve_post_grid_image_wrapper{background-size:cover;background-repeat:no-repeat;background-position:center center;height:280px;margin-left:auto;margin-right:auto;max-width:100%;text-align:center;}.thrv_post_grid .tve_post .tve-post-grid-title{overflow:hidden;text-transform:none;padding:15px;margin:0;line-height:1;font-size:40px;display:block;}.thrv_post_grid .tve_post .tve-post-grid-title a{color:inherit;text-decoration:none;}.thrv_post_grid .tve_post .tve-post-grid-title a:hover{text-decoration:none;}.thrv_post_grid .tve_post .tve-post-grid-text{margin:0 15px 15px 15px;border-top-width:0;border-top-style:solid;border-top-color:#e1e0e0;padding:15px 0 0 0;overflow:hidden;}.thrv_post_grid .tve_post .tve_pg_more{margin:0 15px 15px 15px;font-weight:600;}.thrv_post_grid .tve_post .tve_pg_more a{color:inherit;font-weight:600;}.thrv_post_grid .tve_post .tve_pg_more a:hover{text-decoration:underline;}.thrv_post_grid .tve_post .tve_pg_more span{font-size:10px;font-weight:bold;}.thrv_post_grid .tve_pg_row .tve_pg_container{margin:0 5px;}.thrv_post_grid .tve_pg_row .tve_post:first-child .tve_pg_container{margin:0 5px 0 0;}.thrv_post_grid .tve_pg_row .tve_post:last-child .tve_pg_container{margin:0 0 0 5px;}.thrv_post_grid .tve_post_grid_vertical .tve_pg_row{margin:0 0 15px 0;}.thrv_post_grid .tve_post_grid_vertical .tve_pg_row:last-child{margin-bottom:0;}.thrv_post_grid .tve_post_grid_vertical .tve_post:last-child .tve_pg_container{margin:0;}.thrv_post_grid .tve_post_grid_vertical .tve_post{margin:0;}.thrv_post_grid .tve_post_grid_vertical .tve_post .tve-post-grid-text{padding:15px;margin:0;}.thrv_post_grid .tve_post_grid_vertical .tve_post .tve_pg_more{display:inline-block;margin:0 0 15px 0;padding:0 0 0 15px;}.thrv_post_grid .tve_post_grid_vertical .tve_post .tve_pg_more a{border-width:0;}.thrv_post_grid .tve_post_width_1{width:100%;}.thrv_post_grid .tve_post_width_1 .tve_post_grid_image_wrapper{height:640px;}.thrv_post_grid .tve_post_grid_vertical .tve_post_width_1 .tve_post_grid_image_wrapper{height:235px;width:342px;float:left;}.thrv_post_grid .tve_post_width_2{width:50%;}.thrv_post_grid .tve_post_width_3{width:33.33%;}.thrv_post_grid .tve_post_width_4{width:25%;}.thrv_post_grid .tve_post_width_4 .tve_post_grid_image_wrapper{height:200px;}.thrv_post_grid .tve_post_width_5{width:20%;}.thrv_post_grid .tve_post_width_5 .tve_post_grid_image_wrapper{height:150px;}.thrv_post_grid .tve_post_width_6{width:16.6%;}.thrv_post_grid .tve_post_width_6 .tve_post_grid_image_wrapper{height:125px;}.thrv_post_grid.tve_black .tve_post .tve-post-grid-title a{color:#595959;}.thrv_post_grid.tve_blue .tve_post .tve-post-grid-title a{color:#4e7ac7;}.thrv_post_grid.tve_green .tve_post .tve-post-grid-title a{color:#45bf55;}.thrv_post_grid.tve_orange .tve_post .tve-post-grid-title a{color:#ff712c;}.thrv_post_grid.tve_purple .tve_post .tve-post-grid-title a{color:#9768d1;}.thrv_post_grid.tve_red .tve_post .tve-post-grid-title a{color:#e93c31;}.thrv_post_grid.tve_teal .tve_post .tve-post-grid-title a{color:teal;}.thrv_post_grid.tve_white .tve_post .tve-post-grid-title a{color:#efefef;}@media only screen and (max-width: 774px){.thrv_post_grid .tve_post_width_1,.thrv_post_grid .tve_post_width_2,.thrv_post_grid .tve_post_width_3,.thrv_post_grid .tve_post_width_4,.thrv_post_grid .tve_post_width_5,.thrv_post_grid .tve_post_width_6{width:100%;}.thrv_post_grid .tve_post_width_1 .tve_pg_container,.thrv_post_grid .tve_post_width_2 .tve_pg_container,.thrv_post_grid .tve_post_width_3 .tve_pg_container,.thrv_post_grid .tve_post_width_4 .tve_pg_container,.thrv_post_grid .tve_post_width_5 .tve_pg_container,.thrv_post_grid .tve_post_width_6 .tve_pg_container{margin:0 !important;}.thrv_post_grid .tve_post_grid_vertical .tve_post .tve_pg_more{display:block;}.thrv_post_grid .tve_post_grid_vertical .tve_post_width_1 .tve_post_grid_image_wrapper{width:100%;}}.tve_gr.tve_gr1 .tve_twc .tve_gri .upload_image span,.tve_gr.tve_gr1 .tve_oth .tve_gri .upload_image span,.tve_gr.tve_gr1 .tve_thc .tve_gri .upload_image span,.tve_gr.tve_gr1 .tve_foc .tve_gri .upload_image span{display:none;}.tve_gr.tve_gr1 .tve_oth .upload_image,.tve_gr.tve_gr1 .tve_thc .upload_image{padding:8px;}.tve_gr.tve_gr1 .tve_foc .upload_image{padding:3px;}.tve_gr.tve_gr2 .tve_twc .tve_gri .upload_image span,.tve_gr.tve_gr2 .tve_oth .tve_gri .upload_image span,.tve_gr.tve_gr2 .tve_thc .tve_gri .upload_image span,.tve_gr.tve_gr2 .tve_foc .tve_gri .upload_image span{display:none;}.tve_gr.tve_gr2 .tve_oth .upload_image,.tve_gr.tve_gr2 .tve_thc .upload_image,.tve_gr.tve_gr2 .tve_foc .upload_image{padding:8px;}.tve_gr.tve_gr3 .tve_oth .tve_gri .upload_image span,.tve_gr.tve_gr3 .tve_thc .tve_gri .upload_image span,.tve_gr.tve_gr3 .tve_foc .tve_gri .upload_image span{display:none;}@media only screen and (max-width: 600px){.tve_gr .tve_colm{width:100%;}}@media only screen and (max-width: 772px){.tve_gr .tve_gri,.tve_gr .tve_grt{text-align:center;}}@media only screen and (max-width: 940px){.tve_gr.tve_gr1 .tve_oth,.tve_gr.tve_gr1 .tve_thc,.tve_gr.tve_gr2 .tve_oth,.tve_gr.tve_gr2 .tve_thc,.tve_gr.tve_gr3 .tve_oth,.tve_gr.tve_gr3 .tve_thc{width:32%;}.tve_gr.tve_gr1 .tve_oth .tve_gri,.tve_gr.tve_gr1 .tve_oth .tve_grt,.tve_gr.tve_gr1 .tve_thc .tve_gri,.tve_gr.tve_gr1 .tve_thc .tve_grt,.tve_gr.tve_gr2 .tve_oth .tve_gri,.tve_gr.tve_gr2 .tve_oth .tve_grt,.tve_gr.tve_gr2 .tve_thc .tve_gri,.tve_gr.tve_gr2 .tve_thc .tve_grt,.tve_gr.tve_gr3 .tve_oth .tve_gri,.tve_gr.tve_gr3 .tve_oth .tve_grt,.tve_gr.tve_gr3 .tve_thc .tve_gri,.tve_gr.tve_gr3 .tve_thc .tve_grt{margin-right:0;width:100%;}.tve_gr.tve_gr1 .tve_oth .tve_gri img,.tve_gr.tve_gr1 .tve_oth .tve_grt img,.tve_gr.tve_gr1 .tve_thc .tve_gri img,.tve_gr.tve_gr1 .tve_thc .tve_grt img,.tve_gr.tve_gr2 .tve_oth .tve_gri img,.tve_gr.tve_gr2 .tve_oth .tve_grt img,.tve_gr.tve_gr2 .tve_thc .tve_gri img,.tve_gr.tve_gr2 .tve_thc .tve_grt img,.tve_gr.tve_gr3 .tve_oth .tve_gri img,.tve_gr.tve_gr3 .tve_oth .tve_grt img,.tve_gr.tve_gr3 .tve_thc .tve_gri img,.tve_gr.tve_gr3 .tve_thc .tve_grt img{display:table;margin:0 auto;}}.tve_gr h1,.tve_gr h2,.tve_gr h3,.tve_gr h4,.tve_gr h5,.tve_gr h6{margin:0px !important;}.tve_gr .tve_gri{margin-top:10px;margin-right:10px;}.tve_gr .tve_gri.alignleft,.tve_gr .tve_gri.alignright{margin:10px 0 0 0;}.tve_gr .tve_gri.alignleft{margin-right:10px;}.tve_gr .tve_gri .alignleft,.tve_gr .tve_gri .alignright{margin:0;}.tve_gr .tve_gri .thrv_wrapper{margin:0;}.tve_gr img{display:block;max-width:100%;}.tve_gr.tve_gr1 .tve_gri{margin-right:5%;width:12%;}.tve_gr.tve_gr1 .tve_grt{width:83%;}.tve_gr.tve_gr2 .tve_gri{width:24%;}.tve_gr.tve_gr2 .tve_grt{width:71%;}.tve_gr.tve_gr3 .tve_gri{width:36%;}.tve_gr.tve_gr3 .tve_grt{width:59%;}@media only screen and (max-width: 600px){.tve_gr .colm{width:100%;}}.tve_gr h1,.tve_gr h2,.tve_gr h3,.tve_gr h4,.tve_gr h5,.tve_gr h6{margin:0 !important;}@media only screen and (max-width: 774px){.tve_gr.tve_gr1 .tve_gri{width:100%;}.tve_gr.tve_gr1 .tve_gri img{display:table;margin:0 auto;max-width:auto;width:auto;}}@media only screen and (max-width: 774px){.tve_gr.tve_gr1 .tve_grt{width:100%;}}@media only screen and (max-width: 774px){.tve_gr.tve_gr2 .tve_gri{width:100%;}.tve_gr.tve_gr2 .tve_gri img{display:table;margin:0 auto;max-width:auto;width:auto;}}@media only screen and (max-width: 774px){.tve_gr.tve_gr2 .tve_grt{width:100%;}}@media only screen and (max-width: 774px){.tve_gr.tve_gr3 .tve_gri{width:100%;}.tve_gr.tve_gr3 .tve_gri img{display:table;margin:0 auto;max-width:auto;width:auto;}}@media only screen and (max-width: 774px){.tve_gr.tve_gr3 .tve_grt{width:100%;}}@media only screen and (max-width: 1080px){.thrv_columns .tve_foc:not(.tve_df),.tve_gr .tve_foc:not(.tve_df){padding:0% 2% 0% 0%;width:49%;}.thrv_columns .tve_foc:not(.tve_df):nth-child(2n),.tve_gr .tve_foc:not(.tve_df):nth-child(2n){padding:0% 0% 0% 0%;}.thrv_columns .tve_fic,.tve_gr .tve_fic{padding:0% 2% 0% 0%;width:49%;}.thrv_columns .tve_fic:nth-child(2n),.tve_gr .tve_fic:nth-child(2n){padding:0% 0% 0% 0%;}.thrv_columns .tve_tfo:not(.tve_df),.tve_gr .tve_tfo:not(.tve_df){padding:0% 2% 0% 0%;width:49%;}.thrv_columns .tve_tfo:not(.tve_df):nth-child(2n),.tve_gr .tve_tfo:not(.tve_df):nth-child(2n){padding:0% 0% 0% 0%;}.thrv_columns .tve_foc:not(.tve_df)+.tve_twc.tve_lst,.tve_gr .tve_foc:not(.tve_df)+.tve_twc.tve_lst{padding:0;width:100%;}.thrv_columns .tve_foc:not(.tve_df)+.tve_twc,.tve_gr .tve_foc:not(.tve_df)+.tve_twc{padding:0;}.thrv_columns .tve_twc+.tve_foc:not(.tve_df).tve_lst,.tve_gr .tve_twc+.tve_foc:not(.tve_df).tve_lst{padding:0;width:100%;}.thrv_columns .tve_twc+.tve_foc:not(.tve_df)+.tve_foc:not(.tve_df).tve_lst,.tve_gr .tve_twc+.tve_foc:not(.tve_df)+.tve_foc:not(.tve_df).tve_lst{padding:0;width:100%;}#tve_editor .rfs{font-size:70px !important;}}@media only screen and (max-width: 940px){.thrv_columns .tve_thc,.thrv_columns .tve_oth,.thrv_columns .tve_tth,.tve_gr .tve_thc,.tve_gr .tve_oth,.tve_gr .tve_tth{padding:0%;width:100%;}.thrv_columns .tve_thc.tve_lst,.thrv_columns .tve_oth.tve_lst,.thrv_columns .tve_tth.tve_lst,.tve_gr .tve_thc.tve_lst,.tve_gr .tve_oth.tve_lst,.tve_gr .tve_tth.tve_lst{padding:0%;}.thrv_columns .tve_oth,.thrv_columns .tve_ofo,.tve_gr .tve_oth,.tve_gr .tve_ofo{padding:0%;width:100%;}.thrv_columns .tve_oth.tve_lst,.thrv_columns .tve_ofo.tve_lst,.tve_gr .tve_oth.tve_lst,.tve_gr .tve_ofo.tve_lst{padding:0%;width:100%;}.thrv_columns .tve_ofo,.tve_gr .tve_ofo{padding:0%;width:100%;}.thrv_columns .tve_tfo.tve_df,.thrv_columns .tve_tfo.tve_df.tve_lst,.tve_gr .tve_tfo.tve_df,.tve_gr .tve_tfo.tve_df.tve_lst{padding:0%;width:100%;}.thrv_columns .tve_fft,.tve_gr .tve_fft{padding:0%;width:49%;}.thrv_columns .tve_fft:first-child,.tve_gr .tve_fft:first-child{padding:0% 2% 0% 0%;}.thrv_columns .tve_fft.tve_lst,.tve_gr .tve_fft.tve_lst{padding:0% 0% 0% 0%;width:100%;}.thrv_columns .tve_twc+.tve_fft.tve_lst,.tve_gr .tve_twc+.tve_fft.tve_lst{padding:0%;}.thrv_columns .tve_fft+.tve_twc.tve_lst,.tve_gr .tve_fft+.tve_twc.tve_lst{width:100%;}.thrv_columns .tve_fft+.tve_twc,.tve_gr .tve_fft+.tve_twc{padding:0%;}}@media only screen and (min-width: 768px)and (max-width: 1200px){.thrv_table{overflow-x:auto;}}@media only screen and (max-width: 774px){.thrv_columns .tve_colm,.tve_gr .tve_colm{margin-right:0 !important;padding:0 !important;width:100% !important;}.tve_gr .tve_gri.alignleft .tve_image_caption,.tve_gr .tve_gri.alignleft .thrv_icon,.tve_gr .tve_gri.alignright .tve_image_caption,.tve_gr .tve_gri.alignright .thrv_icon{margin-left:auto;margin-right:auto;float:none;}}@media only screen and (max-width: 940px){.tve_gr3 .tve_twc .tve_gri .upload_image>span{display:none;}.tve_four{width:50%;}.tve_prt .tve_five{width:50%;}.tve_prt .tve_five:nth-child(4){margin-bottom:10px;}.tve_prt .tve_five:nth-child(5){display:table;float:none;margin:0px auto 0px;}}@media only screen and (max-width: 740px){.tve_colm .tve_gri .upload_image span{display:block !important;}.tve_scT>ul li{padding:15px 5px !important;}}@media only screen and (max-width: 774px){.tve_prt .tve_two,.tve_prt .tve_three,.tve_prt .tve_four,.tve_prt .tve_five{float:none;margin:10px 0px !important;width:100%;}}@media only screen and (max-width: 540px){#tve_editor .rft{font-size:30px !important;}#tve_editor .rfs{font-size:30px !important;}.tve_ca .tve_btn.tve_normalBtn{min-width:10px;}.tve_ca .tve_btn.tve_normalBtn a.tve_btnLink{font-size:16px;}.tve_btn.tve_bigBtn{min-width:10px;}.thrv_columns .tve_colm{width:100%;}.tve_scT>.tve_scTC{border-top-right-radius:0px;border-bottom-left-radius:4px;border-top:0;}.tve_scT>ul li{border-top:0;border-bottom:1px solid #d5d5d5;display:block;float:none;margin-left:0px !important;width:100%;border-radius:0px;}.tve_scT>ul li:first-child{border-top:1px solid #d5d5d5;border-top-left-radius:4px;border-top-right-radius:4px;}.tve_scT>ul li.tve_tS{margin-bottom:0 !important;padding-bottom:15px !important;}.tve_scT.tve_vtabs{padding-left:0 !important;}.tve_scT.tve_vtabs ul{position:static;width:auto !important;}.tve_scT.tve_vtabs ul li{border-radius:0;margin-bottom:0px !important;border-right:1px solid #d5d5d5;}.tve_scT.tve_vtabs ul li:first-child{border-top-left-radius:4px;border-top-right-radius:4px;}.tve_scT.tve_vtabs ul li.tve_tS{margin-right:0 !important;}.tve_scT.tve_vtabs .tve_scTC{left:0;border-top:0;border-top-right-radius:0px;border-top-left-radius:0px;min-height:0px !important;}}.thrv_wrapper .alignnone{margin:10px;}.thrv_wrapper .aligncenter{display:block;margin-left:auto;margin-right:auto;}.thrv_wrapper.aligncenter{display:block;margin-left:auto;margin-right:auto;}.thrv_wrapper .alignright{float:right;margin:10px 0 10px 20px;}.thrv_wrapper.alignright{float:right;margin:10px 0 10px 20px;}.thrv_wrapper .alignleft{float:left;margin:10px 20px 10px 0;}.thrv_wrapper.alignleft{float:left;margin:10px 20px 10px 0;}.thrv_wrapper.thrv_contentbox_shortcode{position:relative;}@charset "UTF-8";
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: rgb(10.4, 88, 202.4);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: rgb(206.6, 226, 254.6);
  --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(185.94, 203.4, 229.14);
}

.table-secondary {
  --bs-table-bg: rgb(225.6, 227.4, 229);
  --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(203.04, 204.66, 206.1);
}

.table-success {
  --bs-table-bg: rgb(209, 231, 220.8);
  --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(188.1, 207.9, 198.72);
}

.table-info {
  --bs-table-bg: rgb(206.6, 244.4, 252);
  --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(185.94, 219.96, 226.8);
}

.table-warning {
  --bs-table-bg: rgb(255, 242.6, 205.4);
  --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(229.5, 218.34, 184.86);
}

.table-danger {
  --bs-table-bg: rgb(248, 214.6, 217.8);
  --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(223.2, 193.14, 196.02);
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 224.1, 225);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(223.2, 224.1, 225);
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: rgb(55.2, 58.8, 62.4);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: rgb(221.35, 224.2, 227.05);
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: rgb(221.35, 224.2, 227.05);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + (0.75rem + 2px));
}
textarea.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
}
textarea.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(11.05, 93.5, 215.05);
  border-color: rgb(10.4, 88, 202.4);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: rgb(11.05, 93.5, 215.05);
  border-color: rgb(10.4, 88, 202.4);
  box-shadow: 0 0 0 0.25rem rgba(49.3, 131.75, 253.3, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(10.4, 88, 202.4);
  border-color: rgb(9.75, 82.5, 189.75);
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49.3, 131.75, 253.3, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(91.8, 99.45, 106.25);
  border-color: rgb(86.4, 93.6, 100);
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: rgb(91.8, 99.45, 106.25);
  border-color: rgb(86.4, 93.6, 100);
  box-shadow: 0 0 0 0.25rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(86.4, 93.6, 100);
  border-color: rgb(81, 87.75, 93.75);
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(21.25, 114.75, 71.4);
  border-color: rgb(20, 108, 67.2);
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: rgb(21.25, 114.75, 71.4);
  border-color: rgb(20, 108, 67.2);
  box-shadow: 0 0 0 0.25rem rgba(59.5, 153, 109.65, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(20, 108, 67.2);
  border-color: rgb(18.75, 101.25, 63);
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(59.5, 153, 109.65, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: rgb(49.3, 209.95, 242.25);
  border-color: rgb(37.2, 207.3, 241.5);
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: rgb(49.3, 209.95, 242.25);
  border-color: rgb(37.2, 207.3, 241.5);
  box-shadow: 0 0 0 0.25rem rgba(11.05, 171.7, 204, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: rgb(61.4, 212.6, 243);
  border-color: rgb(37.2, 207.3, 241.5);
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11.05, 171.7, 204, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: rgb(255, 202.3, 44.2);
  border-color: rgb(255, 199.2, 31.8);
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: rgb(255, 202.3, 44.2);
  border-color: rgb(255, 199.2, 31.8);
  box-shadow: 0 0 0 0.25rem rgba(216.75, 164.05, 5.95, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: rgb(255, 205.4, 56.6);
  border-color: rgb(255, 199.2, 31.8);
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(216.75, 164.05, 5.95, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(187, 45.05, 58.65);
  border-color: rgb(176, 42.4, 55.2);
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: rgb(187, 45.05, 58.65);
  border-color: rgb(176, 42.4, 55.2);
  box-shadow: 0 0 0 0.25rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(176, 42.4, 55.2);
  border-color: rgb(165, 39.75, 51.75);
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: rgb(249.05, 249.9, 250.75);
  border-color: rgb(248.7, 249.6, 250.5);
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: rgb(249.05, 249.9, 250.75);
  border-color: rgb(248.7, 249.6, 250.5);
  box-shadow: 0 0 0 0.25rem rgba(210.8, 211.65, 212.5, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: rgb(249.4, 250.2, 251);
  border-color: rgb(248.7, 249.6, 250.5);
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(210.8, 211.65, 212.5, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(28.05, 31.45, 34.85);
  border-color: rgb(26.4, 29.6, 32.8);
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: rgb(28.05, 31.45, 34.85);
  border-color: rgb(26.4, 29.6, 32.8);
  box-shadow: 0 0 0 0.25rem rgba(66.3, 69.7, 73.1, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(26.4, 29.6, 32.8);
  border-color: rgb(24.75, 27.75, 30.75);
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66.3, 69.7, 73.1, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #0d6efd;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: rgb(10.4, 88, 202.4);
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(29.7, 33.3, 36.9);
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: rgb(10.4, 88, 202.4);
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: rgb(11.7, 99, 227.7);
  background-color: rgb(230.8, 240.5, 254.8);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%2811.7, 99, 227.7%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: rgb(10.4, 88, 202.4);
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: rgb(10.4, 88, 202.4);
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: rgb(7.8, 66, 151.8);
  background-color: rgb(206.6, 226, 254.6);
  border-color: rgb(182.4, 211.5, 254.4);
}
.alert-primary .alert-link {
  color: rgb(6.24, 52.8, 121.44);
}

.alert-secondary {
  color: rgb(64.8, 70.2, 75);
  background-color: rgb(225.6, 227.4, 229);
  border-color: rgb(210.9, 213.6, 216);
}
.alert-secondary .alert-link {
  color: rgb(51.84, 56.16, 60);
}

.alert-success {
  color: rgb(15, 81, 50.4);
  background-color: rgb(209, 231, 220.8);
  border-color: rgb(186, 219, 203.7);
}
.alert-success .alert-link {
  color: rgb(12, 64.8, 40.32);
}

.alert-info {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(206.6, 244.4, 252);
  border-color: rgb(182.4, 239.1, 250.5);
}
.alert-info .alert-link {
  color: rgb(4.16, 64.64, 76.8);
}

.alert-warning {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 236.4, 180.6);
}
.alert-warning .alert-link {
  color: rgb(81.6, 61.76, 2.24);
}

.alert-danger {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(248, 214.6, 217.8);
  border-color: rgb(244.5, 194.4, 199.2);
}
.alert-danger .alert-link {
  color: rgb(105.6, 25.44, 33.12);
}

.alert-light {
  color: rgb(99.2, 99.6, 100);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(252.9, 253.2, 253.5);
}
.alert-light .alert-link {
  color: rgb(79.36, 79.68, 80);
}

.alert-dark {
  color: rgb(19.8, 22.2, 24.6);
  background-color: rgb(210.6, 211.4, 212.2);
  border-color: rgb(188.4, 189.6, 190.8);
}
.alert-dark .alert-link {
  color: rgb(15.84, 17.76, 19.68);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(7.8, 66, 151.8);
  background-color: rgb(206.6, 226, 254.6);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(7.8, 66, 151.8);
  background-color: rgb(185.94, 203.4, 229.14);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(7.8, 66, 151.8);
  border-color: rgb(7.8, 66, 151.8);
}

.list-group-item-secondary {
  color: rgb(64.8, 70.2, 75);
  background-color: rgb(225.6, 227.4, 229);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(64.8, 70.2, 75);
  background-color: rgb(203.04, 204.66, 206.1);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(64.8, 70.2, 75);
  border-color: rgb(64.8, 70.2, 75);
}

.list-group-item-success {
  color: rgb(15, 81, 50.4);
  background-color: rgb(209, 231, 220.8);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(15, 81, 50.4);
  background-color: rgb(188.1, 207.9, 198.72);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(15, 81, 50.4);
  border-color: rgb(15, 81, 50.4);
}

.list-group-item-info {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(206.6, 244.4, 252);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(185.94, 219.96, 226.8);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(5.2, 80.8, 96);
  border-color: rgb(5.2, 80.8, 96);
}

.list-group-item-warning {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(255, 242.6, 205.4);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(229.5, 218.34, 184.86);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(102, 77.2, 2.8);
  border-color: rgb(102, 77.2, 2.8);
}

.list-group-item-danger {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(248, 214.6, 217.8);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(223.2, 193.14, 196.02);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132, 31.8, 41.4);
  border-color: rgb(132, 31.8, 41.4);
}

.list-group-item-light {
  color: rgb(99.2, 99.6, 100);
  background-color: rgb(253.6, 253.8, 254);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(99.2, 99.6, 100);
  background-color: rgb(228.24, 228.42, 228.6);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(99.2, 99.6, 100);
  border-color: rgb(99.2, 99.6, 100);
}

.list-group-item-dark {
  color: rgb(19.8, 22.2, 24.6);
  background-color: rgb(210.6, 211.4, 212.2);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(19.8, 22.2, 24.6);
  background-color: rgb(189.54, 190.26, 190.98);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(19.8, 22.2, 24.6);
  border-color: rgb(19.8, 22.2, 24.6);
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
  opacity: 0;
}
.toast.hide {
  display: none;
}

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(239.7, 239.7, 239.7);
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(239.7, 239.7, 239.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

.offcanvas.show {
  transform: none;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: rgb(10.4, 88, 202.4);
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: rgb(86.4, 93.6, 100);
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: rgb(20, 108, 67.2);
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: rgb(61.4, 212.6, 243);
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: rgb(255, 205.4, 56.6);
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: rgb(176, 42.4, 55.2);
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: rgb(249.4, 250.2, 251);
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: rgb(26.4, 29.6, 32.8);
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

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

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

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

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

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

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

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

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

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

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

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

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

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

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

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

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/* Gallery
--------------------------------------------- */
.gallery {
  overflow: hidden;
}

.gallery img {
  border: 1px solid #eee;
  height: auto;
  padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
  border: 1px solid #999;
  outline: none;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

.gallery-item {
  float: left;
  margin: 0 0 30px;
  text-align: center;
}

/* WordPress
--------------------------------------------- */
a.aligncenter img {
  display: block;
  margin: 0 auto;
}

a.alignnone {
  display: inline-block;
}

.alignleft {
  float: left;
  text-align: left;
}

.alignright {
  float: right;
  text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
  max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
  display: block;
  margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
  margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
  margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
  margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.5em;
  margin-bottom: 1em;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.entry-content p.wp-caption-text {
  margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
  margin: 0 0 30px;
}

/* Media Queries
---------------------------------------------------------------------------- */
@media only screen and (min-width: 480px) {
  table {
    table-layout: auto;
    word-break: normal;
  }
}
@media only screen and (min-width: 960px) {
  /* Genesis Menu
  --------------------------------------------- */
  .genesis-nav-menu .menu-item {
    display: inline-block;
  }
  .genesis-nav-menu .menu-item:focus,
  .genesis-nav-menu .menu-item:hover {
    position: relative;
  }
  .genesis-nav-menu > .menu-bold > a {
    font-weight: 700;
  }
  .genesis-nav-menu > .menu-highlight > a {
    background-color: #333;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    margin-left: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .genesis-nav-menu > .menu-highlight > a:focus,
  .genesis-nav-menu > .menu-highlight > a:hover {
    background-color: #0073e5;
  }
  .genesis-nav-menu .sub-menu,
  .genesis-nav-menu .sub-menu a {
    width: 180px;
  }
  .genesis-nav-menu .sub-menu {
    border-top: 1px solid #eee;
    opacity: 0;
    padding-left: 0;
    position: absolute;
    transition: opacity 0.4s ease-in-out;
  }
  .genesis-nav-menu .sub-menu a {
    border: 1px solid #eee;
    border-top: 0;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .genesis-nav-menu .sub-menu .sub-menu {
    margin: -46px 0 0 179px;
  }
  /* Responsive Menu
  --------------------------------------------- */
  .js .nav-primary {
    display: block;
    padding-top: 15px;
  }
  .menu-toggle,
  .sub-menu-toggle {
    display: none;
    visibility: hidden;
  }
  /* Header Menu
  --------------------------------------------- */
  .nav-primary {
    clear: none;
    float: right;
    width: auto;
  }
  .nav-primary .genesis-nav-menu a {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Site-Inner
  --------------------------------------------- */
  .site-inner {
    max-width: 1140px;
  }
  /* Author Box
  --------------------------------------------- */
  .author-box {
    background-color: #f5f5f5;
    padding: 30px;
  }
  /* After Entry
  --------------------------------------------- */
  .after-entry {
    padding: 40px 60px;
  }
  .after-entry .enews {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* Column Classes
  --------------------------------------------- */
  .five-sixths,
  .four-sixths,
  .one-fourth,
  .one-half,
  .one-sixth,
  .one-third,
  .three-fourths,
  .three-sixths,
  .two-fourths,
  .two-sixths,
  .two-thirds {
    float: left;
    margin-left: 2.5641025641%;
  }
  .one-half,
  .three-sixths,
  .two-fourths {
    width: 48.7179487179%;
  }
  .one-third,
  .two-sixths {
    width: 31.6239316239%;
  }
  .four-sixths,
  .two-thirds {
    width: 65.811965812%;
  }
  .one-fourth {
    width: 23.0769230769%;
  }
  .three-fourths {
    width: 74.358974359%;
  }
  .one-sixth {
    width: 14.5299145299%;
  }
  .five-sixths {
    width: 82.905982906%;
  }
  .first {
    clear: both;
    margin-left: 0;
  }
  /* Entry Misc.
  --------------------------------------------- */
  .after-entry,
  .archive-description,
  .author-box,
  .comment-respond,
  .entry,
  .entry-comments,
  .entry-pings {
    margin-bottom: 60px;
  }
  /* Footer Widgets
  --------------------------------------------- */
  .footer-widgets .wrap {
    max-width: 1140px;
  }
  .footer-widget-area {
    float: left;
    margin-bottom: 0;
    width: 33.3333333333%;
  }
}
/* Print Styles
---------------------------------------------------------------------------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    box-shadow: none !important;
    color: #333 !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]::after,
  a[href^="#"]::after,
  .site-title > a::after {
    content: "";
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 2cm 0.5cm;
  }
  p,
  h2,
  .h2,
  h3,
  .h3 {
    orphans: 3;
    widows: 3;
  }
  blockquote,
  pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  .content,
  .content-sidebar {
    width: 100%;
  }
  button,
  input,
  select,
  textarea,
  .breadcrumb,
  .comment-edit-link,
  .comment-form,
  .comment-list .reply a,
  .comment-reply-title,
  .edit-link,
  .entry-comments-link,
  .entry-footer,
  .genesis-box,
  .header-widget-area,
  .hidden-print,
  .home-top,
  .nav-primary,
  .nav-secondary,
  .post-edit-link,
  .sidebar {
    display: none !important;
  }
  .title-area {
    text-align: center;
    width: 100%;
  }
  .site-title > a {
    margin: 0;
    text-decoration: none;
    text-indent: 0;
  }
  .site-inner {
    padding-top: 0;
    position: relative;
  }
  .author-box {
    margin-bottom: 0;
  }
  h1, .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    orphans: 3;
    page-break-after: avoid;
    page-break-inside: avoid;
    widows: 3;
  }
  img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  blockquote,
  pre,
  table {
    page-break-inside: avoid;
  }
  dl,
  ol,
  ul {
    page-break-before: avoid;
  }
}
/* Site Header
--------------------------------------------- */
#headerMobile {
  display: none;
}

.site-header #header, .site-header #headerMobile {
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 2147483001;
  background: #FFF;
}
.site-header #header {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.site-header.scrolled {
  background-color: #FFF;
  transition: background-color 0.3s ease;
}
.site-header .btn.btn-login {
  border: 1px solid var(--blue-brand);
  border-radius: 100px;
  color: var(--blue-1brand);
  background: var(--white);
  display: flex;
  gap: 4px;
  height: 40px;
  padding: 8px 24px 8px 20px;
  text-align: center;
  width: 115px;
  display: flex;
  align-items: center;
}
.site-header .btn.btn-login span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.site-header .btn.btn-start-screening {
  align-items: center;
  background: #D32F2F;
  color: var(--white);
  border-radius: 100px;
  display: flex;
  gap: 8px;
  height: 40px;
  padding: 8px 24px;
  white-space: nowrap;
  width: 198px;
}
.site-header .btn.btn-start-screening span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.site-header .navbar {
  padding-bottom: 0;
  padding-top: 0;
}
.site-header .navbar nav {
  gap: 8px;
  padding: 10px 0px;
}
.site-header .navbar nav li {
  margin-right: 36px;
}
.site-header .navbar nav li a {
  color: var(--blue-brand);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-decoration: none;
}
.site-header .navbar nav li a:hover {
  color: var(--orange);
}
.site-header .navbar-toggler {
  box-shadow: none;
  color: var(--blue);
  padding-left: 0;
  padding-right: 0;
}
.site-header .navbar-toggler i {
  font-size: 30px;
}
.site-header div.container-menu nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.site-header div.container-menu nav form {
  gap: 16px;
  justify-content: flex-end;
  margin-left: auto;
}
.site-header .menu-cta {
  display: flex;
}
@media (min-width: 768px) {
  .site-header .container {
    padding: 0;
  }
  .site-header .custom-logo-link, .site-header .custom-logo-link-mobile {
    margin-right: 70px;
  }
  .site-header .custom-logo-link img, .site-header .custom-logo-link-mobile img {
    max-height: 32px;
    max-width: 162px;
  }
}

@media (max-width: 768px) {
  #headerMobile {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: top 0.3s;
    background-color: transparent;
    box-shadow: unset;
  }
  #headerMobile.navbar-collapse.show {
    background-color: #FFF;
  }
  #headerMobile .navbar {
    padding: 14px 4px;
  }
  #headerMobile div.container-menu nav {
    display: none;
    padding: 40px 0;
  }
  #headerMobile div.container-menu nav.show {
    display: flex;
  }
  #headerMobile div.container-menu nav ul li.menu-item {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #headerMobile div.container-menu nav ul li.menu-item a {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
  }
  #headerMobile div.container-menu nav ul:first-child {
    padding-top: 0;
  }
  #headerMobile div.container-menu nav ul:last-child {
    padding-bottom: 0;
  }
  #headerMobile i.bi-list::before {
    color: var(--blue-darker);
    font-weight: 900 !important;
  }
  #headerMobile .btn-cta .cta-menu-btn {
    padding: 12px 32px 12px 32px;
    width: 342px;
    height: 48px;
    gap: 8px;
    border-radius: 100px;
    background-color: #F04D30;
    border: unset;
  }
  #headerMobile .btn-cta .cta-menu-btn span {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }
  #headerMobile .v2-mobile-btn {
    display: grid;
  }
  .site-header #custom-logo {
    display: block;
  }
  .site-header #custom-logo-mobile {
    display: none;
  }
  .site-header #header, .site-header #headerMobile {
    padding: 0 20px;
  }
  .site-header #header.change-color #custom-logo, .site-header #headerMobile.change-color #custom-logo {
    display: block;
  }
  .site-header #header.change-color #custom-logo-mobile, .site-header #headerMobile.change-color #custom-logo-mobile {
    display: none;
  }
  .site-header #header.change-color i.bi-list::before, .site-header #headerMobile.change-color i.bi-list::before {
    color: #193761;
  }
  .site-header #header.on-top #custom-logo, .site-header #headerMobile.on-top #custom-logo {
    display: none;
  }
  .site-header #header.on-top #custom-logo-mobile, .site-header #headerMobile.on-top #custom-logo-mobile {
    display: block;
  }
  .site-header #header.on-top i.bi-list::before, .site-header #headerMobile.on-top i.bi-list::before {
    color: #FFF;
  }
  .site-header .navbar .container-fluid, .site-header .navbar .container-sm, .site-header .navbar .container-md, .site-header .navbar .container-lg, .site-header .navbar .container-xl, .site-header .navbar .container-xxl {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header .custom-logo-link img {
    max-height: 24px;
    max-width: 122px;
  }
  .site-header div.container-menu {
    justify-content: unset;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  #headerMobile {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: top 0.3s;
    background-color: transparent;
    box-shadow: unset;
  }
  #headerMobile.navbar-collapse.show {
    background-color: #FFF;
  }
  #headerMobile .navbar {
    padding: 14px 4px;
  }
  #headerMobile div.container-menu nav {
    display: none;
    padding: 40px 0;
  }
  #headerMobile div.container-menu nav.show {
    display: flex;
  }
  #headerMobile div.container-menu nav ul li.menu-item {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #headerMobile div.container-menu nav ul li.menu-item a {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
  }
  #headerMobile div.container-menu nav ul:first-child {
    padding-top: 0;
  }
  #headerMobile div.container-menu nav ul:last-child {
    padding-bottom: 0;
  }
  #headerMobile i.bi-list::before {
    color: var(--blue-darker);
    font-weight: 900 !important;
  }
  #headerMobile .btn-cta .cta-menu-btn {
    padding: 12px 32px 12px 32px;
    width: 342px;
    height: 48px;
    gap: 8px;
    border-radius: 100px;
    background-color: #F04D30;
    border: unset;
  }
  #headerMobile .btn-cta .cta-menu-btn span {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }
  #headerMobile .v2-mobile-btn {
    display: grid;
  }
  .site-header #custom-logo {
    display: block;
  }
  .site-header #custom-logo-mobile {
    display: none;
  }
  .site-header #header, .site-header #headerMobile {
    padding: 0 20px;
  }
  .site-header #header.change-color #custom-logo, .site-header #headerMobile.change-color #custom-logo {
    display: block;
  }
  .site-header #header.change-color #custom-logo-mobile, .site-header #headerMobile.change-color #custom-logo-mobile {
    display: none;
  }
  .site-header #header.change-color i.bi-list::before, .site-header #headerMobile.change-color i.bi-list::before {
    color: #193761;
  }
  .site-header #header.on-top #custom-logo, .site-header #headerMobile.on-top #custom-logo {
    display: none;
  }
  .site-header #header.on-top #custom-logo-mobile, .site-header #headerMobile.on-top #custom-logo-mobile {
    display: block;
  }
  .site-header #header.on-top i.bi-list::before, .site-header #headerMobile.on-top i.bi-list::before {
    color: #FFF;
  }
  .site-header .navbar .container-fluid, .site-header .navbar .container-sm, .site-header .navbar .container-md, .site-header .navbar .container-lg, .site-header .navbar .container-xl, .site-header .navbar .container-xxl {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header .custom-logo-link img {
    max-height: 24px;
    max-width: 122px;
  }
  .site-header div.container-menu {
    justify-content: unset;
  }
}
@media (max-width: 768px) {
  #header {
    display: none;
  }
  #headerMobile {
    display: block;
  }
}
@media (min-width: 576px) {
  #header {
    display: none;
  }
  #headerMobile {
    display: block;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  #header {
    display: none;
  }
  #headerMobile {
    display: block;
  }
}
@media (min-width: 992px) {
  #header {
    display: block;
  }
  #headerMobile {
    display: none;
  }
}
/** Footer **/
.site-inner {
  padding-top: 60px;
}

@media (min-width: 601px) {
  .admin-bar .site-inner {
    padding-top: 92px;
  }
}
/** Footer **/
.site-footer {
  background-color: var(--blue-brand);
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  padding: 0 0 16px 0;
}
.site-footer a {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--orange);
}
.site-footer .footer-content {
  background-color: var(--blue-brand);
  padding: 64px 0;
}
.site-footer .footer-content .footer-menu-container-contact ul li img {
  margin-right: 8px;
}
.site-footer .footer-content .footer-menu-container-contact ul li:first-child {
  display: flex;
  align-items: flex-start;
}
.site-footer .footer-content .footer-menu-container-contact ul li:first-child img {
  vertical-align: top;
  display: block;
}
.site-footer .footer-content-left .footer-logo {
  height: 24px;
  width: 121px;
  object-fit: contain;
}
.site-footer .footer-content-left .footer-divider {
  display: none;
}
.site-footer .footer-content-right {
  column-count: 3;
  column-gap: 40px;
  display: -webkit-columns;
  max-height: 424px;
}
.site-footer .footer-content-right .footer-menu-container {
  page-break-inside: avoid;
  break-inside: avoid;
}
.site-footer .footer-content-right .footer-menu-container ul.menu, .site-footer .footer-content-right .footer-menu-container ul {
  padding-left: 0;
}
.site-footer .footer-content-right .footer-menu-container .text-consent {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-align: left;
}
.site-footer .footer-content-right .footer-menu-container .text-consent p {
  color: #FFF;
}
.site-footer .footer-content-right .footer-menu-container .text-consent p:nth-child(1) {
  margin-bottom: 4px;
}
.site-footer .footer-content-mission {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
.site-footer .footer-content-icons img {
  display: inline-block;
}
@media (min-width: 600px) and (max-width: 1366px) {
  .site-footer .footer-content-icons img {
    margin-top: 20px;
  }
}
.site-footer .footer-content-icons img:first-of-type {
  margin-right: 40px;
}
@media (min-width: 600px) and (max-width: 1366px) {
  .site-footer .footer-content-icons img:first-of-type {
    margin-right: 0;
  }
}
.site-footer .footer-content-social-media {
  margin-bottom: 32px;
  margin-top: 16px;
}
.site-footer .footer-content-social-media li {
  display: inline-block;
}
.site-footer .footer-content-social-media img {
  display: inline-block;
  margin-right: 8px;
}
@media (min-width: 600px) and (max-width: 1366px) {
  .site-footer .footer-content-social-media img {
    margin-right: 4px;
  }
}
.site-footer .footer-menu-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  margin-top: 27px;
}
.site-footer .footer-menu-title:first-child {
  margin-top: 0;
}
.site-footer .footer-menu-container li {
  display: block;
  margin-bottom: 16px;
}
.site-footer .footer-menu-container a {
  margin: 0;
}
.site-footer .footer-copyright {
  width: 100%;
  height: 56px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-copyright .footer-divider {
  height: 1px;
  border: none;
  background-color: var(--white);
}
.site-footer .footer-copyright .copyright-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.site-footer .footer-copyright .footer-links {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: right;
}
.site-footer .footer-copyright .footer-links a {
  margin-left: 20px;
  text-decoration: underline;
  color: inherit;
}
.site-footer .footer-content-mobile {
  display: none;
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    padding-top: 0;
    padding-bottom: 24px;
  }
  .site-footer .footer-content-left {
    padding: 24px 20px 0px;
    text-align: center;
  }
  .site-footer .footer-content-left .footer-logo {
    height: 32px;
    width: 159px;
  }
  .site-footer .footer-content-left .footer-content-social-media, .site-footer .footer-content-left .footer-content-icons {
    text-align: center;
  }
  .site-footer .footer-content-left .footer-content-social-media {
    margin-top: 40px;
    margin-bottom: 40px;
    width: auto;
  }
  .site-footer .footer-content-left .footer-divider {
    display: block;
    margin: 40px 0 40px;
  }
  .site-footer .footer-content-right {
    column-count: 1;
    column-gap: 0;
    max-height: none;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .site-footer .footer-menu-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer .footer-content-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .footer-content-mobile p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }
  .site-footer .footer-content-mobile .contact-list {
    display: flex;
    gap: 16px;
    list-style: none;
  }
  .site-footer .footer-content-mobile .contact-list li {
    display: flex;
    align-items: center;
  }
  .site-footer .footer-content-mission {
    padding-left: 0;
  }
  .site-footer .footer-copyright {
    border-top: solid 1px var(--white);
  }
  .site-footer .footer-copyright .copyright-text, .site-footer .footer-copyright .footer-links {
    text-align: center;
  }
  .site-footer .footer-copyright .copyright-text {
    margin-top: 16px;
  }
  .site-footer .footer-copyright .footer-links {
    margin-top: 8px;
  }
  .site-footer .footer-copyright .copyright-text {
    margin-top: 16px;
  }
  .site-footer .footer-copyright .footer-divider {
    display: none;
  }
}

/* Arrows */
.slick-prev,
.slick-next {
  background: transparent;
  border: none;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: transparent;
  color: transparent;
  outline: none;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  color: white;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
[dir=rtl] .slick-prev:before {
  content: "→";
}
.slick-prev:before {
  content: "←";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
[dir=rtl] .slick-next:before {
  content: "←";
}
.slick-next:before {
  content: "→";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.slick-dots li {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  position: relative;
  width: 20px;
}
.slick-dots li button {
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: none;
  padding: 5px;
  width: 20px;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  color: black;
  content: "•";
  font-size: 6px;
  height: 20px;
  left: 0;
  line-height: 20px;
  opacity: 0.25;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-touch-action: pan-y;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.slick-list {
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: hand;
  cursor: pointer;
}

.slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}
.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  border: 1px solid transparent;
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

.certifications {
  background-color: #F9F6F2;
  min-height: 140px;
}
.certifications .certifications-slider {
  margin: 0 auto;
  width: 100%;
}
.certifications .certifications-slider .certification-item {
  padding: 0 24px;
  text-align: center;
}
.certifications .certifications-slider .certification-item img {
  display: inline-block;
  height: 60px;
  object-fit: contain;
  width: auto;
}
.certifications .review-card {
  display: none;
}
@media (max-width: 768px) {
  .certifications .review-card {
    background-color: #FFF;
    border-radius: 8px;
    display: block;
    gap: 24px;
    margin: 24px 0px 0px 0px;
    text-align: center;
  }
  .certifications .review-card blockquote {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 24px;
  }
  .certifications .review-card blockquote .reviews-stars-icons {
    height: 20px;
    margin-bottom: 16px;
  }
  .certifications .review-card blockquote p {
    margin: 16px 0 16px;
    text-align: left;
  }
  .certifications .review-card blockquote span {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }
  .certifications .review-card blockquote .review-customer {
    margin-left: 48px;
    margin-right: 48px;
    text-align: left;
  }
  .certifications .review-card blockquote .review-customer .cite {
    color: #474D66;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
  }
  .certifications .review-card blockquote .review-customer .verified-text {
    color: #676F92;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-left: 4px;
    text-align: left;
  }
  .certifications .review-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}
.certifications .slick-list {
  overflow: hidden;
  position: relative;
}
.certifications .slick-list::before,
.certifications .slick-list::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 300px;
  z-index: 2;
}
@media (max-width: 768px) {
  .certifications .slick-list::before,
  .certifications .slick-list::after {
    width: 25%;
  }
}
.certifications .slick-list::before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #F9F6F2);
  left: 0;
}
.certifications .slick-list::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #F9F6F2);
  right: 0;
}
@media (max-width: 768px) {
  .certifications .box-container {
    padding: 32px 24px;
  }
  .certifications .box-container img {
    max-height: 60px;
  }
}

.slick-track {
  align-items: center;
  display: flex;
}

.slick-slide {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
}

/** Overrides **/
/** Photo Swiper **/
.pswp {
  z-index: 9999 !important;
}

/** Bootstrap Accordion **/
.accordion .accordion-button {
  color: var(--blue-darker);
  padding: 20px 0;
}
.accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: inherit;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-body {
  padding: 20px 0;
}

/** Table of Contents **/
.ov-table-of-contents h2, .ov-table-of-contents .h2 {
  background-color: var(--blue-brand);
}
.ov-table-of-contents a {
  text-decoration: none;
}

:root {
  --font-primary: Raleway, sans-serif;
  --black: #1A1A1A;
  --blue: #008CD9;
  --blue-light: #F3F6FF;
  --blue-medium: #D6E4FF;
  --blue-dark: #004F7A;
  --blue-darker: #002E34;
  --blue-teal: #292D3E;
  --light-sky-blue: #EBF0FF;
  --green: #3CB34B;
  --grey-light: #F9FBF8;
  --grey-lighter: #EDEDED;
  --grey-text: #9E9E9E;
  --orange: #F04D30;
  --white: #FFF;
  --white-alt: #F6F6F6;
  --yellow: #FBBC04;
  --yellow-light: #FCEFD9;
  --blue-brand: #193761;
  --red-brand: #D32F2F;
  --blue-gray: #474D66;
  --steel-blue: #676F92;
  --cherry-rush: #DF272D;
  --gold-yellow: #FBBC05;
  --navy-blue: #003462;
  --natural-gray: #8D8D8D;
  --wave-blue: #007bff;
  --link-url: #4286F4;
  --h-blue: #137AEA;
  --h-green: #19BB46;
  --h-grey: #757575;
  --bg-blue: #008CD9;
  --bg-blue-light: #F3F6FF;
  --bg-blue-medium: #D6E4FF;
  --bg-blue-dark: #004F7A;
  --bg-grey-light: #F9FBF8;
  --bg-teal: rgba(0, 67, 76, 0.1);
  --bg-light-red: #F9F2F2;
  --bg-light-blue: #F3F8FF;
  --shadow-black: rgba(149, 157, 165, 0.2);
  --transition-default: all 0.2s ease-in-out;
}

/** Imported here so it uses root variables **/
.btn.btn-red {
  background-color: var(--red-brand);
  border-radius: 100px;
  color: #FFF;
}
.btn.btn-red.btn-red-cta {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  padding: 14px 32px;
  vertical-align: middle;
}
.btn.btn-red.btn-red-cta span {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .btn.btn-red.btn-red-cta {
    width: 100%;
  }
}

/** General **/
html {
  overflow-x: hidden;
}
html body {
  color: var(--blue-darker);
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow-x: clip;
}
html strong {
  font-weight: 600;
}
html a {
  color: var(--blue-brand);
  text-decoration: none;
}
html a:hover {
  color: var(--orange);
}

/** Backgrounds **/
.bg-black {
  background-color: var(--black);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-blue-light {
  background-color: var(--blue-light);
}

.bg-blue-medium {
  background-color: var(--blue-medium);
}

.bg-blue-dark {
  background-color: var(--blue-dark);
}

.bg-grey-light {
  background-color: var(--grey-light);
}

.bg-white {
  background-color: var(--white);
}

.bg-blue-light {
  background-color: var(--bg-blue-light);
}

.bg-real {
  background-color: var(--bg-teal);
}

.bg-light-red {
  background-color: var(--bg-light-red);
}

#wpadminbar {
  z-index: 2147483002 !important;
}

/** Heading **/
h2, .h2, h3, .h3, h4, .h4 {
  border-left-style: solid;
  border-left-width: 4px;
  line-height: normal;
  margin-bottom: 6px;
  padding-left: 6px;
}
h2.no-border, .no-border.h2, h3.no-border, .no-border.h3, h4.no-border, .no-border.h4 {
  border: none;
  padding-left: 6px;
}

h2, .h2 {
  border-left-color: var(--h-blue);
  font-size: 28px;
}

h3, .h3 {
  border-left-color: var(--h-green);
  font-size: 24px;
  padding-left: 6px;
}

h4, .h4 {
  border-left-color: var(--h-grey);
  font-size: 18px;
}

/** Buttons **/
.wp-block-button__link {
  background-color: var(--blue);
  border-radius: 4px;
  box-shadow: none;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 20px;
  text-decoration: none;
}
.wp-block-button__link:hover {
  background-color: var(--blue-dark);
  color: var(--white);
}
.wp-block-button__link:focus {
  color: var(--white);
}

/** Paragraphs **/
p {
  margin: 0 0 20px;
  padding: 0;
}

/** Buttons **/
.btn {
  font-size: 12px;
  font-weight: 600;
}
.btn.btn-blue {
  background-color: var(--blue);
  color: var(--white-alt);
}
.btn.btn-blue-teal {
  background-color: var(--blue-brand);
  color: var(--white-alt);
}
.btn.btn-orange {
  background-color: var(--orange);
  color: var(--white-alt);
}

/** Templates **/
.entry-header .entry-meta {
  margin-bottom: 8px;
}
.entry-header .entry-header-inner-container {
  position: relative;
}
.entry-header .entry-header-inner-container .entry-header-overlay {
  background: linear-gradient(180deg, rgba(111, 51, 51, 0.25), #004f7a);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.entry-header .entry-header-inner-container h1, .entry-header .entry-header-inner-container .h1 {
  bottom: 20px;
  color: #fff;
  font-size: 62px;
  left: 20px;
  line-height: 74px;
  margin: 0;
  max-height: calc(100% - 30px);
  max-width: calc(100% - 40px);
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  white-space: normal;
}
.entry-header .entry-header-inner-container img {
  object-fit: cover;
  width: 100%;
}

.site-inner {
  margin: 0 auto;
  padding: 80px 20px 0;
}

.with-sidebar .content-sidebar-wrap {
  display: flex;
}
.with-sidebar .content-sidebar-wrap .sidebar {
  width: 360px;
}
.with-sidebar .content-sidebar-wrap .content {
  margin-right: 80px;
  max-width: 820px;
}

@media only screen and (min-width: 992px) {
  .site-inner {
    padding: 90px 0 20px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .site-inner {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1400px) {
  .site-inner {
    max-width: 1320px;
  }
}
/*# sourceMappingURL=main.css.map */
/*!
 * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */@font-face{font-display:block;font-family:bootstrap-icons;src:url("fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),url("fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff")}.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123::before{content:"\f67f"}.bi-alarm-fill::before{content:"\f101"}.bi-alarm::before{content:"\f102"}.bi-align-bottom::before{content:"\f103"}.bi-align-center::before{content:"\f104"}.bi-align-end::before{content:"\f105"}.bi-align-middle::before{content:"\f106"}.bi-align-start::before{content:"\f107"}.bi-align-top::before{content:"\f108"}.bi-alt::before{content:"\f109"}.bi-app-indicator::before{content:"\f10a"}.bi-app::before{content:"\f10b"}.bi-archive-fill::before{content:"\f10c"}.bi-archive::before{content:"\f10d"}.bi-arrow-90deg-down::before{content:"\f10e"}.bi-arrow-90deg-left::before{content:"\f10f"}.bi-arrow-90deg-right::before{content:"\f110"}.bi-arrow-90deg-up::before{content:"\f111"}.bi-arrow-bar-down::before{content:"\f112"}.bi-arrow-bar-left::before{content:"\f113"}.bi-arrow-bar-right::before{content:"\f114"}.bi-arrow-bar-up::before{content:"\f115"}.bi-arrow-clockwise::before{content:"\f116"}.bi-arrow-counterclockwise::before{content:"\f117"}.bi-arrow-down-circle-fill::before{content:"\f118"}.bi-arrow-down-circle::before{content:"\f119"}.bi-arrow-down-left-circle-fill::before{content:"\f11a"}.bi-arrow-down-left-circle::before{content:"\f11b"}.bi-arrow-down-left-square-fill::before{content:"\f11c"}.bi-arrow-down-left-square::before{content:"\f11d"}.bi-arrow-down-left::before{content:"\f11e"}.bi-arrow-down-right-circle-fill::before{content:"\f11f"}.bi-arrow-down-right-circle::before{content:"\f120"}.bi-arrow-down-right-square-fill::before{content:"\f121"}.bi-arrow-down-right-square::before{content:"\f122"}.bi-arrow-down-right::before{content:"\f123"}.bi-arrow-down-short::before{content:"\f124"}.bi-arrow-down-square-fill::before{content:"\f125"}.bi-arrow-down-square::before{content:"\f126"}.bi-arrow-down-up::before{content:"\f127"}.bi-arrow-down::before{content:"\f128"}.bi-arrow-left-circle-fill::before{content:"\f129"}.bi-arrow-left-circle::before{content:"\f12a"}.bi-arrow-left-right::before{content:"\f12b"}.bi-arrow-left-short::before{content:"\f12c"}.bi-arrow-left-square-fill::before{content:"\f12d"}.bi-arrow-left-square::before{content:"\f12e"}.bi-arrow-left::before{content:"\f12f"}.bi-arrow-repeat::before{content:"\f130"}.bi-arrow-return-left::before{content:"\f131"}.bi-arrow-return-right::before{content:"\f132"}.bi-arrow-right-circle-fill::before{content:"\f133"}.bi-arrow-right-circle::before{content:"\f134"}.bi-arrow-right-short::before{content:"\f135"}.bi-arrow-right-square-fill::before{content:"\f136"}.bi-arrow-right-square::before{content:"\f137"}.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-circle-fill::before{content:"\f139"}.bi-arrow-up-circle::before{content:"\f13a"}.bi-arrow-up-left-circle-fill::before{content:"\f13b"}.bi-arrow-up-left-circle::before{content:"\f13c"}.bi-arrow-up-left-square-fill::before{content:"\f13d"}.bi-arrow-up-left-square::before{content:"\f13e"}.bi-arrow-up-left::before{content:"\f13f"}.bi-arrow-up-right-circle-fill::before{content:"\f140"}.bi-arrow-up-right-circle::before{content:"\f141"}.bi-arrow-up-right-square-fill::before{content:"\f142"}.bi-arrow-up-right-square::before{content:"\f143"}.bi-arrow-up-right::before{content:"\f144"}.bi-arrow-up-short::before{content:"\f145"}.bi-arrow-up-square-fill::before{content:"\f146"}.bi-arrow-up-square::before{content:"\f147"}.bi-arrow-up::before{content:"\f148"}.bi-arrows-angle-contract::before{content:"\f149"}.bi-arrows-angle-expand::before{content:"\f14a"}.bi-arrows-collapse::before{content:"\f14b"}.bi-arrows-expand::before{content:"\f14c"}.bi-arrows-fullscreen::before{content:"\f14d"}.bi-arrows-move::before{content:"\f14e"}.bi-aspect-ratio-fill::before{content:"\f14f"}.bi-aspect-ratio::before{content:"\f150"}.bi-asterisk::before{content:"\f151"}.bi-at::before{content:"\f152"}.bi-award-fill::before{content:"\f153"}.bi-award::before{content:"\f154"}.bi-back::before{content:"\f155"}.bi-backspace-fill::before{content:"\f156"}.bi-backspace-reverse-fill::before{content:"\f157"}.bi-backspace-reverse::before{content:"\f158"}.bi-backspace::before{content:"\f159"}.bi-badge-3d-fill::before{content:"\f15a"}.bi-badge-3d::before{content:"\f15b"}.bi-badge-4k-fill::before{content:"\f15c"}.bi-badge-4k::before{content:"\f15d"}.bi-badge-8k-fill::before{content:"\f15e"}.bi-badge-8k::before{content:"\f15f"}.bi-badge-ad-fill::before{content:"\f160"}.bi-badge-ad::before{content:"\f161"}.bi-badge-ar-fill::before{content:"\f162"}.bi-badge-ar::before{content:"\f163"}.bi-badge-cc-fill::before{content:"\f164"}.bi-badge-cc::before{content:"\f165"}.bi-badge-hd-fill::before{content:"\f166"}.bi-badge-hd::before{content:"\f167"}.bi-badge-tm-fill::before{content:"\f168"}.bi-badge-tm::before{content:"\f169"}.bi-badge-vo-fill::before{content:"\f16a"}.bi-badge-vo::before{content:"\f16b"}.bi-badge-vr-fill::before{content:"\f16c"}.bi-badge-vr::before{content:"\f16d"}.bi-badge-wc-fill::before{content:"\f16e"}.bi-badge-wc::before{content:"\f16f"}.bi-bag-check-fill::before{content:"\f170"}.bi-bag-check::before{content:"\f171"}.bi-bag-dash-fill::before{content:"\f172"}.bi-bag-dash::before{content:"\f173"}.bi-bag-fill::before{content:"\f174"}.bi-bag-plus-fill::before{content:"\f175"}.bi-bag-plus::before{content:"\f176"}.bi-bag-x-fill::before{content:"\f177"}.bi-bag-x::before{content:"\f178"}.bi-bag::before{content:"\f179"}.bi-bar-chart-fill::before{content:"\f17a"}.bi-bar-chart-line-fill::before{content:"\f17b"}.bi-bar-chart-line::before{content:"\f17c"}.bi-bar-chart-steps::before{content:"\f17d"}.bi-bar-chart::before{content:"\f17e"}.bi-basket-fill::before{content:"\f17f"}.bi-basket::before{content:"\f180"}.bi-basket2-fill::before{content:"\f181"}.bi-basket2::before{content:"\f182"}.bi-basket3-fill::before{content:"\f183"}.bi-basket3::before{content:"\f184"}.bi-battery-charging::before{content:"\f185"}.bi-battery-full::before{content:"\f186"}.bi-battery-half::before{content:"\f187"}.bi-battery::before{content:"\f188"}.bi-bell-fill::before{content:"\f189"}.bi-bell::before{content:"\f18a"}.bi-bezier::before{content:"\f18b"}.bi-bezier2::before{content:"\f18c"}.bi-bicycle::before{content:"\f18d"}.bi-binoculars-fill::before{content:"\f18e"}.bi-binoculars::before{content:"\f18f"}.bi-blockquote-left::before{content:"\f190"}.bi-blockquote-right::before{content:"\f191"}.bi-book-fill::before{content:"\f192"}.bi-book-half::before{content:"\f193"}.bi-book::before{content:"\f194"}.bi-bookmark-check-fill::before{content:"\f195"}.bi-bookmark-check::before{content:"\f196"}.bi-bookmark-dash-fill::before{content:"\f197"}.bi-bookmark-dash::before{content:"\f198"}.bi-bookmark-fill::before{content:"\f199"}.bi-bookmark-heart-fill::before{content:"\f19a"}.bi-bookmark-heart::before{content:"\f19b"}.bi-bookmark-plus-fill::before{content:"\f19c"}.bi-bookmark-plus::before{content:"\f19d"}.bi-bookmark-star-fill::before{content:"\f19e"}.bi-bookmark-star::before{content:"\f19f"}.bi-bookmark-x-fill::before{content:"\f1a0"}.bi-bookmark-x::before{content:"\f1a1"}.bi-bookmark::before{content:"\f1a2"}.bi-bookmarks-fill::before{content:"\f1a3"}.bi-bookmarks::before{content:"\f1a4"}.bi-bookshelf::before{content:"\f1a5"}.bi-bootstrap-fill::before{content:"\f1a6"}.bi-bootstrap-reboot::before{content:"\f1a7"}.bi-bootstrap::before{content:"\f1a8"}.bi-border-all::before{content:"\f1a9"}.bi-border-bottom::before{content:"\f1aa"}.bi-border-center::before{content:"\f1ab"}.bi-border-inner::before{content:"\f1ac"}.bi-border-left::before{content:"\f1ad"}.bi-border-middle::before{content:"\f1ae"}.bi-border-outer::before{content:"\f1af"}.bi-border-right::before{content:"\f1b0"}.bi-border-style::before{content:"\f1b1"}.bi-border-top::before{content:"\f1b2"}.bi-border-width::before{content:"\f1b3"}.bi-border::before{content:"\f1b4"}.bi-bounding-box-circles::before{content:"\f1b5"}.bi-bounding-box::before{content:"\f1b6"}.bi-box-arrow-down-left::before{content:"\f1b7"}.bi-box-arrow-down-right::before{content:"\f1b8"}.bi-box-arrow-down::before{content:"\f1b9"}.bi-box-arrow-in-down-left::before{content:"\f1ba"}.bi-box-arrow-in-down-right::before{content:"\f1bb"}.bi-box-arrow-in-down::before{content:"\f1bc"}.bi-box-arrow-in-left::before{content:"\f1bd"}.bi-box-arrow-in-right::before{content:"\f1be"}.bi-box-arrow-in-up-left::before{content:"\f1bf"}.bi-box-arrow-in-up-right::before{content:"\f1c0"}.bi-box-arrow-in-up::before{content:"\f1c1"}.bi-box-arrow-left::before{content:"\f1c2"}.bi-box-arrow-right::before{content:"\f1c3"}.bi-box-arrow-up-left::before{content:"\f1c4"}.bi-box-arrow-up-right::before{content:"\f1c5"}.bi-box-arrow-up::before{content:"\f1c6"}.bi-box-seam::before{content:"\f1c7"}.bi-box::before{content:"\f1c8"}.bi-braces::before{content:"\f1c9"}.bi-bricks::before{content:"\f1ca"}.bi-briefcase-fill::before{content:"\f1cb"}.bi-briefcase::before{content:"\f1cc"}.bi-brightness-alt-high-fill::before{content:"\f1cd"}.bi-brightness-alt-high::before{content:"\f1ce"}.bi-brightness-alt-low-fill::before{content:"\f1cf"}.bi-brightness-alt-low::before{content:"\f1d0"}.bi-brightness-high-fill::before{content:"\f1d1"}.bi-brightness-high::before{content:"\f1d2"}.bi-brightness-low-fill::before{content:"\f1d3"}.bi-brightness-low::before{content:"\f1d4"}.bi-broadcast-pin::before{content:"\f1d5"}.bi-broadcast::before{content:"\f1d6"}.bi-brush-fill::before{content:"\f1d7"}.bi-brush::before{content:"\f1d8"}.bi-bucket-fill::before{content:"\f1d9"}.bi-bucket::before{content:"\f1da"}.bi-bug-fill::before{content:"\f1db"}.bi-bug::before{content:"\f1dc"}.bi-building::before{content:"\f1dd"}.bi-bullseye::before{content:"\f1de"}.bi-calculator-fill::before{content:"\f1df"}.bi-calculator::before{content:"\f1e0"}.bi-calendar-check-fill::before{content:"\f1e1"}.bi-calendar-check::before{content:"\f1e2"}.bi-calendar-date-fill::before{content:"\f1e3"}.bi-calendar-date::before{content:"\f1e4"}.bi-calendar-day-fill::before{content:"\f1e5"}.bi-calendar-day::before{content:"\f1e6"}.bi-calendar-event-fill::before{content:"\f1e7"}.bi-calendar-event::before{content:"\f1e8"}.bi-calendar-fill::before{content:"\f1e9"}.bi-calendar-minus-fill::before{content:"\f1ea"}.bi-calendar-minus::before{content:"\f1eb"}.bi-calendar-month-fill::before{content:"\f1ec"}.bi-calendar-month::before{content:"\f1ed"}.bi-calendar-plus-fill::before{content:"\f1ee"}.bi-calendar-plus::before{content:"\f1ef"}.bi-calendar-range-fill::before{content:"\f1f0"}.bi-calendar-range::before{content:"\f1f1"}.bi-calendar-week-fill::before{content:"\f1f2"}.bi-calendar-week::before{content:"\f1f3"}.bi-calendar-x-fill::before{content:"\f1f4"}.bi-calendar-x::before{content:"\f1f5"}.bi-calendar::before{content:"\f1f6"}.bi-calendar2-check-fill::before{content:"\f1f7"}.bi-calendar2-check::before{content:"\f1f8"}.bi-calendar2-date-fill::before{content:"\f1f9"}.bi-calendar2-date::before{content:"\f1fa"}.bi-calendar2-day-fill::before{content:"\f1fb"}.bi-calendar2-day::before{content:"\f1fc"}.bi-calendar2-event-fill::before{content:"\f1fd"}.bi-calendar2-event::before{content:"\f1fe"}.bi-calendar2-fill::before{content:"\f1ff"}.bi-calendar2-minus-fill::before{content:"\f200"}.bi-calendar2-minus::before{content:"\f201"}.bi-calendar2-month-fill::before{content:"\f202"}.bi-calendar2-month::before{content:"\f203"}.bi-calendar2-plus-fill::before{content:"\f204"}.bi-calendar2-plus::before{content:"\f205"}.bi-calendar2-range-fill::before{content:"\f206"}.bi-calendar2-range::before{content:"\f207"}.bi-calendar2-week-fill::before{content:"\f208"}.bi-calendar2-week::before{content:"\f209"}.bi-calendar2-x-fill::before{content:"\f20a"}.bi-calendar2-x::before{content:"\f20b"}.bi-calendar2::before{content:"\f20c"}.bi-calendar3-event-fill::before{content:"\f20d"}.bi-calendar3-event::before{content:"\f20e"}.bi-calendar3-fill::before{content:"\f20f"}.bi-calendar3-range-fill::before{content:"\f210"}.bi-calendar3-range::before{content:"\f211"}.bi-calendar3-week-fill::before{content:"\f212"}.bi-calendar3-week::before{content:"\f213"}.bi-calendar3::before{content:"\f214"}.bi-calendar4-event::before{content:"\f215"}.bi-calendar4-range::before{content:"\f216"}.bi-calendar4-week::before{content:"\f217"}.bi-calendar4::before{content:"\f218"}.bi-camera-fill::before{content:"\f219"}.bi-camera-reels-fill::before{content:"\f21a"}.bi-camera-reels::before{content:"\f21b"}.bi-camera-video-fill::before{content:"\f21c"}.bi-camera-video-off-fill::before{content:"\f21d"}.bi-camera-video-off::before{content:"\f21e"}.bi-camera-video::before{content:"\f21f"}.bi-camera::before{content:"\f220"}.bi-camera2::before{content:"\f221"}.bi-capslock-fill::before{content:"\f222"}.bi-capslock::before{content:"\f223"}.bi-card-checklist::before{content:"\f224"}.bi-card-heading::before{content:"\f225"}.bi-card-image::before{content:"\f226"}.bi-card-list::before{content:"\f227"}.bi-card-text::before{content:"\f228"}.bi-caret-down-fill::before{content:"\f229"}.bi-caret-down-square-fill::before{content:"\f22a"}.bi-caret-down-square::before{content:"\f22b"}.bi-caret-down::before{content:"\f22c"}.bi-caret-left-fill::before{content:"\f22d"}.bi-caret-left-square-fill::before{content:"\f22e"}.bi-caret-left-square::before{content:"\f22f"}.bi-caret-left::before{content:"\f230"}.bi-caret-right-fill::before{content:"\f231"}.bi-caret-right-square-fill::before{content:"\f232"}.bi-caret-right-square::before{content:"\f233"}.bi-caret-right::before{content:"\f234"}.bi-caret-up-fill::before{content:"\f235"}.bi-caret-up-square-fill::before{content:"\f236"}.bi-caret-up-square::before{content:"\f237"}.bi-caret-up::before{content:"\f238"}.bi-cart-check-fill::before{content:"\f239"}.bi-cart-check::before{content:"\f23a"}.bi-cart-dash-fill::before{content:"\f23b"}.bi-cart-dash::before{content:"\f23c"}.bi-cart-fill::before{content:"\f23d"}.bi-cart-plus-fill::before{content:"\f23e"}.bi-cart-plus::before{content:"\f23f"}.bi-cart-x-fill::before{content:"\f240"}.bi-cart-x::before{content:"\f241"}.bi-cart::before{content:"\f242"}.bi-cart2::before{content:"\f243"}.bi-cart3::before{content:"\f244"}.bi-cart4::before{content:"\f245"}.bi-cash-stack::before{content:"\f246"}.bi-cash::before{content:"\f247"}.bi-cast::before{content:"\f248"}.bi-chat-dots-fill::before{content:"\f249"}.bi-chat-dots::before{content:"\f24a"}.bi-chat-fill::before{content:"\f24b"}.bi-chat-left-dots-fill::before{content:"\f24c"}.bi-chat-left-dots::before{content:"\f24d"}.bi-chat-left-fill::before{content:"\f24e"}.bi-chat-left-quote-fill::before{content:"\f24f"}.bi-chat-left-quote::before{content:"\f250"}.bi-chat-left-text-fill::before{content:"\f251"}.bi-chat-left-text::before{content:"\f252"}.bi-chat-left::before{content:"\f253"}.bi-chat-quote-fill::before{content:"\f254"}.bi-chat-quote::before{content:"\f255"}.bi-chat-right-dots-fill::before{content:"\f256"}.bi-chat-right-dots::before{content:"\f257"}.bi-chat-right-fill::before{content:"\f258"}.bi-chat-right-quote-fill::before{content:"\f259"}.bi-chat-right-quote::before{content:"\f25a"}.bi-chat-right-text-fill::before{content:"\f25b"}.bi-chat-right-text::before{content:"\f25c"}.bi-chat-right::before{content:"\f25d"}.bi-chat-square-dots-fill::before{content:"\f25e"}.bi-chat-square-dots::before{content:"\f25f"}.bi-chat-square-fill::before{content:"\f260"}.bi-chat-square-quote-fill::before{content:"\f261"}.bi-chat-square-quote::before{content:"\f262"}.bi-chat-square-text-fill::before{content:"\f263"}.bi-chat-square-text::before{content:"\f264"}.bi-chat-square::before{content:"\f265"}.bi-chat-text-fill::before{content:"\f266"}.bi-chat-text::before{content:"\f267"}.bi-chat::before{content:"\f268"}.bi-check-all::before{content:"\f269"}.bi-check-circle-fill::before{content:"\f26a"}.bi-check-circle::before{content:"\f26b"}.bi-check-square-fill::before{content:"\f26c"}.bi-check-square::before{content:"\f26d"}.bi-check::before{content:"\f26e"}.bi-check2-all::before{content:"\f26f"}.bi-check2-circle::before{content:"\f270"}.bi-check2-square::before{content:"\f271"}.bi-check2::before{content:"\f272"}.bi-chevron-bar-contract::before{content:"\f273"}.bi-chevron-bar-down::before{content:"\f274"}.bi-chevron-bar-expand::before{content:"\f275"}.bi-chevron-bar-left::before{content:"\f276"}.bi-chevron-bar-right::before{content:"\f277"}.bi-chevron-bar-up::before{content:"\f278"}.bi-chevron-compact-down::before{content:"\f279"}.bi-chevron-compact-left::before{content:"\f27a"}.bi-chevron-compact-right::before{content:"\f27b"}.bi-chevron-compact-up::before{content:"\f27c"}.bi-chevron-contract::before{content:"\f27d"}.bi-chevron-double-down::before{content:"\f27e"}.bi-chevron-double-left::before{content:"\f27f"}.bi-chevron-double-right::before{content:"\f280"}.bi-chevron-double-up::before{content:"\f281"}.bi-chevron-down::before{content:"\f282"}.bi-chevron-expand::before{content:"\f283"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-chevron-up::before{content:"\f286"}.bi-circle-fill::before{content:"\f287"}.bi-circle-half::before{content:"\f288"}.bi-circle-square::before{content:"\f289"}.bi-circle::before{content:"\f28a"}.bi-clipboard-check::before{content:"\f28b"}.bi-clipboard-data::before{content:"\f28c"}.bi-clipboard-minus::before{content:"\f28d"}.bi-clipboard-plus::before{content:"\f28e"}.bi-clipboard-x::before{content:"\f28f"}.bi-clipboard::before{content:"\f290"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-cloud-arrow-down-fill::before{content:"\f294"}.bi-cloud-arrow-down::before{content:"\f295"}.bi-cloud-arrow-up-fill::before{content:"\f296"}.bi-cloud-arrow-up::before{content:"\f297"}.bi-cloud-check-fill::before{content:"\f298"}.bi-cloud-check::before{content:"\f299"}.bi-cloud-download-fill::before{content:"\f29a"}.bi-cloud-download::before{content:"\f29b"}.bi-cloud-drizzle-fill::before{content:"\f29c"}.bi-cloud-drizzle::before{content:"\f29d"}.bi-cloud-fill::before{content:"\f29e"}.bi-cloud-fog-fill::before{content:"\f29f"}.bi-cloud-fog::before{content:"\f2a0"}.bi-cloud-fog2-fill::before{content:"\f2a1"}.bi-cloud-fog2::before{content:"\f2a2"}.bi-cloud-hail-fill::before{content:"\f2a3"}.bi-cloud-hail::before{content:"\f2a4"}.bi-cloud-haze-fill::before{content:"\f2a6"}.bi-cloud-haze::before{content:"\f2a7"}.bi-cloud-haze2-fill::before{content:"\f2a8"}.bi-cloud-lightning-fill::before{content:"\f2a9"}.bi-cloud-lightning-rain-fill::before{content:"\f2aa"}.bi-cloud-lightning-rain::before{content:"\f2ab"}.bi-cloud-lightning::before{content:"\f2ac"}.bi-cloud-minus-fill::before{content:"\f2ad"}.bi-cloud-minus::before{content:"\f2ae"}.bi-cloud-moon-fill::before{content:"\f2af"}.bi-cloud-moon::before{content:"\f2b0"}.bi-cloud-plus-fill::before{content:"\f2b1"}.bi-cloud-plus::before{content:"\f2b2"}.bi-cloud-rain-fill::before{content:"\f2b3"}.bi-cloud-rain-heavy-fill::before{content:"\f2b4"}.bi-cloud-rain-heavy::before{content:"\f2b5"}.bi-cloud-rain::before{content:"\f2b6"}.bi-cloud-slash-fill::before{content:"\f2b7"}.bi-cloud-slash::before{content:"\f2b8"}.bi-cloud-sleet-fill::before{content:"\f2b9"}.bi-cloud-sleet::before{content:"\f2ba"}.bi-cloud-snow-fill::before{content:"\f2bb"}.bi-cloud-snow::before{content:"\f2bc"}.bi-cloud-sun-fill::before{content:"\f2bd"}.bi-cloud-sun::before{content:"\f2be"}.bi-cloud-upload-fill::before{content:"\f2bf"}.bi-cloud-upload::before{content:"\f2c0"}.bi-cloud::before{content:"\f2c1"}.bi-clouds-fill::before{content:"\f2c2"}.bi-clouds::before{content:"\f2c3"}.bi-cloudy-fill::before{content:"\f2c4"}.bi-cloudy::before{content:"\f2c5"}.bi-code-slash::before{content:"\f2c6"}.bi-code-square::before{content:"\f2c7"}.bi-code::before{content:"\f2c8"}.bi-collection-fill::before{content:"\f2c9"}.bi-collection-play-fill::before{content:"\f2ca"}.bi-collection-play::before{content:"\f2cb"}.bi-collection::before{content:"\f2cc"}.bi-columns-gap::before{content:"\f2cd"}.bi-columns::before{content:"\f2ce"}.bi-command::before{content:"\f2cf"}.bi-compass-fill::before{content:"\f2d0"}.bi-compass::before{content:"\f2d1"}.bi-cone-striped::before{content:"\f2d2"}.bi-cone::before{content:"\f2d3"}.bi-controller::before{content:"\f2d4"}.bi-cpu-fill::before{content:"\f2d5"}.bi-cpu::before{content:"\f2d6"}.bi-credit-card-2-back-fill::before{content:"\f2d7"}.bi-credit-card-2-back::before{content:"\f2d8"}.bi-credit-card-2-front-fill::before{content:"\f2d9"}.bi-credit-card-2-front::before{content:"\f2da"}.bi-credit-card-fill::before{content:"\f2db"}.bi-credit-card::before{content:"\f2dc"}.bi-crop::before{content:"\f2dd"}.bi-cup-fill::before{content:"\f2de"}.bi-cup-straw::before{content:"\f2df"}.bi-cup::before{content:"\f2e0"}.bi-cursor-fill::before{content:"\f2e1"}.bi-cursor-text::before{content:"\f2e2"}.bi-cursor::before{content:"\f2e3"}.bi-dash-circle-dotted::before{content:"\f2e4"}.bi-dash-circle-fill::before{content:"\f2e5"}.bi-dash-circle::before{content:"\f2e6"}.bi-dash-square-dotted::before{content:"\f2e7"}.bi-dash-square-fill::before{content:"\f2e8"}.bi-dash-square::before{content:"\f2e9"}.bi-dash::before{content:"\f2ea"}.bi-diagram-2-fill::before{content:"\f2eb"}.bi-diagram-2::before{content:"\f2ec"}.bi-diagram-3-fill::before{content:"\f2ed"}.bi-diagram-3::before{content:"\f2ee"}.bi-diamond-fill::before{content:"\f2ef"}.bi-diamond-half::before{content:"\f2f0"}.bi-diamond::before{content:"\f2f1"}.bi-dice-1-fill::before{content:"\f2f2"}.bi-dice-1::before{content:"\f2f3"}.bi-dice-2-fill::before{content:"\f2f4"}.bi-dice-2::before{content:"\f2f5"}.bi-dice-3-fill::before{content:"\f2f6"}.bi-dice-3::before{content:"\f2f7"}.bi-dice-4-fill::before{content:"\f2f8"}.bi-dice-4::before{content:"\f2f9"}.bi-dice-5-fill::before{content:"\f2fa"}.bi-dice-5::before{content:"\f2fb"}.bi-dice-6-fill::before{content:"\f2fc"}.bi-dice-6::before{content:"\f2fd"}.bi-disc-fill::before{content:"\f2fe"}.bi-disc::before{content:"\f2ff"}.bi-discord::before{content:"\f300"}.bi-display-fill::before{content:"\f301"}.bi-display::before{content:"\f302"}.bi-distribute-horizontal::before{content:"\f303"}.bi-distribute-vertical::before{content:"\f304"}.bi-door-closed-fill::before{content:"\f305"}.bi-door-closed::before{content:"\f306"}.bi-door-open-fill::before{content:"\f307"}.bi-door-open::before{content:"\f308"}.bi-dot::before{content:"\f309"}.bi-download::before{content:"\f30a"}.bi-droplet-fill::before{content:"\f30b"}.bi-droplet-half::before{content:"\f30c"}.bi-droplet::before{content:"\f30d"}.bi-earbuds::before{content:"\f30e"}.bi-easel-fill::before{content:"\f30f"}.bi-easel::before{content:"\f310"}.bi-egg-fill::before{content:"\f311"}.bi-egg-fried::before{content:"\f312"}.bi-egg::before{content:"\f313"}.bi-eject-fill::before{content:"\f314"}.bi-eject::before{content:"\f315"}.bi-emoji-angry-fill::before{content:"\f316"}.bi-emoji-angry::before{content:"\f317"}.bi-emoji-dizzy-fill::before{content:"\f318"}.bi-emoji-dizzy::before{content:"\f319"}.bi-emoji-expressionless-fill::before{content:"\f31a"}.bi-emoji-expressionless::before{content:"\f31b"}.bi-emoji-frown-fill::before{content:"\f31c"}.bi-emoji-frown::before{content:"\f31d"}.bi-emoji-heart-eyes-fill::before{content:"\f31e"}.bi-emoji-heart-eyes::before{content:"\f31f"}.bi-emoji-laughing-fill::before{content:"\f320"}.bi-emoji-laughing::before{content:"\f321"}.bi-emoji-neutral-fill::before{content:"\f322"}.bi-emoji-neutral::before{content:"\f323"}.bi-emoji-smile-fill::before{content:"\f324"}.bi-emoji-smile-upside-down-fill::before{content:"\f325"}.bi-emoji-smile-upside-down::before{content:"\f326"}.bi-emoji-smile::before{content:"\f327"}.bi-emoji-sunglasses-fill::before{content:"\f328"}.bi-emoji-sunglasses::before{content:"\f329"}.bi-emoji-wink-fill::before{content:"\f32a"}.bi-emoji-wink::before{content:"\f32b"}.bi-envelope-fill::before{content:"\f32c"}.bi-envelope-open-fill::before{content:"\f32d"}.bi-envelope-open::before{content:"\f32e"}.bi-envelope::before{content:"\f32f"}.bi-eraser-fill::before{content:"\f330"}.bi-eraser::before{content:"\f331"}.bi-exclamation-circle-fill::before{content:"\f332"}.bi-exclamation-circle::before{content:"\f333"}.bi-exclamation-diamond-fill::before{content:"\f334"}.bi-exclamation-diamond::before{content:"\f335"}.bi-exclamation-octagon-fill::before{content:"\f336"}.bi-exclamation-octagon::before{content:"\f337"}.bi-exclamation-square-fill::before{content:"\f338"}.bi-exclamation-square::before{content:"\f339"}.bi-exclamation-triangle-fill::before{content:"\f33a"}.bi-exclamation-triangle::before{content:"\f33b"}.bi-exclamation::before{content:"\f33c"}.bi-exclude::before{content:"\f33d"}.bi-eye-fill::before{content:"\f33e"}.bi-eye-slash-fill::before{content:"\f33f"}.bi-eye-slash::before{content:"\f340"}.bi-eye::before{content:"\f341"}.bi-eyedropper::before{content:"\f342"}.bi-eyeglasses::before{content:"\f343"}.bi-facebook::before{content:"\f344"}.bi-file-arrow-down-fill::before{content:"\f345"}.bi-file-arrow-down::before{content:"\f346"}.bi-file-arrow-up-fill::before{content:"\f347"}.bi-file-arrow-up::before{content:"\f348"}.bi-file-bar-graph-fill::before{content:"\f349"}.bi-file-bar-graph::before{content:"\f34a"}.bi-file-binary-fill::before{content:"\f34b"}.bi-file-binary::before{content:"\f34c"}.bi-file-break-fill::before{content:"\f34d"}.bi-file-break::before{content:"\f34e"}.bi-file-check-fill::before{content:"\f34f"}.bi-file-check::before{content:"\f350"}.bi-file-code-fill::before{content:"\f351"}.bi-file-code::before{content:"\f352"}.bi-file-diff-fill::before{content:"\f353"}.bi-file-diff::before{content:"\f354"}.bi-file-earmark-arrow-down-fill::before{content:"\f355"}.bi-file-earmark-arrow-down::before{content:"\f356"}.bi-file-earmark-arrow-up-fill::before{content:"\f357"}.bi-file-earmark-arrow-up::before{content:"\f358"}.bi-file-earmark-bar-graph-fill::before{content:"\f359"}.bi-file-earmark-bar-graph::before{content:"\f35a"}.bi-file-earmark-binary-fill::before{content:"\f35b"}.bi-file-earmark-binary::before{content:"\f35c"}.bi-file-earmark-break-fill::before{content:"\f35d"}.bi-file-earmark-break::before{content:"\f35e"}.bi-file-earmark-check-fill::before{content:"\f35f"}.bi-file-earmark-check::before{content:"\f360"}.bi-file-earmark-code-fill::before{content:"\f361"}.bi-file-earmark-code::before{content:"\f362"}.bi-file-earmark-diff-fill::before{content:"\f363"}.bi-file-earmark-diff::before{content:"\f364"}.bi-file-earmark-easel-fill::before{content:"\f365"}.bi-file-earmark-easel::before{content:"\f366"}.bi-file-earmark-excel-fill::before{content:"\f367"}.bi-file-earmark-excel::before{content:"\f368"}.bi-file-earmark-fill::before{content:"\f369"}.bi-file-earmark-font-fill::before{content:"\f36a"}.bi-file-earmark-font::before{content:"\f36b"}.bi-file-earmark-image-fill::before{content:"\f36c"}.bi-file-earmark-image::before{content:"\f36d"}.bi-file-earmark-lock-fill::before{content:"\f36e"}.bi-file-earmark-lock::before{content:"\f36f"}.bi-file-earmark-lock2-fill::before{content:"\f370"}.bi-file-earmark-lock2::before{content:"\f371"}.bi-file-earmark-medical-fill::before{content:"\f372"}.bi-file-earmark-medical::before{content:"\f373"}.bi-file-earmark-minus-fill::before{content:"\f374"}.bi-file-earmark-minus::before{content:"\f375"}.bi-file-earmark-music-fill::before{content:"\f376"}.bi-file-earmark-music::before{content:"\f377"}.bi-file-earmark-person-fill::before{content:"\f378"}.bi-file-earmark-person::before{content:"\f379"}.bi-file-earmark-play-fill::before{content:"\f37a"}.bi-file-earmark-play::before{content:"\f37b"}.bi-file-earmark-plus-fill::before{content:"\f37c"}.bi-file-earmark-plus::before{content:"\f37d"}.bi-file-earmark-post-fill::before{content:"\f37e"}.bi-file-earmark-post::before{content:"\f37f"}.bi-file-earmark-ppt-fill::before{content:"\f380"}.bi-file-earmark-ppt::before{content:"\f381"}.bi-file-earmark-richtext-fill::before{content:"\f382"}.bi-file-earmark-richtext::before{content:"\f383"}.bi-file-earmark-ruled-fill::before{content:"\f384"}.bi-file-earmark-ruled::before{content:"\f385"}.bi-file-earmark-slides-fill::before{content:"\f386"}.bi-file-earmark-slides::before{content:"\f387"}.bi-file-earmark-spreadsheet-fill::before{content:"\f388"}.bi-file-earmark-spreadsheet::before{content:"\f389"}.bi-file-earmark-text-fill::before{content:"\f38a"}.bi-file-earmark-text::before{content:"\f38b"}.bi-file-earmark-word-fill::before{content:"\f38c"}.bi-file-earmark-word::before{content:"\f38d"}.bi-file-earmark-x-fill::before{content:"\f38e"}.bi-file-earmark-x::before{content:"\f38f"}.bi-file-earmark-zip-fill::before{content:"\f390"}.bi-file-earmark-zip::before{content:"\f391"}.bi-file-earmark::before{content:"\f392"}.bi-file-easel-fill::before{content:"\f393"}.bi-file-easel::before{content:"\f394"}.bi-file-excel-fill::before{content:"\f395"}.bi-file-excel::before{content:"\f396"}.bi-file-fill::before{content:"\f397"}.bi-file-font-fill::before{content:"\f398"}.bi-file-font::before{content:"\f399"}.bi-file-image-fill::before{content:"\f39a"}.bi-file-image::before{content:"\f39b"}.bi-file-lock-fill::before{content:"\f39c"}.bi-file-lock::before{content:"\f39d"}.bi-file-lock2-fill::before{content:"\f39e"}.bi-file-lock2::before{content:"\f39f"}.bi-file-medical-fill::before{content:"\f3a0"}.bi-file-medical::before{content:"\f3a1"}.bi-file-minus-fill::before{content:"\f3a2"}.bi-file-minus::before{content:"\f3a3"}.bi-file-music-fill::before{content:"\f3a4"}.bi-file-music::before{content:"\f3a5"}.bi-file-person-fill::before{content:"\f3a6"}.bi-file-person::before{content:"\f3a7"}.bi-file-play-fill::before{content:"\f3a8"}.bi-file-play::before{content:"\f3a9"}.bi-file-plus-fill::before{content:"\f3aa"}.bi-file-plus::before{content:"\f3ab"}.bi-file-post-fill::before{content:"\f3ac"}.bi-file-post::before{content:"\f3ad"}.bi-file-ppt-fill::before{content:"\f3ae"}.bi-file-ppt::before{content:"\f3af"}.bi-file-richtext-fill::before{content:"\f3b0"}.bi-file-richtext::before{content:"\f3b1"}.bi-file-ruled-fill::before{content:"\f3b2"}.bi-file-ruled::before{content:"\f3b3"}.bi-file-slides-fill::before{content:"\f3b4"}.bi-file-slides::before{content:"\f3b5"}.bi-file-spreadsheet-fill::before{content:"\f3b6"}.bi-file-spreadsheet::before{content:"\f3b7"}.bi-file-text-fill::before{content:"\f3b8"}.bi-file-text::before{content:"\f3b9"}.bi-file-word-fill::before{content:"\f3ba"}.bi-file-word::before{content:"\f3bb"}.bi-file-x-fill::before{content:"\f3bc"}.bi-file-x::before{content:"\f3bd"}.bi-file-zip-fill::before{content:"\f3be"}.bi-file-zip::before{content:"\f3bf"}.bi-file::before{content:"\f3c0"}.bi-files-alt::before{content:"\f3c1"}.bi-files::before{content:"\f3c2"}.bi-film::before{content:"\f3c3"}.bi-filter-circle-fill::before{content:"\f3c4"}.bi-filter-circle::before{content:"\f3c5"}.bi-filter-left::before{content:"\f3c6"}.bi-filter-right::before{content:"\f3c7"}.bi-filter-square-fill::before{content:"\f3c8"}.bi-filter-square::before{content:"\f3c9"}.bi-filter::before{content:"\f3ca"}.bi-flag-fill::before{content:"\f3cb"}.bi-flag::before{content:"\f3cc"}.bi-flower1::before{content:"\f3cd"}.bi-flower2::before{content:"\f3ce"}.bi-flower3::before{content:"\f3cf"}.bi-folder-check::before{content:"\f3d0"}.bi-folder-fill::before{content:"\f3d1"}.bi-folder-minus::before{content:"\f3d2"}.bi-folder-plus::before{content:"\f3d3"}.bi-folder-symlink-fill::before{content:"\f3d4"}.bi-folder-symlink::before{content:"\f3d5"}.bi-folder-x::before{content:"\f3d6"}.bi-folder::before{content:"\f3d7"}.bi-folder2-open::before{content:"\f3d8"}.bi-folder2::before{content:"\f3d9"}.bi-fonts::before{content:"\f3da"}.bi-forward-fill::before{content:"\f3db"}.bi-forward::before{content:"\f3dc"}.bi-front::before{content:"\f3dd"}.bi-fullscreen-exit::before{content:"\f3de"}.bi-fullscreen::before{content:"\f3df"}.bi-funnel-fill::before{content:"\f3e0"}.bi-funnel::before{content:"\f3e1"}.bi-gear-fill::before{content:"\f3e2"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-gear-wide::before{content:"\f3e4"}.bi-gear::before{content:"\f3e5"}.bi-gem::before{content:"\f3e6"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-geo-fill::before{content:"\f3e9"}.bi-geo::before{content:"\f3ea"}.bi-gift-fill::before{content:"\f3eb"}.bi-gift::before{content:"\f3ec"}.bi-github::before{content:"\f3ed"}.bi-globe::before{content:"\f3ee"}.bi-globe2::before{content:"\f3ef"}.bi-google::before{content:"\f3f0"}.bi-graph-down::before{content:"\f3f1"}.bi-graph-up::before{content:"\f3f2"}.bi-grid-1x2-fill::before{content:"\f3f3"}.bi-grid-1x2::before{content:"\f3f4"}.bi-grid-3x2-gap-fill::before{content:"\f3f5"}.bi-grid-3x2-gap::before{content:"\f3f6"}.bi-grid-3x2::before{content:"\f3f7"}.bi-grid-3x3-gap-fill::before{content:"\f3f8"}.bi-grid-3x3-gap::before{content:"\f3f9"}.bi-grid-3x3::before{content:"\f3fa"}.bi-grid-fill::before{content:"\f3fb"}.bi-grid::before{content:"\f3fc"}.bi-grip-horizontal::before{content:"\f3fd"}.bi-grip-vertical::before{content:"\f3fe"}.bi-hammer::before{content:"\f3ff"}.bi-hand-index-fill::before{content:"\f400"}.bi-hand-index-thumb-fill::before{content:"\f401"}.bi-hand-index-thumb::before{content:"\f402"}.bi-hand-index::before{content:"\f403"}.bi-hand-thumbs-down-fill::before{content:"\f404"}.bi-hand-thumbs-down::before{content:"\f405"}.bi-hand-thumbs-up-fill::before{content:"\f406"}.bi-hand-thumbs-up::before{content:"\f407"}.bi-handbag-fill::before{content:"\f408"}.bi-handbag::before{content:"\f409"}.bi-hash::before{content:"\f40a"}.bi-hdd-fill::before{content:"\f40b"}.bi-hdd-network-fill::before{content:"\f40c"}.bi-hdd-network::before{content:"\f40d"}.bi-hdd-rack-fill::before{content:"\f40e"}.bi-hdd-rack::before{content:"\f40f"}.bi-hdd-stack-fill::before{content:"\f410"}.bi-hdd-stack::before{content:"\f411"}.bi-hdd::before{content:"\f412"}.bi-headphones::before{content:"\f413"}.bi-headset::before{content:"\f414"}.bi-heart-fill::before{content:"\f415"}.bi-heart-half::before{content:"\f416"}.bi-heart::before{content:"\f417"}.bi-heptagon-fill::before{content:"\f418"}.bi-heptagon-half::before{content:"\f419"}.bi-heptagon::before{content:"\f41a"}.bi-hexagon-fill::before{content:"\f41b"}.bi-hexagon-half::before{content:"\f41c"}.bi-hexagon::before{content:"\f41d"}.bi-hourglass-bottom::before{content:"\f41e"}.bi-hourglass-split::before{content:"\f41f"}.bi-hourglass-top::before{content:"\f420"}.bi-hourglass::before{content:"\f421"}.bi-house-door-fill::before{content:"\f422"}.bi-house-door::before{content:"\f423"}.bi-house-fill::before{content:"\f424"}.bi-house::before{content:"\f425"}.bi-hr::before{content:"\f426"}.bi-hurricane::before{content:"\f427"}.bi-image-alt::before{content:"\f428"}.bi-image-fill::before{content:"\f429"}.bi-image::before{content:"\f42a"}.bi-images::before{content:"\f42b"}.bi-inbox-fill::before{content:"\f42c"}.bi-inbox::before{content:"\f42d"}.bi-inboxes-fill::before{content:"\f42e"}.bi-inboxes::before{content:"\f42f"}.bi-info-circle-fill::before{content:"\f430"}.bi-info-circle::before{content:"\f431"}.bi-info-square-fill::before{content:"\f432"}.bi-info-square::before{content:"\f433"}.bi-info::before{content:"\f434"}.bi-input-cursor-text::before{content:"\f435"}.bi-input-cursor::before{content:"\f436"}.bi-instagram::before{content:"\f437"}.bi-intersect::before{content:"\f438"}.bi-journal-album::before{content:"\f439"}.bi-journal-arrow-down::before{content:"\f43a"}.bi-journal-arrow-up::before{content:"\f43b"}.bi-journal-bookmark-fill::before{content:"\f43c"}.bi-journal-bookmark::before{content:"\f43d"}.bi-journal-check::before{content:"\f43e"}.bi-journal-code::before{content:"\f43f"}.bi-journal-medical::before{content:"\f440"}.bi-journal-minus::before{content:"\f441"}.bi-journal-plus::before{content:"\f442"}.bi-journal-richtext::before{content:"\f443"}.bi-journal-text::before{content:"\f444"}.bi-journal-x::before{content:"\f445"}.bi-journal::before{content:"\f446"}.bi-journals::before{content:"\f447"}.bi-joystick::before{content:"\f448"}.bi-justify-left::before{content:"\f449"}.bi-justify-right::before{content:"\f44a"}.bi-justify::before{content:"\f44b"}.bi-kanban-fill::before{content:"\f44c"}.bi-kanban::before{content:"\f44d"}.bi-key-fill::before{content:"\f44e"}.bi-key::before{content:"\f44f"}.bi-keyboard-fill::before{content:"\f450"}.bi-keyboard::before{content:"\f451"}.bi-ladder::before{content:"\f452"}.bi-lamp-fill::before{content:"\f453"}.bi-lamp::before{content:"\f454"}.bi-laptop-fill::before{content:"\f455"}.bi-laptop::before{content:"\f456"}.bi-layer-backward::before{content:"\f457"}.bi-layer-forward::before{content:"\f458"}.bi-layers-fill::before{content:"\f459"}.bi-layers-half::before{content:"\f45a"}.bi-layers::before{content:"\f45b"}.bi-layout-sidebar-inset-reverse::before{content:"\f45c"}.bi-layout-sidebar-inset::before{content:"\f45d"}.bi-layout-sidebar-reverse::before{content:"\f45e"}.bi-layout-sidebar::before{content:"\f45f"}.bi-layout-split::before{content:"\f460"}.bi-layout-text-sidebar-reverse::before{content:"\f461"}.bi-layout-text-sidebar::before{content:"\f462"}.bi-layout-text-window-reverse::before{content:"\f463"}.bi-layout-text-window::before{content:"\f464"}.bi-layout-three-columns::before{content:"\f465"}.bi-layout-wtf::before{content:"\f466"}.bi-life-preserver::before{content:"\f467"}.bi-lightbulb-fill::before{content:"\f468"}.bi-lightbulb-off-fill::before{content:"\f469"}.bi-lightbulb-off::before{content:"\f46a"}.bi-lightbulb::before{content:"\f46b"}.bi-lightning-charge-fill::before{content:"\f46c"}.bi-lightning-charge::before{content:"\f46d"}.bi-lightning-fill::before{content:"\f46e"}.bi-lightning::before{content:"\f46f"}.bi-link-45deg::before{content:"\f470"}.bi-link::before{content:"\f471"}.bi-linkedin::before{content:"\f472"}.bi-list-check::before{content:"\f473"}.bi-list-nested::before{content:"\f474"}.bi-list-ol::before{content:"\f475"}.bi-list-stars::before{content:"\f476"}.bi-list-task::before{content:"\f477"}.bi-list-ul::before{content:"\f478"}.bi-list::before{content:"\f479"}.bi-lock-fill::before{content:"\f47a"}.bi-lock::before{content:"\f47b"}.bi-mailbox::before{content:"\f47c"}.bi-mailbox2::before{content:"\f47d"}.bi-map-fill::before{content:"\f47e"}.bi-map::before{content:"\f47f"}.bi-markdown-fill::before{content:"\f480"}.bi-markdown::before{content:"\f481"}.bi-mask::before{content:"\f482"}.bi-megaphone-fill::before{content:"\f483"}.bi-megaphone::before{content:"\f484"}.bi-menu-app-fill::before{content:"\f485"}.bi-menu-app::before{content:"\f486"}.bi-menu-button-fill::before{content:"\f487"}.bi-menu-button-wide-fill::before{content:"\f488"}.bi-menu-button-wide::before{content:"\f489"}.bi-menu-button::before{content:"\f48a"}.bi-menu-down::before{content:"\f48b"}.bi-menu-up::before{content:"\f48c"}.bi-mic-fill::before{content:"\f48d"}.bi-mic-mute-fill::before{content:"\f48e"}.bi-mic-mute::before{content:"\f48f"}.bi-mic::before{content:"\f490"}.bi-minecart-loaded::before{content:"\f491"}.bi-minecart::before{content:"\f492"}.bi-moisture::before{content:"\f493"}.bi-moon-fill::before{content:"\f494"}.bi-moon-stars-fill::before{content:"\f495"}.bi-moon-stars::before{content:"\f496"}.bi-moon::before{content:"\f497"}.bi-mouse-fill::before{content:"\f498"}.bi-mouse::before{content:"\f499"}.bi-mouse2-fill::before{content:"\f49a"}.bi-mouse2::before{content:"\f49b"}.bi-mouse3-fill::before{content:"\f49c"}.bi-mouse3::before{content:"\f49d"}.bi-music-note-beamed::before{content:"\f49e"}.bi-music-note-list::before{content:"\f49f"}.bi-music-note::before{content:"\f4a0"}.bi-music-player-fill::before{content:"\f4a1"}.bi-music-player::before{content:"\f4a2"}.bi-newspaper::before{content:"\f4a3"}.bi-node-minus-fill::before{content:"\f4a4"}.bi-node-minus::before{content:"\f4a5"}.bi-node-plus-fill::before{content:"\f4a6"}.bi-node-plus::before{content:"\f4a7"}.bi-nut-fill::before{content:"\f4a8"}.bi-nut::before{content:"\f4a9"}.bi-octagon-fill::before{content:"\f4aa"}.bi-octagon-half::before{content:"\f4ab"}.bi-octagon::before{content:"\f4ac"}.bi-option::before{content:"\f4ad"}.bi-outlet::before{content:"\f4ae"}.bi-paint-bucket::before{content:"\f4af"}.bi-palette-fill::before{content:"\f4b0"}.bi-palette::before{content:"\f4b1"}.bi-palette2::before{content:"\f4b2"}.bi-paperclip::before{content:"\f4b3"}.bi-paragraph::before{content:"\f4b4"}.bi-patch-check-fill::before{content:"\f4b5"}.bi-patch-check::before{content:"\f4b6"}.bi-patch-exclamation-fill::before{content:"\f4b7"}.bi-patch-exclamation::before{content:"\f4b8"}.bi-patch-minus-fill::before{content:"\f4b9"}.bi-patch-minus::before{content:"\f4ba"}.bi-patch-plus-fill::before{content:"\f4bb"}.bi-patch-plus::before{content:"\f4bc"}.bi-patch-question-fill::before{content:"\f4bd"}.bi-patch-question::before{content:"\f4be"}.bi-pause-btn-fill::before{content:"\f4bf"}.bi-pause-btn::before{content:"\f4c0"}.bi-pause-circle-fill::before{content:"\f4c1"}.bi-pause-circle::before{content:"\f4c2"}.bi-pause-fill::before{content:"\f4c3"}.bi-pause::before{content:"\f4c4"}.bi-peace-fill::before{content:"\f4c5"}.bi-peace::before{content:"\f4c6"}.bi-pen-fill::before{content:"\f4c7"}.bi-pen::before{content:"\f4c8"}.bi-pencil-fill::before{content:"\f4c9"}.bi-pencil-square::before{content:"\f4ca"}.bi-pencil::before{content:"\f4cb"}.bi-pentagon-fill::before{content:"\f4cc"}.bi-pentagon-half::before{content:"\f4cd"}.bi-pentagon::before{content:"\f4ce"}.bi-people-fill::before{content:"\f4cf"}.bi-people::before{content:"\f4d0"}.bi-percent::before{content:"\f4d1"}.bi-person-badge-fill::before{content:"\f4d2"}.bi-person-badge::before{content:"\f4d3"}.bi-person-bounding-box::before{content:"\f4d4"}.bi-person-check-fill::before{content:"\f4d5"}.bi-person-check::before{content:"\f4d6"}.bi-person-circle::before{content:"\f4d7"}.bi-person-dash-fill::before{content:"\f4d8"}.bi-person-dash::before{content:"\f4d9"}.bi-person-fill::before{content:"\f4da"}.bi-person-lines-fill::before{content:"\f4db"}.bi-person-plus-fill::before{content:"\f4dc"}.bi-person-plus::before{content:"\f4dd"}.bi-person-square::before{content:"\f4de"}.bi-person-x-fill::before{content:"\f4df"}.bi-person-x::before{content:"\f4e0"}.bi-person::before{content:"\f4e1"}.bi-phone-fill::before{content:"\f4e2"}.bi-phone-landscape-fill::before{content:"\f4e3"}.bi-phone-landscape::before{content:"\f4e4"}.bi-phone-vibrate-fill::before{content:"\f4e5"}.bi-phone-vibrate::before{content:"\f4e6"}.bi-phone::before{content:"\f4e7"}.bi-pie-chart-fill::before{content:"\f4e8"}.bi-pie-chart::before{content:"\f4e9"}.bi-pin-angle-fill::before{content:"\f4ea"}.bi-pin-angle::before{content:"\f4eb"}.bi-pin-fill::before{content:"\f4ec"}.bi-pin::before{content:"\f4ed"}.bi-pip-fill::before{content:"\f4ee"}.bi-pip::before{content:"\f4ef"}.bi-play-btn-fill::before{content:"\f4f0"}.bi-play-btn::before{content:"\f4f1"}.bi-play-circle-fill::before{content:"\f4f2"}.bi-play-circle::before{content:"\f4f3"}.bi-play-fill::before{content:"\f4f4"}.bi-play::before{content:"\f4f5"}.bi-plug-fill::before{content:"\f4f6"}.bi-plug::before{content:"\f4f7"}.bi-plus-circle-dotted::before{content:"\f4f8"}.bi-plus-circle-fill::before{content:"\f4f9"}.bi-plus-circle::before{content:"\f4fa"}.bi-plus-square-dotted::before{content:"\f4fb"}.bi-plus-square-fill::before{content:"\f4fc"}.bi-plus-square::before{content:"\f4fd"}.bi-plus::before{content:"\f4fe"}.bi-power::before{content:"\f4ff"}.bi-printer-fill::before{content:"\f500"}.bi-printer::before{content:"\f501"}.bi-puzzle-fill::before{content:"\f502"}.bi-puzzle::before{content:"\f503"}.bi-question-circle-fill::before{content:"\f504"}.bi-question-circle::before{content:"\f505"}.bi-question-diamond-fill::before{content:"\f506"}.bi-question-diamond::before{content:"\f507"}.bi-question-octagon-fill::before{content:"\f508"}.bi-question-octagon::before{content:"\f509"}.bi-question-square-fill::before{content:"\f50a"}.bi-question-square::before{content:"\f50b"}.bi-question::before{content:"\f50c"}.bi-rainbow::before{content:"\f50d"}.bi-receipt-cutoff::before{content:"\f50e"}.bi-receipt::before{content:"\f50f"}.bi-reception-0::before{content:"\f510"}.bi-reception-1::before{content:"\f511"}.bi-reception-2::before{content:"\f512"}.bi-reception-3::before{content:"\f513"}.bi-reception-4::before{content:"\f514"}.bi-record-btn-fill::before{content:"\f515"}.bi-record-btn::before{content:"\f516"}.bi-record-circle-fill::before{content:"\f517"}.bi-record-circle::before{content:"\f518"}.bi-record-fill::before{content:"\f519"}.bi-record::before{content:"\f51a"}.bi-record2-fill::before{content:"\f51b"}.bi-record2::before{content:"\f51c"}.bi-reply-all-fill::before{content:"\f51d"}.bi-reply-all::before{content:"\f51e"}.bi-reply-fill::before{content:"\f51f"}.bi-reply::before{content:"\f520"}.bi-rss-fill::before{content:"\f521"}.bi-rss::before{content:"\f522"}.bi-rulers::before{content:"\f523"}.bi-save-fill::before{content:"\f524"}.bi-save::before{content:"\f525"}.bi-save2-fill::before{content:"\f526"}.bi-save2::before{content:"\f527"}.bi-scissors::before{content:"\f528"}.bi-screwdriver::before{content:"\f529"}.bi-search::before{content:"\f52a"}.bi-segmented-nav::before{content:"\f52b"}.bi-server::before{content:"\f52c"}.bi-share-fill::before{content:"\f52d"}.bi-share::before{content:"\f52e"}.bi-shield-check::before{content:"\f52f"}.bi-shield-exclamation::before{content:"\f530"}.bi-shield-fill-check::before{content:"\f531"}.bi-shield-fill-exclamation::before{content:"\f532"}.bi-shield-fill-minus::before{content:"\f533"}.bi-shield-fill-plus::before{content:"\f534"}.bi-shield-fill-x::before{content:"\f535"}.bi-shield-fill::before{content:"\f536"}.bi-shield-lock-fill::before{content:"\f537"}.bi-shield-lock::before{content:"\f538"}.bi-shield-minus::before{content:"\f539"}.bi-shield-plus::before{content:"\f53a"}.bi-shield-shaded::before{content:"\f53b"}.bi-shield-slash-fill::before{content:"\f53c"}.bi-shield-slash::before{content:"\f53d"}.bi-shield-x::before{content:"\f53e"}.bi-shield::before{content:"\f53f"}.bi-shift-fill::before{content:"\f540"}.bi-shift::before{content:"\f541"}.bi-shop-window::before{content:"\f542"}.bi-shop::before{content:"\f543"}.bi-shuffle::before{content:"\f544"}.bi-signpost-2-fill::before{content:"\f545"}.bi-signpost-2::before{content:"\f546"}.bi-signpost-fill::before{content:"\f547"}.bi-signpost-split-fill::before{content:"\f548"}.bi-signpost-split::before{content:"\f549"}.bi-signpost::before{content:"\f54a"}.bi-sim-fill::before{content:"\f54b"}.bi-sim::before{content:"\f54c"}.bi-skip-backward-btn-fill::before{content:"\f54d"}.bi-skip-backward-btn::before{content:"\f54e"}.bi-skip-backward-circle-fill::before{content:"\f54f"}.bi-skip-backward-circle::before{content:"\f550"}.bi-skip-backward-fill::before{content:"\f551"}.bi-skip-backward::before{content:"\f552"}.bi-skip-end-btn-fill::before{content:"\f553"}.bi-skip-end-btn::before{content:"\f554"}.bi-skip-end-circle-fill::before{content:"\f555"}.bi-skip-end-circle::before{content:"\f556"}.bi-skip-end-fill::before{content:"\f557"}.bi-skip-end::before{content:"\f558"}.bi-skip-forward-btn-fill::before{content:"\f559"}.bi-skip-forward-btn::before{content:"\f55a"}.bi-skip-forward-circle-fill::before{content:"\f55b"}.bi-skip-forward-circle::before{content:"\f55c"}.bi-skip-forward-fill::before{content:"\f55d"}.bi-skip-forward::before{content:"\f55e"}.bi-skip-start-btn-fill::before{content:"\f55f"}.bi-skip-start-btn::before{content:"\f560"}.bi-skip-start-circle-fill::before{content:"\f561"}.bi-skip-start-circle::before{content:"\f562"}.bi-skip-start-fill::before{content:"\f563"}.bi-skip-start::before{content:"\f564"}.bi-slack::before{content:"\f565"}.bi-slash-circle-fill::before{content:"\f566"}.bi-slash-circle::before{content:"\f567"}.bi-slash-square-fill::before{content:"\f568"}.bi-slash-square::before{content:"\f569"}.bi-slash::before{content:"\f56a"}.bi-sliders::before{content:"\f56b"}.bi-smartwatch::before{content:"\f56c"}.bi-snow::before{content:"\f56d"}.bi-snow2::before{content:"\f56e"}.bi-snow3::before{content:"\f56f"}.bi-sort-alpha-down-alt::before{content:"\f570"}.bi-sort-alpha-down::before{content:"\f571"}.bi-sort-alpha-up-alt::before{content:"\f572"}.bi-sort-alpha-up::before{content:"\f573"}.bi-sort-down-alt::before{content:"\f574"}.bi-sort-down::before{content:"\f575"}.bi-sort-numeric-down-alt::before{content:"\f576"}.bi-sort-numeric-down::before{content:"\f577"}.bi-sort-numeric-up-alt::before{content:"\f578"}.bi-sort-numeric-up::before{content:"\f579"}.bi-sort-up-alt::before{content:"\f57a"}.bi-sort-up::before{content:"\f57b"}.bi-soundwave::before{content:"\f57c"}.bi-speaker-fill::before{content:"\f57d"}.bi-speaker::before{content:"\f57e"}.bi-speedometer::before{content:"\f57f"}.bi-speedometer2::before{content:"\f580"}.bi-spellcheck::before{content:"\f581"}.bi-square-fill::before{content:"\f582"}.bi-square-half::before{content:"\f583"}.bi-square::before{content:"\f584"}.bi-stack::before{content:"\f585"}.bi-star-fill::before{content:"\f586"}.bi-star-half::before{content:"\f587"}.bi-star::before{content:"\f588"}.bi-stars::before{content:"\f589"}.bi-stickies-fill::before{content:"\f58a"}.bi-stickies::before{content:"\f58b"}.bi-sticky-fill::before{content:"\f58c"}.bi-sticky::before{content:"\f58d"}.bi-stop-btn-fill::before{content:"\f58e"}.bi-stop-btn::before{content:"\f58f"}.bi-stop-circle-fill::before{content:"\f590"}.bi-stop-circle::before{content:"\f591"}.bi-stop-fill::before{content:"\f592"}.bi-stop::before{content:"\f593"}.bi-stoplights-fill::before{content:"\f594"}.bi-stoplights::before{content:"\f595"}.bi-stopwatch-fill::before{content:"\f596"}.bi-stopwatch::before{content:"\f597"}.bi-subtract::before{content:"\f598"}.bi-suit-club-fill::before{content:"\f599"}.bi-suit-club::before{content:"\f59a"}.bi-suit-diamond-fill::before{content:"\f59b"}.bi-suit-diamond::before{content:"\f59c"}.bi-suit-heart-fill::before{content:"\f59d"}.bi-suit-heart::before{content:"\f59e"}.bi-suit-spade-fill::before{content:"\f59f"}.bi-suit-spade::before{content:"\f5a0"}.bi-sun-fill::before{content:"\f5a1"}.bi-sun::before{content:"\f5a2"}.bi-sunglasses::before{content:"\f5a3"}.bi-sunrise-fill::before{content:"\f5a4"}.bi-sunrise::before{content:"\f5a5"}.bi-sunset-fill::before{content:"\f5a6"}.bi-sunset::before{content:"\f5a7"}.bi-symmetry-horizontal::before{content:"\f5a8"}.bi-symmetry-vertical::before{content:"\f5a9"}.bi-table::before{content:"\f5aa"}.bi-tablet-fill::before{content:"\f5ab"}.bi-tablet-landscape-fill::before{content:"\f5ac"}.bi-tablet-landscape::before{content:"\f5ad"}.bi-tablet::before{content:"\f5ae"}.bi-tag-fill::before{content:"\f5af"}.bi-tag::before{content:"\f5b0"}.bi-tags-fill::before{content:"\f5b1"}.bi-tags::before{content:"\f5b2"}.bi-telegram::before{content:"\f5b3"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone-forward-fill::before{content:"\f5b5"}.bi-telephone-forward::before{content:"\f5b6"}.bi-telephone-inbound-fill::before{content:"\f5b7"}.bi-telephone-inbound::before{content:"\f5b8"}.bi-telephone-minus-fill::before{content:"\f5b9"}.bi-telephone-minus::before{content:"\f5ba"}.bi-telephone-outbound-fill::before{content:"\f5bb"}.bi-telephone-outbound::before{content:"\f5bc"}.bi-telephone-plus-fill::before{content:"\f5bd"}.bi-telephone-plus::before{content:"\f5be"}.bi-telephone-x-fill::before{content:"\f5bf"}.bi-telephone-x::before{content:"\f5c0"}.bi-telephone::before{content:"\f5c1"}.bi-terminal-fill::before{content:"\f5c2"}.bi-terminal::before{content:"\f5c3"}.bi-text-center::before{content:"\f5c4"}.bi-text-indent-left::before{content:"\f5c5"}.bi-text-indent-right::before{content:"\f5c6"}.bi-text-left::before{content:"\f5c7"}.bi-text-paragraph::before{content:"\f5c8"}.bi-text-right::before{content:"\f5c9"}.bi-textarea-resize::before{content:"\f5ca"}.bi-textarea-t::before{content:"\f5cb"}.bi-textarea::before{content:"\f5cc"}.bi-thermometer-half::before{content:"\f5cd"}.bi-thermometer-high::before{content:"\f5ce"}.bi-thermometer-low::before{content:"\f5cf"}.bi-thermometer-snow::before{content:"\f5d0"}.bi-thermometer-sun::before{content:"\f5d1"}.bi-thermometer::before{content:"\f5d2"}.bi-three-dots-vertical::before{content:"\f5d3"}.bi-three-dots::before{content:"\f5d4"}.bi-toggle-off::before{content:"\f5d5"}.bi-toggle-on::before{content:"\f5d6"}.bi-toggle2-off::before{content:"\f5d7"}.bi-toggle2-on::before{content:"\f5d8"}.bi-toggles::before{content:"\f5d9"}.bi-toggles2::before{content:"\f5da"}.bi-tools::before{content:"\f5db"}.bi-tornado::before{content:"\f5dc"}.bi-trash-fill::before{content:"\f5dd"}.bi-trash::before{content:"\f5de"}.bi-trash2-fill::before{content:"\f5df"}.bi-trash2::before{content:"\f5e0"}.bi-tree-fill::before{content:"\f5e1"}.bi-tree::before{content:"\f5e2"}.bi-triangle-fill::before{content:"\f5e3"}.bi-triangle-half::before{content:"\f5e4"}.bi-triangle::before{content:"\f5e5"}.bi-trophy-fill::before{content:"\f5e6"}.bi-trophy::before{content:"\f5e7"}.bi-tropical-storm::before{content:"\f5e8"}.bi-truck-flatbed::before{content:"\f5e9"}.bi-truck::before{content:"\f5ea"}.bi-tsunami::before{content:"\f5eb"}.bi-tv-fill::before{content:"\f5ec"}.bi-tv::before{content:"\f5ed"}.bi-twitch::before{content:"\f5ee"}.bi-twitter::before{content:"\f5ef"}.bi-type-bold::before{content:"\f5f0"}.bi-type-h1::before{content:"\f5f1"}.bi-type-h2::before{content:"\f5f2"}.bi-type-h3::before{content:"\f5f3"}.bi-type-italic::before{content:"\f5f4"}.bi-type-strikethrough::before{content:"\f5f5"}.bi-type-underline::before{content:"\f5f6"}.bi-type::before{content:"\f5f7"}.bi-ui-checks-grid::before{content:"\f5f8"}.bi-ui-checks::before{content:"\f5f9"}.bi-ui-radios-grid::before{content:"\f5fa"}.bi-ui-radios::before{content:"\f5fb"}.bi-umbrella-fill::before{content:"\f5fc"}.bi-umbrella::before{content:"\f5fd"}.bi-union::before{content:"\f5fe"}.bi-unlock-fill::before{content:"\f5ff"}.bi-unlock::before{content:"\f600"}.bi-upc-scan::before{content:"\f601"}.bi-upc::before{content:"\f602"}.bi-upload::before{content:"\f603"}.bi-vector-pen::before{content:"\f604"}.bi-view-list::before{content:"\f605"}.bi-view-stacked::before{content:"\f606"}.bi-vinyl-fill::before{content:"\f607"}.bi-vinyl::before{content:"\f608"}.bi-voicemail::before{content:"\f609"}.bi-volume-down-fill::before{content:"\f60a"}.bi-volume-down::before{content:"\f60b"}.bi-volume-mute-fill::before{content:"\f60c"}.bi-volume-mute::before{content:"\f60d"}.bi-volume-off-fill::before{content:"\f60e"}.bi-volume-off::before{content:"\f60f"}.bi-volume-up-fill::before{content:"\f610"}.bi-volume-up::before{content:"\f611"}.bi-vr::before{content:"\f612"}.bi-wallet-fill::before{content:"\f613"}.bi-wallet::before{content:"\f614"}.bi-wallet2::before{content:"\f615"}.bi-watch::before{content:"\f616"}.bi-water::before{content:"\f617"}.bi-whatsapp::before{content:"\f618"}.bi-wifi-1::before{content:"\f619"}.bi-wifi-2::before{content:"\f61a"}.bi-wifi-off::before{content:"\f61b"}.bi-wifi::before{content:"\f61c"}.bi-wind::before{content:"\f61d"}.bi-window-dock::before{content:"\f61e"}.bi-window-sidebar::before{content:"\f61f"}.bi-window::before{content:"\f620"}.bi-wrench::before{content:"\f621"}.bi-x-circle-fill::before{content:"\f622"}.bi-x-circle::before{content:"\f623"}.bi-x-diamond-fill::before{content:"\f624"}.bi-x-diamond::before{content:"\f625"}.bi-x-octagon-fill::before{content:"\f626"}.bi-x-octagon::before{content:"\f627"}.bi-x-square-fill::before{content:"\f628"}.bi-x-square::before{content:"\f629"}.bi-x::before{content:"\f62a"}.bi-youtube::before{content:"\f62b"}.bi-zoom-in::before{content:"\f62c"}.bi-zoom-out::before{content:"\f62d"}.bi-bank::before{content:"\f62e"}.bi-bank2::before{content:"\f62f"}.bi-bell-slash-fill::before{content:"\f630"}.bi-bell-slash::before{content:"\f631"}.bi-cash-coin::before{content:"\f632"}.bi-check-lg::before{content:"\f633"}.bi-coin::before{content:"\f634"}.bi-currency-bitcoin::before{content:"\f635"}.bi-currency-dollar::before{content:"\f636"}.bi-currency-euro::before{content:"\f637"}.bi-currency-exchange::before{content:"\f638"}.bi-currency-pound::before{content:"\f639"}.bi-currency-yen::before{content:"\f63a"}.bi-dash-lg::before{content:"\f63b"}.bi-exclamation-lg::before{content:"\f63c"}.bi-file-earmark-pdf-fill::before{content:"\f63d"}.bi-file-earmark-pdf::before{content:"\f63e"}.bi-file-pdf-fill::before{content:"\f63f"}.bi-file-pdf::before{content:"\f640"}.bi-gender-ambiguous::before{content:"\f641"}.bi-gender-female::before{content:"\f642"}.bi-gender-male::before{content:"\f643"}.bi-gender-trans::before{content:"\f644"}.bi-headset-vr::before{content:"\f645"}.bi-info-lg::before{content:"\f646"}.bi-mastodon::before{content:"\f647"}.bi-messenger::before{content:"\f648"}.bi-piggy-bank-fill::before{content:"\f649"}.bi-piggy-bank::before{content:"\f64a"}.bi-pin-map-fill::before{content:"\f64b"}.bi-pin-map::before{content:"\f64c"}.bi-plus-lg::before{content:"\f64d"}.bi-question-lg::before{content:"\f64e"}.bi-recycle::before{content:"\f64f"}.bi-reddit::before{content:"\f650"}.bi-safe-fill::before{content:"\f651"}.bi-safe2-fill::before{content:"\f652"}.bi-safe2::before{content:"\f653"}.bi-sd-card-fill::before{content:"\f654"}.bi-sd-card::before{content:"\f655"}.bi-skype::before{content:"\f656"}.bi-slash-lg::before{content:"\f657"}.bi-translate::before{content:"\f658"}.bi-x-lg::before{content:"\f659"}.bi-safe::before{content:"\f65a"}.bi-apple::before{content:"\f65b"}.bi-microsoft::before{content:"\f65d"}.bi-windows::before{content:"\f65e"}.bi-behance::before{content:"\f65c"}.bi-dribbble::before{content:"\f65f"}.bi-line::before{content:"\f660"}.bi-medium::before{content:"\f661"}.bi-paypal::before{content:"\f662"}.bi-pinterest::before{content:"\f663"}.bi-signal::before{content:"\f664"}.bi-snapchat::before{content:"\f665"}.bi-spotify::before{content:"\f666"}.bi-stack-overflow::before{content:"\f667"}.bi-strava::before{content:"\f668"}.bi-wordpress::before{content:"\f669"}.bi-vimeo::before{content:"\f66a"}.bi-activity::before{content:"\f66b"}.bi-easel2-fill::before{content:"\f66c"}.bi-easel2::before{content:"\f66d"}.bi-easel3-fill::before{content:"\f66e"}.bi-easel3::before{content:"\f66f"}.bi-fan::before{content:"\f670"}.bi-fingerprint::before{content:"\f671"}.bi-graph-down-arrow::before{content:"\f672"}.bi-graph-up-arrow::before{content:"\f673"}.bi-hypnotize::before{content:"\f674"}.bi-magic::before{content:"\f675"}.bi-person-rolodex::before{content:"\f676"}.bi-person-video::before{content:"\f677"}.bi-person-video2::before{content:"\f678"}.bi-person-video3::before{content:"\f679"}.bi-person-workspace::before{content:"\f67a"}.bi-radioactive::before{content:"\f67b"}.bi-webcam-fill::before{content:"\f67c"}.bi-webcam::before{content:"\f67d"}.bi-yin-yang::before{content:"\f67e"}.bi-bandaid-fill::before{content:"\f680"}.bi-bandaid::before{content:"\f681"}.bi-bluetooth::before{content:"\f682"}.bi-body-text::before{content:"\f683"}.bi-boombox::before{content:"\f684"}.bi-boxes::before{content:"\f685"}.bi-dpad-fill::before{content:"\f686"}.bi-dpad::before{content:"\f687"}.bi-ear-fill::before{content:"\f688"}.bi-ear::before{content:"\f689"}.bi-envelope-check-fill::before{content:"\f68b"}.bi-envelope-check::before{content:"\f68c"}.bi-envelope-dash-fill::before{content:"\f68e"}.bi-envelope-dash::before{content:"\f68f"}.bi-envelope-exclamation-fill::before{content:"\f691"}.bi-envelope-exclamation::before{content:"\f692"}.bi-envelope-plus-fill::before{content:"\f693"}.bi-envelope-plus::before{content:"\f694"}.bi-envelope-slash-fill::before{content:"\f696"}.bi-envelope-slash::before{content:"\f697"}.bi-envelope-x-fill::before{content:"\f699"}.bi-envelope-x::before{content:"\f69a"}.bi-explicit-fill::before{content:"\f69b"}.bi-explicit::before{content:"\f69c"}.bi-git::before{content:"\f69d"}.bi-infinity::before{content:"\f69e"}.bi-list-columns-reverse::before{content:"\f69f"}.bi-list-columns::before{content:"\f6a0"}.bi-meta::before{content:"\f6a1"}.bi-nintendo-switch::before{content:"\f6a4"}.bi-pc-display-horizontal::before{content:"\f6a5"}.bi-pc-display::before{content:"\f6a6"}.bi-pc-horizontal::before{content:"\f6a7"}.bi-pc::before{content:"\f6a8"}.bi-playstation::before{content:"\f6a9"}.bi-plus-slash-minus::before{content:"\f6aa"}.bi-projector-fill::before{content:"\f6ab"}.bi-projector::before{content:"\f6ac"}.bi-qr-code-scan::before{content:"\f6ad"}.bi-qr-code::before{content:"\f6ae"}.bi-quora::before{content:"\f6af"}.bi-quote::before{content:"\f6b0"}.bi-robot::before{content:"\f6b1"}.bi-send-check-fill::before{content:"\f6b2"}.bi-send-check::before{content:"\f6b3"}.bi-send-dash-fill::before{content:"\f6b4"}.bi-send-dash::before{content:"\f6b5"}.bi-send-exclamation-fill::before{content:"\f6b7"}.bi-send-exclamation::before{content:"\f6b8"}.bi-send-fill::before{content:"\f6b9"}.bi-send-plus-fill::before{content:"\f6ba"}.bi-send-plus::before{content:"\f6bb"}.bi-send-slash-fill::before{content:"\f6bc"}.bi-send-slash::before{content:"\f6bd"}.bi-send-x-fill::before{content:"\f6be"}.bi-send-x::before{content:"\f6bf"}.bi-send::before{content:"\f6c0"}.bi-steam::before{content:"\f6c1"}.bi-terminal-dash::before{content:"\f6c3"}.bi-terminal-plus::before{content:"\f6c4"}.bi-terminal-split::before{content:"\f6c5"}.bi-ticket-detailed-fill::before{content:"\f6c6"}.bi-ticket-detailed::before{content:"\f6c7"}.bi-ticket-fill::before{content:"\f6c8"}.bi-ticket-perforated-fill::before{content:"\f6c9"}.bi-ticket-perforated::before{content:"\f6ca"}.bi-ticket::before{content:"\f6cb"}.bi-tiktok::before{content:"\f6cc"}.bi-window-dash::before{content:"\f6cd"}.bi-window-desktop::before{content:"\f6ce"}.bi-window-fullscreen::before{content:"\f6cf"}.bi-window-plus::before{content:"\f6d0"}.bi-window-split::before{content:"\f6d1"}.bi-window-stack::before{content:"\f6d2"}.bi-window-x::before{content:"\f6d3"}.bi-xbox::before{content:"\f6d4"}.bi-ethernet::before{content:"\f6d5"}.bi-hdmi-fill::before{content:"\f6d6"}.bi-hdmi::before{content:"\f6d7"}.bi-usb-c-fill::before{content:"\f6d8"}.bi-usb-c::before{content:"\f6d9"}.bi-usb-fill::before{content:"\f6da"}.bi-usb-plug-fill::before{content:"\f6db"}.bi-usb-plug::before{content:"\f6dc"}.bi-usb-symbol::before{content:"\f6dd"}.bi-usb::before{content:"\f6de"}.bi-boombox-fill::before{content:"\f6df"}.bi-displayport::before{content:"\f6e1"}.bi-gpu-card::before{content:"\f6e2"}.bi-memory::before{content:"\f6e3"}.bi-modem-fill::before{content:"\f6e4"}.bi-modem::before{content:"\f6e5"}.bi-motherboard-fill::before{content:"\f6e6"}.bi-motherboard::before{content:"\f6e7"}.bi-optical-audio-fill::before{content:"\f6e8"}.bi-optical-audio::before{content:"\f6e9"}.bi-pci-card::before{content:"\f6ea"}.bi-router-fill::before{content:"\f6eb"}.bi-router::before{content:"\f6ec"}.bi-thunderbolt-fill::before{content:"\f6ef"}.bi-thunderbolt::before{content:"\f6f0"}.bi-usb-drive-fill::before{content:"\f6f1"}.bi-usb-drive::before{content:"\f6f2"}.bi-usb-micro-fill::before{content:"\f6f3"}.bi-usb-micro::before{content:"\f6f4"}.bi-usb-mini-fill::before{content:"\f6f5"}.bi-usb-mini::before{content:"\f6f6"}.bi-cloud-haze2::before{content:"\f6f7"}.bi-device-hdd-fill::before{content:"\f6f8"}.bi-device-hdd::before{content:"\f6f9"}.bi-device-ssd-fill::before{content:"\f6fa"}.bi-device-ssd::before{content:"\f6fb"}.bi-displayport-fill::before{content:"\f6fc"}.bi-mortarboard-fill::before{content:"\f6fd"}.bi-mortarboard::before{content:"\f6fe"}.bi-terminal-x::before{content:"\f6ff"}.bi-arrow-through-heart-fill::before{content:"\f700"}.bi-arrow-through-heart::before{content:"\f701"}.bi-badge-sd-fill::before{content:"\f702"}.bi-badge-sd::before{content:"\f703"}.bi-bag-heart-fill::before{content:"\f704"}.bi-bag-heart::before{content:"\f705"}.bi-balloon-fill::before{content:"\f706"}.bi-balloon-heart-fill::before{content:"\f707"}.bi-balloon-heart::before{content:"\f708"}.bi-balloon::before{content:"\f709"}.bi-box2-fill::before{content:"\f70a"}.bi-box2-heart-fill::before{content:"\f70b"}.bi-box2-heart::before{content:"\f70c"}.bi-box2::before{content:"\f70d"}.bi-braces-asterisk::before{content:"\f70e"}.bi-calendar-heart-fill::before{content:"\f70f"}.bi-calendar-heart::before{content:"\f710"}.bi-calendar2-heart-fill::before{content:"\f711"}.bi-calendar2-heart::before{content:"\f712"}.bi-chat-heart-fill::before{content:"\f713"}.bi-chat-heart::before{content:"\f714"}.bi-chat-left-heart-fill::before{content:"\f715"}.bi-chat-left-heart::before{content:"\f716"}.bi-chat-right-heart-fill::before{content:"\f717"}.bi-chat-right-heart::before{content:"\f718"}.bi-chat-square-heart-fill::before{content:"\f719"}.bi-chat-square-heart::before{content:"\f71a"}.bi-clipboard-check-fill::before{content:"\f71b"}.bi-clipboard-data-fill::before{content:"\f71c"}.bi-clipboard-fill::before{content:"\f71d"}.bi-clipboard-heart-fill::before{content:"\f71e"}.bi-clipboard-heart::before{content:"\f71f"}.bi-clipboard-minus-fill::before{content:"\f720"}.bi-clipboard-plus-fill::before{content:"\f721"}.bi-clipboard-pulse::before{content:"\f722"}.bi-clipboard-x-fill::before{content:"\f723"}.bi-clipboard2-check-fill::before{content:"\f724"}.bi-clipboard2-check::before{content:"\f725"}.bi-clipboard2-data-fill::before{content:"\f726"}.bi-clipboard2-data::before{content:"\f727"}.bi-clipboard2-fill::before{content:"\f728"}.bi-clipboard2-heart-fill::before{content:"\f729"}.bi-clipboard2-heart::before{content:"\f72a"}.bi-clipboard2-minus-fill::before{content:"\f72b"}.bi-clipboard2-minus::before{content:"\f72c"}.bi-clipboard2-plus-fill::before{content:"\f72d"}.bi-clipboard2-plus::before{content:"\f72e"}.bi-clipboard2-pulse-fill::before{content:"\f72f"}.bi-clipboard2-pulse::before{content:"\f730"}.bi-clipboard2-x-fill::before{content:"\f731"}.bi-clipboard2-x::before{content:"\f732"}.bi-clipboard2::before{content:"\f733"}.bi-emoji-kiss-fill::before{content:"\f734"}.bi-emoji-kiss::before{content:"\f735"}.bi-envelope-heart-fill::before{content:"\f736"}.bi-envelope-heart::before{content:"\f737"}.bi-envelope-open-heart-fill::before{content:"\f738"}.bi-envelope-open-heart::before{content:"\f739"}.bi-envelope-paper-fill::before{content:"\f73a"}.bi-envelope-paper-heart-fill::before{content:"\f73b"}.bi-envelope-paper-heart::before{content:"\f73c"}.bi-envelope-paper::before{content:"\f73d"}.bi-filetype-aac::before{content:"\f73e"}.bi-filetype-ai::before{content:"\f73f"}.bi-filetype-bmp::before{content:"\f740"}.bi-filetype-cs::before{content:"\f741"}.bi-filetype-css::before{content:"\f742"}.bi-filetype-csv::before{content:"\f743"}.bi-filetype-doc::before{content:"\f744"}.bi-filetype-docx::before{content:"\f745"}.bi-filetype-exe::before{content:"\f746"}.bi-filetype-gif::before{content:"\f747"}.bi-filetype-heic::before{content:"\f748"}.bi-filetype-html::before{content:"\f749"}.bi-filetype-java::before{content:"\f74a"}.bi-filetype-jpg::before{content:"\f74b"}.bi-filetype-js::before{content:"\f74c"}.bi-filetype-jsx::before{content:"\f74d"}.bi-filetype-key::before{content:"\f74e"}.bi-filetype-m4p::before{content:"\f74f"}.bi-filetype-md::before{content:"\f750"}.bi-filetype-mdx::before{content:"\f751"}.bi-filetype-mov::before{content:"\f752"}.bi-filetype-mp3::before{content:"\f753"}.bi-filetype-mp4::before{content:"\f754"}.bi-filetype-otf::before{content:"\f755"}.bi-filetype-pdf::before{content:"\f756"}.bi-filetype-php::before{content:"\f757"}.bi-filetype-png::before{content:"\f758"}.bi-filetype-ppt::before{content:"\f75a"}.bi-filetype-psd::before{content:"\f75b"}.bi-filetype-py::before{content:"\f75c"}.bi-filetype-raw::before{content:"\f75d"}.bi-filetype-rb::before{content:"\f75e"}.bi-filetype-sass::before{content:"\f75f"}.bi-filetype-scss::before{content:"\f760"}.bi-filetype-sh::before{content:"\f761"}.bi-filetype-svg::before{content:"\f762"}.bi-filetype-tiff::before{content:"\f763"}.bi-filetype-tsx::before{content:"\f764"}.bi-filetype-ttf::before{content:"\f765"}.bi-filetype-txt::before{content:"\f766"}.bi-filetype-wav::before{content:"\f767"}.bi-filetype-woff::before{content:"\f768"}.bi-filetype-xls::before{content:"\f76a"}.bi-filetype-xml::before{content:"\f76b"}.bi-filetype-yml::before{content:"\f76c"}.bi-heart-arrow::before{content:"\f76d"}.bi-heart-pulse-fill::before{content:"\f76e"}.bi-heart-pulse::before{content:"\f76f"}.bi-heartbreak-fill::before{content:"\f770"}.bi-heartbreak::before{content:"\f771"}.bi-hearts::before{content:"\f772"}.bi-hospital-fill::before{content:"\f773"}.bi-hospital::before{content:"\f774"}.bi-house-heart-fill::before{content:"\f775"}.bi-house-heart::before{content:"\f776"}.bi-incognito::before{content:"\f777"}.bi-magnet-fill::before{content:"\f778"}.bi-magnet::before{content:"\f779"}.bi-person-heart::before{content:"\f77a"}.bi-person-hearts::before{content:"\f77b"}.bi-phone-flip::before{content:"\f77c"}.bi-plugin::before{content:"\f77d"}.bi-postage-fill::before{content:"\f77e"}.bi-postage-heart-fill::before{content:"\f77f"}.bi-postage-heart::before{content:"\f780"}.bi-postage::before{content:"\f781"}.bi-postcard-fill::before{content:"\f782"}.bi-postcard-heart-fill::before{content:"\f783"}.bi-postcard-heart::before{content:"\f784"}.bi-postcard::before{content:"\f785"}.bi-search-heart-fill::before{content:"\f786"}.bi-search-heart::before{content:"\f787"}.bi-sliders2-vertical::before{content:"\f788"}.bi-sliders2::before{content:"\f789"}.bi-trash3-fill::before{content:"\f78a"}.bi-trash3::before{content:"\f78b"}.bi-valentine::before{content:"\f78c"}.bi-valentine2::before{content:"\f78d"}.bi-wrench-adjustable-circle-fill::before{content:"\f78e"}.bi-wrench-adjustable-circle::before{content:"\f78f"}.bi-wrench-adjustable::before{content:"\f790"}.bi-filetype-json::before{content:"\f791"}.bi-filetype-pptx::before{content:"\f792"}.bi-filetype-xlsx::before{content:"\f793"}.bi-1-circle-fill::before{content:"\f796"}.bi-1-circle::before{content:"\f797"}.bi-1-square-fill::before{content:"\f798"}.bi-1-square::before{content:"\f799"}.bi-2-circle-fill::before{content:"\f79c"}.bi-2-circle::before{content:"\f79d"}.bi-2-square-fill::before{content:"\f79e"}.bi-2-square::before{content:"\f79f"}.bi-3-circle-fill::before{content:"\f7a2"}.bi-3-circle::before{content:"\f7a3"}.bi-3-square-fill::before{content:"\f7a4"}.bi-3-square::before{content:"\f7a5"}.bi-4-circle-fill::before{content:"\f7a8"}.bi-4-circle::before{content:"\f7a9"}.bi-4-square-fill::before{content:"\f7aa"}.bi-4-square::before{content:"\f7ab"}.bi-5-circle-fill::before{content:"\f7ae"}.bi-5-circle::before{content:"\f7af"}.bi-5-square-fill::before{content:"\f7b0"}.bi-5-square::before{content:"\f7b1"}.bi-6-circle-fill::before{content:"\f7b4"}.bi-6-circle::before{content:"\f7b5"}.bi-6-square-fill::before{content:"\f7b6"}.bi-6-square::before{content:"\f7b7"}.bi-7-circle-fill::before{content:"\f7ba"}.bi-7-circle::before{content:"\f7bb"}.bi-7-square-fill::before{content:"\f7bc"}.bi-7-square::before{content:"\f7bd"}.bi-8-circle-fill::before{content:"\f7c0"}.bi-8-circle::before{content:"\f7c1"}.bi-8-square-fill::before{content:"\f7c2"}.bi-8-square::before{content:"\f7c3"}.bi-9-circle-fill::before{content:"\f7c6"}.bi-9-circle::before{content:"\f7c7"}.bi-9-square-fill::before{content:"\f7c8"}.bi-9-square::before{content:"\f7c9"}.bi-airplane-engines-fill::before{content:"\f7ca"}.bi-airplane-engines::before{content:"\f7cb"}.bi-airplane-fill::before{content:"\f7cc"}.bi-airplane::before{content:"\f7cd"}.bi-alexa::before{content:"\f7ce"}.bi-alipay::before{content:"\f7cf"}.bi-android::before{content:"\f7d0"}.bi-android2::before{content:"\f7d1"}.bi-box-fill::before{content:"\f7d2"}.bi-box-seam-fill::before{content:"\f7d3"}.bi-browser-chrome::before{content:"\f7d4"}.bi-browser-edge::before{content:"\f7d5"}.bi-browser-firefox::before{content:"\f7d6"}.bi-browser-safari::before{content:"\f7d7"}.bi-c-circle-fill::before{content:"\f7da"}.bi-c-circle::before{content:"\f7db"}.bi-c-square-fill::before{content:"\f7dc"}.bi-c-square::before{content:"\f7dd"}.bi-capsule-pill::before{content:"\f7de"}.bi-capsule::before{content:"\f7df"}.bi-car-front-fill::before{content:"\f7e0"}.bi-car-front::before{content:"\f7e1"}.bi-cassette-fill::before{content:"\f7e2"}.bi-cassette::before{content:"\f7e3"}.bi-cc-circle-fill::before{content:"\f7e6"}.bi-cc-circle::before{content:"\f7e7"}.bi-cc-square-fill::before{content:"\f7e8"}.bi-cc-square::before{content:"\f7e9"}.bi-cup-hot-fill::before{content:"\f7ea"}.bi-cup-hot::before{content:"\f7eb"}.bi-currency-rupee::before{content:"\f7ec"}.bi-dropbox::before{content:"\f7ed"}.bi-escape::before{content:"\f7ee"}.bi-fast-forward-btn-fill::before{content:"\f7ef"}.bi-fast-forward-btn::before{content:"\f7f0"}.bi-fast-forward-circle-fill::before{content:"\f7f1"}.bi-fast-forward-circle::before{content:"\f7f2"}.bi-fast-forward-fill::before{content:"\f7f3"}.bi-fast-forward::before{content:"\f7f4"}.bi-filetype-sql::before{content:"\f7f5"}.bi-fire::before{content:"\f7f6"}.bi-google-play::before{content:"\f7f7"}.bi-h-circle-fill::before{content:"\f7fa"}.bi-h-circle::before{content:"\f7fb"}.bi-h-square-fill::before{content:"\f7fc"}.bi-h-square::before{content:"\f7fd"}.bi-indent::before{content:"\f7fe"}.bi-lungs-fill::before{content:"\f7ff"}.bi-lungs::before{content:"\f800"}.bi-microsoft-teams::before{content:"\f801"}.bi-p-circle-fill::before{content:"\f804"}.bi-p-circle::before{content:"\f805"}.bi-p-square-fill::before{content:"\f806"}.bi-p-square::before{content:"\f807"}.bi-pass-fill::before{content:"\f808"}.bi-pass::before{content:"\f809"}.bi-prescription::before{content:"\f80a"}.bi-prescription2::before{content:"\f80b"}.bi-r-circle-fill::before{content:"\f80e"}.bi-r-circle::before{content:"\f80f"}.bi-r-square-fill::before{content:"\f810"}.bi-r-square::before{content:"\f811"}.bi-repeat-1::before{content:"\f812"}.bi-repeat::before{content:"\f813"}.bi-rewind-btn-fill::before{content:"\f814"}.bi-rewind-btn::before{content:"\f815"}.bi-rewind-circle-fill::before{content:"\f816"}.bi-rewind-circle::before{content:"\f817"}.bi-rewind-fill::before{content:"\f818"}.bi-rewind::before{content:"\f819"}.bi-train-freight-front-fill::before{content:"\f81a"}.bi-train-freight-front::before{content:"\f81b"}.bi-train-front-fill::before{content:"\f81c"}.bi-train-front::before{content:"\f81d"}.bi-train-lightrail-front-fill::before{content:"\f81e"}.bi-train-lightrail-front::before{content:"\f81f"}.bi-truck-front-fill::before{content:"\f820"}.bi-truck-front::before{content:"\f821"}.bi-ubuntu::before{content:"\f822"}.bi-unindent::before{content:"\f823"}.bi-unity::before{content:"\f824"}.bi-universal-access-circle::before{content:"\f825"}.bi-universal-access::before{content:"\f826"}.bi-virus::before{content:"\f827"}.bi-virus2::before{content:"\f828"}.bi-wechat::before{content:"\f829"}.bi-yelp::before{content:"\f82a"}.bi-sign-stop-fill::before{content:"\f82b"}.bi-sign-stop-lights-fill::before{content:"\f82c"}.bi-sign-stop-lights::before{content:"\f82d"}.bi-sign-stop::before{content:"\f82e"}.bi-sign-turn-left-fill::before{content:"\f82f"}.bi-sign-turn-left::before{content:"\f830"}.bi-sign-turn-right-fill::before{content:"\f831"}.bi-sign-turn-right::before{content:"\f832"}.bi-sign-turn-slight-left-fill::before{content:"\f833"}.bi-sign-turn-slight-left::before{content:"\f834"}.bi-sign-turn-slight-right-fill::before{content:"\f835"}.bi-sign-turn-slight-right::before{content:"\f836"}.bi-sign-yield-fill::before{content:"\f837"}.bi-sign-yield::before{content:"\f838"}.bi-ev-station-fill::before{content:"\f839"}.bi-ev-station::before{content:"\f83a"}.bi-fuel-pump-diesel-fill::before{content:"\f83b"}.bi-fuel-pump-diesel::before{content:"\f83c"}.bi-fuel-pump-fill::before{content:"\f83d"}.bi-fuel-pump::before{content:"\f83e"}.bi-0-circle-fill::before{content:"\f83f"}.bi-0-circle::before{content:"\f840"}.bi-0-square-fill::before{content:"\f841"}.bi-0-square::before{content:"\f842"}.bi-rocket-fill::before{content:"\f843"}.bi-rocket-takeoff-fill::before{content:"\f844"}.bi-rocket-takeoff::before{content:"\f845"}.bi-rocket::before{content:"\f846"}.bi-stripe::before{content:"\f847"}.bi-subscript::before{content:"\f848"}.bi-superscript::before{content:"\f849"}.bi-trello::before{content:"\f84a"}.bi-envelope-at-fill::before{content:"\f84b"}.bi-envelope-at::before{content:"\f84c"}.bi-regex::before{content:"\f84d"}.bi-text-wrap::before{content:"\f84e"}.bi-sign-dead-end-fill::before{content:"\f84f"}.bi-sign-dead-end::before{content:"\f850"}.bi-sign-do-not-enter-fill::before{content:"\f851"}.bi-sign-do-not-enter::before{content:"\f852"}.bi-sign-intersection-fill::before{content:"\f853"}.bi-sign-intersection-side-fill::before{content:"\f854"}.bi-sign-intersection-side::before{content:"\f855"}.bi-sign-intersection-t-fill::before{content:"\f856"}.bi-sign-intersection-t::before{content:"\f857"}.bi-sign-intersection-y-fill::before{content:"\f858"}.bi-sign-intersection-y::before{content:"\f859"}.bi-sign-intersection::before{content:"\f85a"}.bi-sign-merge-left-fill::before{content:"\f85b"}.bi-sign-merge-left::before{content:"\f85c"}.bi-sign-merge-right-fill::before{content:"\f85d"}.bi-sign-merge-right::before{content:"\f85e"}.bi-sign-no-left-turn-fill::before{content:"\f85f"}.bi-sign-no-left-turn::before{content:"\f860"}.bi-sign-no-parking-fill::before{content:"\f861"}.bi-sign-no-parking::before{content:"\f862"}.bi-sign-no-right-turn-fill::before{content:"\f863"}.bi-sign-no-right-turn::before{content:"\f864"}.bi-sign-railroad-fill::before{content:"\f865"}.bi-sign-railroad::before{content:"\f866"}.bi-building-add::before{content:"\f867"}.bi-building-check::before{content:"\f868"}.bi-building-dash::before{content:"\f869"}.bi-building-down::before{content:"\f86a"}.bi-building-exclamation::before{content:"\f86b"}.bi-building-fill-add::before{content:"\f86c"}.bi-building-fill-check::before{content:"\f86d"}.bi-building-fill-dash::before{content:"\f86e"}.bi-building-fill-down::before{content:"\f86f"}.bi-building-fill-exclamation::before{content:"\f870"}.bi-building-fill-gear::before{content:"\f871"}.bi-building-fill-lock::before{content:"\f872"}.bi-building-fill-slash::before{content:"\f873"}.bi-building-fill-up::before{content:"\f874"}.bi-building-fill-x::before{content:"\f875"}.bi-building-fill::before{content:"\f876"}.bi-building-gear::before{content:"\f877"}.bi-building-lock::before{content:"\f878"}.bi-building-slash::before{content:"\f879"}.bi-building-up::before{content:"\f87a"}.bi-building-x::before{content:"\f87b"}.bi-buildings-fill::before{content:"\f87c"}.bi-buildings::before{content:"\f87d"}.bi-bus-front-fill::before{content:"\f87e"}.bi-bus-front::before{content:"\f87f"}.bi-ev-front-fill::before{content:"\f880"}.bi-ev-front::before{content:"\f881"}.bi-globe-americas::before{content:"\f882"}.bi-globe-asia-australia::before{content:"\f883"}.bi-globe-central-south-asia::before{content:"\f884"}.bi-globe-europe-africa::before{content:"\f885"}.bi-house-add-fill::before{content:"\f886"}.bi-house-add::before{content:"\f887"}.bi-house-check-fill::before{content:"\f888"}.bi-house-check::before{content:"\f889"}.bi-house-dash-fill::before{content:"\f88a"}.bi-house-dash::before{content:"\f88b"}.bi-house-down-fill::before{content:"\f88c"}.bi-house-down::before{content:"\f88d"}.bi-house-exclamation-fill::before{content:"\f88e"}.bi-house-exclamation::before{content:"\f88f"}.bi-house-gear-fill::before{content:"\f890"}.bi-house-gear::before{content:"\f891"}.bi-house-lock-fill::before{content:"\f892"}.bi-house-lock::before{content:"\f893"}.bi-house-slash-fill::before{content:"\f894"}.bi-house-slash::before{content:"\f895"}.bi-house-up-fill::before{content:"\f896"}.bi-house-up::before{content:"\f897"}.bi-house-x-fill::before{content:"\f898"}.bi-house-x::before{content:"\f899"}.bi-person-add::before{content:"\f89a"}.bi-person-down::before{content:"\f89b"}.bi-person-exclamation::before{content:"\f89c"}.bi-person-fill-add::before{content:"\f89d"}.bi-person-fill-check::before{content:"\f89e"}.bi-person-fill-dash::before{content:"\f89f"}.bi-person-fill-down::before{content:"\f8a0"}.bi-person-fill-exclamation::before{content:"\f8a1"}.bi-person-fill-gear::before{content:"\f8a2"}.bi-person-fill-lock::before{content:"\f8a3"}.bi-person-fill-slash::before{content:"\f8a4"}.bi-person-fill-up::before{content:"\f8a5"}.bi-person-fill-x::before{content:"\f8a6"}.bi-person-gear::before{content:"\f8a7"}.bi-person-lock::before{content:"\f8a8"}.bi-person-slash::before{content:"\f8a9"}.bi-person-up::before{content:"\f8aa"}.bi-scooter::before{content:"\f8ab"}.bi-taxi-front-fill::before{content:"\f8ac"}.bi-taxi-front::before{content:"\f8ad"}.bi-amd::before{content:"\f8ae"}.bi-database-add::before{content:"\f8af"}.bi-database-check::before{content:"\f8b0"}.bi-database-dash::before{content:"\f8b1"}.bi-database-down::before{content:"\f8b2"}.bi-database-exclamation::before{content:"\f8b3"}.bi-database-fill-add::before{content:"\f8b4"}.bi-database-fill-check::before{content:"\f8b5"}.bi-database-fill-dash::before{content:"\f8b6"}.bi-database-fill-down::before{content:"\f8b7"}.bi-database-fill-exclamation::before{content:"\f8b8"}.bi-database-fill-gear::before{content:"\f8b9"}.bi-database-fill-lock::before{content:"\f8ba"}.bi-database-fill-slash::before{content:"\f8bb"}.bi-database-fill-up::before{content:"\f8bc"}.bi-database-fill-x::before{content:"\f8bd"}.bi-database-fill::before{content:"\f8be"}.bi-database-gear::before{content:"\f8bf"}.bi-database-lock::before{content:"\f8c0"}.bi-database-slash::before{content:"\f8c1"}.bi-database-up::before{content:"\f8c2"}.bi-database-x::before{content:"\f8c3"}.bi-database::before{content:"\f8c4"}.bi-houses-fill::before{content:"\f8c5"}.bi-houses::before{content:"\f8c6"}.bi-nvidia::before{content:"\f8c7"}.bi-person-vcard-fill::before{content:"\f8c8"}.bi-person-vcard::before{content:"\f8c9"}.bi-sina-weibo::before{content:"\f8ca"}.bi-tencent-qq::before{content:"\f8cb"}.bi-wikipedia::before{content:"\f8cc"}.bi-alphabet-uppercase::before{content:"\f2a5"}.bi-alphabet::before{content:"\f68a"}.bi-amazon::before{content:"\f68d"}.bi-arrows-collapse-vertical::before{content:"\f690"}.bi-arrows-expand-vertical::before{content:"\f695"}.bi-arrows-vertical::before{content:"\f698"}.bi-arrows::before{content:"\f6a2"}.bi-ban-fill::before{content:"\f6a3"}.bi-ban::before{content:"\f6b6"}.bi-bing::before{content:"\f6c2"}.bi-cake::before{content:"\f6e0"}.bi-cake2::before{content:"\f6ed"}.bi-cookie::before{content:"\f6ee"}.bi-copy::before{content:"\f759"}.bi-crosshair::before{content:"\f769"}.bi-crosshair2::before{content:"\f794"}.bi-emoji-astonished-fill::before{content:"\f795"}.bi-emoji-astonished::before{content:"\f79a"}.bi-emoji-grimace-fill::before{content:"\f79b"}.bi-emoji-grimace::before{content:"\f7a0"}.bi-emoji-grin-fill::before{content:"\f7a1"}.bi-emoji-grin::before{content:"\f7a6"}.bi-emoji-surprise-fill::before{content:"\f7a7"}.bi-emoji-surprise::before{content:"\f7ac"}.bi-emoji-tear-fill::before{content:"\f7ad"}.bi-emoji-tear::before{content:"\f7b2"}.bi-envelope-arrow-down-fill::before{content:"\f7b3"}.bi-envelope-arrow-down::before{content:"\f7b8"}.bi-envelope-arrow-up-fill::before{content:"\f7b9"}.bi-envelope-arrow-up::before{content:"\f7be"}.bi-feather::before{content:"\f7bf"}.bi-feather2::before{content:"\f7c4"}.bi-floppy-fill::before{content:"\f7c5"}.bi-floppy::before{content:"\f7d8"}.bi-floppy2-fill::before{content:"\f7d9"}.bi-floppy2::before{content:"\f7e4"}.bi-gitlab::before{content:"\f7e5"}.bi-highlighter::before{content:"\f7f8"}.bi-marker-tip::before{content:"\f802"}.bi-nvme-fill::before{content:"\f803"}.bi-nvme::before{content:"\f80c"}.bi-opencollective::before{content:"\f80d"}.bi-pci-card-network::before{content:"\f8cd"}.bi-pci-card-sound::before{content:"\f8ce"}.bi-radar::before{content:"\f8cf"}.bi-send-arrow-down-fill::before{content:"\f8d0"}.bi-send-arrow-down::before{content:"\f8d1"}.bi-send-arrow-up-fill::before{content:"\f8d2"}.bi-send-arrow-up::before{content:"\f8d3"}.bi-sim-slash-fill::before{content:"\f8d4"}.bi-sim-slash::before{content:"\f8d5"}.bi-sourceforge::before{content:"\f8d6"}.bi-substack::before{content:"\f8d7"}.bi-threads-fill::before{content:"\f8d8"}.bi-threads::before{content:"\f8d9"}.bi-transparency::before{content:"\f8da"}.bi-twitter-x::before{content:"\f8db"}.bi-type-h4::before{content:"\f8dc"}.bi-type-h5::before{content:"\f8dd"}.bi-type-h6::before{content:"\f8de"}.bi-backpack-fill::before{content:"\f8df"}.bi-backpack::before{content:"\f8e0"}.bi-backpack2-fill::before{content:"\f8e1"}.bi-backpack2::before{content:"\f8e2"}.bi-backpack3-fill::before{content:"\f8e3"}.bi-backpack3::before{content:"\f8e4"}.bi-backpack4-fill::before{content:"\f8e5"}.bi-backpack4::before{content:"\f8e6"}.bi-brilliance::before{content:"\f8e7"}.bi-cake-fill::before{content:"\f8e8"}.bi-cake2-fill::before{content:"\f8e9"}.bi-duffle-fill::before{content:"\f8ea"}.bi-duffle::before{content:"\f8eb"}.bi-exposure::before{content:"\f8ec"}.bi-gender-neuter::before{content:"\f8ed"}.bi-highlights::before{content:"\f8ee"}.bi-luggage-fill::before{content:"\f8ef"}.bi-luggage::before{content:"\f8f0"}.bi-mailbox-flag::before{content:"\f8f1"}.bi-mailbox2-flag::before{content:"\f8f2"}.bi-noise-reduction::before{content:"\f8f3"}.bi-passport-fill::before{content:"\f8f4"}.bi-passport::before{content:"\f8f5"}.bi-person-arms-up::before{content:"\f8f6"}.bi-person-raised-hand::before{content:"\f8f7"}.bi-person-standing-dress::before{content:"\f8f8"}.bi-person-standing::before{content:"\f8f9"}.bi-person-walking::before{content:"\f8fa"}.bi-person-wheelchair::before{content:"\f8fb"}.bi-shadows::before{content:"\f8fc"}.bi-suitcase-fill::before{content:"\f8fd"}.bi-suitcase-lg-fill::before{content:"\f8fe"}.bi-suitcase-lg::before{content:"\f8ff"}.bi-suitcase::before{content:"\f900"}.bi-suitcase2-fill::before{content:"\f901"}.bi-suitcase2::before{content:"\f902"}.bi-vignette::before{content:"\f903"}#wpadminbar {
  z-index: 2147483002;
}

.single-v2 {
  color: #1E1E1E;
}
.single-v2 #comments {
  display: none;
}
.single-v2 .site-inner {
  max-width: 100%;
  padding: 80px 0 0;
}
@media (max-width: 768px) {
  .single-v2 .site-inner {
    padding: 40px 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .single-v2 .site-inner {
    padding: 40px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .single-v2 .site-inner {
    padding: 60px 0 0;
  }
}
@media (min-width: 1199px) {
  .single-v2 .site-inner {
    padding: 60px 0 0;
  }
}
.single-v2 .entry-footer {
  display: none;
  padding: 0 64px 0;
}
@media (max-width: 768px) {
  .single-v2 .entry-footer {
    padding: 0 32px 0;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .entry-footer {
    padding: 0 32px 0;
  }
}
.single-v2 h1 {
  color: #FFFFFF;
  font-size: 61px;
  font-weight: 700;
  line-height: 72px;
  margin: 0 0 24px;
  text-align: left;
}
.single-v2 h2 {
  border-left-color: #C81017;
  color: #292D3E;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin: 0 0 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .single-v2 h2 {
    font-size: 40px;
    line-height: 54px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 h2 {
    font-size: 40px;
    line-height: 54px;
  }
}
.single-v2 h3 {
  border-left-color: #2952CC;
  font-size: 35px;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .single-v2 h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
.single-v2 h4 {
  border-left-color: #B7BBCE;
  font-size: 29px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .single-v2 h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
.single-v2 p {
  color: #292D3E;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .single-v2 p {
    margin-left: 10px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 p {
    margin-left: 10px;
  }
}
.single-v2 .wp-block-image {
  display: contents;
}
.single-v2 .aioseo-breadcrumbs {
  color: #8D94B2;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-top: 16px;
}
@media (max-width: 768px) {
  .single-v2 .aioseo-breadcrumbs {
    padding-left: 20px;
    padding-top: 40px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .aioseo-breadcrumbs {
    padding-left: 20px;
    padding-top: 40px;
  }
}
.single-v2 .single-hero-wrap {
  background-color: #F9F2F2;
}
.single-v2 .single-hero-wrap .header-container {
  padding: 8px 0 0;
}
@media (max-width: 768px) {
  .single-v2 .single-hero-wrap .header-container {
    padding: 0;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .single-hero-wrap .header-container {
    padding: 0;
  }
}
.single-v2 .single-hero-wrap .header-container .box-header {
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  height: 300px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .single-v2 .single-hero-wrap .header-container .box-header {
    border-radius: unset;
  }
}
.single-v2 .single-hero-wrap .header-container .box-header::before {
  background: linear-gradient(180deg, rgba(15, 17, 25, 0.2) 0%, #193761 100%);
  border-radius: 8px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .single-v2 .single-hero-wrap .header-container .box-header::before {
    border-radius: unset;
  }
}
.single-v2 .single-hero-wrap .header-container .box-header .post-author {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  left: 24px;
  line-height: 20px;
  position: absolute;
  top: 32px;
  z-index: 2;
}
@media (max-width: 768px) {
  .single-v2 .single-hero-wrap .header-container .box-header .post-author {
    font-size: 12px;
    left: 20px;
    line-height: 16px;
    top: 16px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .single-hero-wrap .header-container .box-header .post-author {
    font-size: 12px;
    left: 20px;
    line-height: 16px;
    top: 16px;
  }
}
.single-v2 .single-hero-wrap .header-container .box-header .post-author a {
  color: #FFF;
}
.single-v2 .single-hero-wrap .header-container .box-header .post-author img {
  border-radius: 8px;
  margin-right: 8px;
}
.single-v2 .single-hero-wrap .header-container .post-title {
  bottom: 16px;
  color: #FFF;
  font-size: 61px;
  font-style: normal;
  font-weight: 700;
  left: 24px;
  line-height: 72px;
  margin: 0;
  max-height: calc(100% - 30px);
  max-width: calc(100% - 30px);
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  white-space: normal;
  z-index: 2;
}
@media (max-width: 768px) {
  .single-v2 .single-hero-wrap .header-container .post-title {
    font-size: 32px;
    left: 20px;
    line-height: 40px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .single-hero-wrap .header-container .post-title {
    font-size: 32px;
    left: 20px;
    line-height: 40px;
  }
}
.single-v2 .certifications {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .single-v2 .certifications {
    min-height: 108px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .certifications {
    min-height: 108px;
  }
}
.single-v2 .certifications .box-container {
  padding-bottom: 40px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .single-v2 .certifications .box-container {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .certifications .box-container {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
.single-v2 .single-post-wrap .entry-content ul li, .single-v2 .single-post-wrap .entry-content ol li {
  line-height: 24px;
  margin-bottom: 6px;
}
.single-v2 .single-post-wrap .entry-content a {
  color: #4286F4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.single-v2 .single-post-wrap .entry-content .wp-block-image img {
  margin-bottom: 24px;
}
.single-v2 .single-post-wrap .entry-content img, .single-v2 .single-post-wrap .entry-content figure {
  border-radius: 8px;
  object-fit: contain !important;
  width: 600px;
}
@media (max-width: 768px) {
  .single-v2 .single-post-wrap .entry-content img, .single-v2 .single-post-wrap .entry-content figure {
    max-width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .single-post-wrap .entry-content img, .single-v2 .single-post-wrap .entry-content figure {
    max-width: 100%;
  }
}
.single-v2 .single-post-wrap .entry-content p img {
  border-radius: 8px;
  margin: 5px 0 !important;
}
@media (max-width: 768px) {
  .single-v2 .single-post-wrap .entry-content iframe {
    max-width: 300px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .single-post-wrap .entry-content iframe {
    max-width: 400px;
  }
}
.single-v2 .cta-banner {
  gap: 80px;
  margin-bottom: 40px;
  margin-top: 40px;
  position: relative;
}
.single-v2 .cta-banner .banner-image {
  height: auto;
  left: 50%;
  position: absolute;
  top: 7%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.single-v2 .cta-banner .banner-content {
  align-items: center;
  background-color: #193761;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  justify-content: center;
  min-height: 216px;
  padding: 48px 40px 40px 40px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.single-v2 .cta-banner .banner-content .banner-title {
  border-left: unset;
  color: #FFF;
  font-size: 29px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
  text-align: center;
}
.single-v2 .cta-banner .banner-content .banner-description {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.single-v2 .cta-banner .banner-content .cta {
  background-color: #F04D30;
  border-radius: 100px;
  border: unset;
  color: #FFF;
  gap: 8px;
  min-height: 40px;
  padding: 8px 24px 8px 24px;
}
.single-v2 .cta-banner .banner-content .cta .cta-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.single-v2 .cta-banner .banner-content .item-list {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin-bottom: 8px;
}
.single-v2 .cta-banner .banner-content .item-list li {
  align-items: flex-start;
  color: #FFF;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 24px;
  margin-bottom: 24px;
  text-align: left;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.single-v2 .cta-banner .banner-content .item-list li img {
  margin-right: 6px;
}
.single-v2 .cta-banner .banner-content .item-list li:last-child {
  margin-bottom: 0;
}
.single-v2 .cta-banner .cta-btn {
  align-items: center;
  background-color: #D32F2F;
  border-radius: 100px;
  border: unset;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 8px 24px;
}
.single-v2 .cta-banner .cta-btn span {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.single-v2 .cta-banner .button-container {
  align-items: center;
  background-color: #DF272D;
  border-radius: 100px;
  color: #FFF;
  display: flex;
  gap: 8px;
  height: 52px;
  justify-content: center;
  padding: 14px 32px;
  width: 257px;
}
.single-v2 .cta-banner .button-container .cta-text {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .single-v2 .cta-banner .banner-content {
    padding: 24px;
  }
  .single-v2 .cta-banner .banner-content .banner-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px;
    margin-top: 5px;
  }
  .single-v2 .cta-banner .banner-content .banner-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 24px;
  }
  .single-v2 .cta-banner .banner-content .item-list {
    display: block;
    list-style-type: none;
    margin-left: unset;
  }
  .single-v2 .cta-banner .banner-content .item-list li {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
    text-align: left;
  }
  .single-v2 .cta-banner .banner-content .item-list li img {
    margin-right: 16px;
  }
  .single-v2 .cta-banner .banner-content .item-list li:last-child {
    margin-bottom: 12px;
  }
  .single-v2 .cta-banner .banner-content .cta-btn {
    display: none;
  }
  .single-v2 .cta-banner .button-container {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .cta-banner .banner-content {
    padding: 24px;
  }
  .single-v2 .cta-banner .banner-content .banner-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px;
    margin-top: 5px;
  }
  .single-v2 .cta-banner .banner-content .banner-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 24px;
  }
  .single-v2 .cta-banner .banner-content .item-list {
    display: block;
    list-style-type: none;
    margin-left: unset;
  }
  .single-v2 .cta-banner .banner-content .item-list li {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
    text-align: left;
  }
  .single-v2 .cta-banner .banner-content .item-list li img {
    margin-right: 16px;
  }
  .single-v2 .cta-banner .banner-content .item-list li:last-child {
    margin-bottom: 12px;
  }
  .single-v2 .cta-banner .banner-content .cta-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .single-v2 .suggested-reading .box-container {
    padding: 0 24px 0;
  }
}
.single-v2 .suggested-reading .card {
  border-radius: 8px;
  border: unset;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.0705882353);
  gap: 0px;
}
.single-v2 .suggested-reading .card .card-link:hover {
  box-shadow: 0px 8px 24px 0px var(--shadow-black);
  color: unset;
  text-decoration: none;
}
.single-v2 .suggested-reading .card .card-img-top {
  height: 260px;
  min-height: 260px;
  object-fit: cover;
}
.single-v2 .suggested-reading .card .card-body {
  min-height: 104px;
  padding: 24px;
}
.single-v2 .suggested-reading .card .card-body .btn.btn-primary {
  background-color: #F04D30;
  border-color: #F04D30;
  border-radius: 100px;
  color: #FFF;
  gap: 8px;
  padding: 8px 16px 8px 16px;
}
.single-v2 .suggested-reading .card .card-body .card-title {
  border-left-style: unset;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .suggested-reading .card .card-body {
    min-height: 180px;
  }
}
.single-v2 .suggested-reading h2 {
  border: unset;
  color: #151515;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}
.single-v2 .faq-wrapper {
  background-color: var(--blue-light);
  margin: 0 16px;
}
.single-v2 .faq-wrapper .row:first-child {
  margin: unset !important;
}
.single-v2 .faq-wrapper .box-container {
  padding: 56px 0;
  position: relative;
}
@media (max-width: 768px) {
  .single-v2 .faq-wrapper .box-container {
    padding: 24px 20px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .faq-wrapper .box-container {
    padding: 24px 20px;
  }
}
.single-v2 .faq-wrapper .faq-image {
  border-radius: 8px;
  max-height: 730px;
  object-fit: cover;
  width: 100%;
}
.single-v2 .faq-wrapper .faq-title {
  border: unset;
  color: #1A1A1A;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 32px;
  text-align: left;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
@media (max-width: 768px) {
  .single-v2 .faq-wrapper .faq-title {
    color: #193761;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-underline-position: from-font;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .faq-wrapper .faq-title {
    color: #193761;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-underline-position: from-font;
  }
}
.single-v2 .faq-wrapper #faqs-accordion {
  margin-top: 32px;
}
.single-v2 .faq-wrapper #faqs-accordion details > summary {
  align-items: center;
  color: #292D3E;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: flex-start;
  left: 16px;
  line-height: 24px;
  min-height: 64px;
  padding-left: 16px;
  padding-right: 20%;
  position: absolute;
  position: relative;
  text-align: left;
  width: 100%;
}
.single-v2 .faq-wrapper #faqs-accordion details:not(:first-of-type) > summary {
  border-top: solid 0.5px;
}
.single-v2 .faq-wrapper #faqs-accordion summary::marker {
  content: "";
}
.single-v2 .faq-wrapper #faqs-accordion summary::-webkit-details-marker {
  display: none;
}
.single-v2 .faq-wrapper #faqs-accordion details[open] {
  background-color: #193761;
  color: #FFF;
  position: relative;
}
.single-v2 .faq-wrapper #faqs-accordion details[open] > summary {
  color: #FFF;
}
.single-v2 .faq-wrapper #faqs-accordion details[open]:last-of-type > .summary-body {
  overflow: hidden;
  position: absolute;
  transition: max-height 0.3s ease;
}
@media (max-width: 768px) {
  .single-v2 .faq-wrapper #faqs-accordion details[open]:last-of-type > .summary-body {
    position: relative;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .faq-wrapper #faqs-accordion details[open]:last-of-type > .summary-body {
    position: relative;
  }
}
.single-v2 .faq-wrapper #faqs-accordion details[open] > .summary-body {
  background-color: var(--blue-light);
  color: #474D66;
  padding: 16px;
}
.single-v2 .faq-wrapper #faqs-accordion summary::after {
  background: url("/wp-content/themes/certapet-v2/public/images/open.svg") no-repeat center;
  content: "";
  display: inline-block;
  height: 25px;
  position: absolute;
  right: 8%;
  width: 25px;
}
.single-v2 .faq-wrapper #faqs-accordion details[open] > summary::after {
  background-image: url("/wp-content/themes/certapet-v2/public/images/FAQ-white-icon.svg");
  content: "";
}
.single-v2 .faq-wrapper #faqs-accordion ul li:nth-last-child(-n+3) {
  margin-left: 15px;
}
.single-v2 .faq-wrapper #faqs-accordion p, .single-v2 .faq-wrapper #faqs-accordion li {
  color: #474D66;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  text-align: left;
}
.single-v2 .faq-wrapper #faqs-accordion h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.single-v2 .faq-wrapper .more-faqs-btn {
  background-color: #F3F8FF;
  border-radius: 100px;
  border: solid 1px #193761;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  height: 40px;
  justify-content: center;
  line-height: 24px;
  margin: 24px auto 0;
  padding: 8px 24px 8px 24px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  width: 342px;
}
@media (max-width: 768px) {
  .single-v2 .faq-wrapper {
    margin: 0;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .faq-wrapper {
    margin: 0;
  }
}
.single-v2 .excerpt-message {
  color: #1A1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.single-v2 .toc-container {
  background-color: #193761;
  border-radius: 8px;
  cursor: pointer;
  gap: 0px;
  height: 56px;
  margin-bottom: 20px;
  max-width: 300px;
  opacity: 1;
  padding: 16px 24px;
  position: sticky;
  top: 130px;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
@media (max-width: 768px) {
  .single-v2 .toc-container {
    margin: 0 20px 24px 0;
    max-width: 260px;
    top: 85px;
    z-index: 2147483000;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .toc-container {
    margin: 0 20px 24px 0;
    max-width: 260px;
    top: 85px;
    z-index: 2147483000;
  }
}
.single-v2 .toc-container .toc-header {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.single-v2 .toc-container .toc-content {
  background-color: #193761;
  display: none;
  height: 100%;
  left: 0;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  position: fixed;
  top: 50px;
  width: 480px;
}
@media (max-width: 768px) {
  .single-v2 .toc-container .toc-content {
    max-height: calc(100vh - 65px);
    top: 65px;
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .toc-container .toc-content {
    max-height: calc(100vh - 67px);
    top: 67px;
    width: 100%;
  }
}
.single-v2 .toc-container .toc-content ul {
  padding-bottom: 2px;
  position: relative;
  top: 80px;
  z-index: 9999999;
}
@media (max-width: 768px) {
  .single-v2 .toc-container .toc-content ul {
    top: 50px;
    z-index: 9999999;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .toc-container .toc-content ul {
    top: 70px;
    z-index: 9999999;
  }
}
.single-v2 .toc-container .toc-content ul li {
  color: #FFF;
  list-style: decimal;
}
.single-v2 .toc-container .toc-content .toc-title {
  border-left-color: unset;
  border-left-style: unset;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  top: 50px;
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .toc-container .toc-content .toc-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    top: 60px;
  }
}
@media (max-width: 768px) {
  .single-v2 .toc-container .toc-content .toc-title {
    top: 20px;
  }
}
.single-v2 .toc-container .toc-content li {
  border: unset;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 24px;
}
.single-v2 .toc-container .toc-content li a {
  color: #FFF;
  text-decoration: underline;
}
.single-v2 .toc-container .toc-content.show {
  display: block;
}
.single-v2 .toc-container .close-toc {
  background: none;
  border: none;
  cursor: pointer;
  float: right;
  position: relative;
  top: 30px;
  width: 50px;
}
@media (max-width: 768px) {
  .single-v2 .toc-container .close-toc {
    top: 0;
  }
}
.single-v2 .toc-container .close-toc::after {
  background-image: url("/wp-content/themes/certapet-v2/public/images/toc-close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}
.single-v2 .sidebar {
  float: right;
  max-width: 460px;
}
.single-v2 .sidebar h2 {
  border-left: unset;
  font-size: 20px;
  font-weight: 700;
  line-height: 23.48px;
  position: relative;
  text-align: left;
}
.single-v2 .sidebar h2::after {
  background-color: rgba(255, 0, 68, 0.8666666667);
  border-radius: 4px;
  bottom: -5px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  margin-left: 6px;
  position: absolute;
  width: 15%;
}
.single-v2 .sidebar .card {
  border: unset;
}
.single-v2 .sidebar .card .card-title {
  border-left-style: unset;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.78px;
  text-align: left;
}
.single-v2 .sidebar .card img {
  clip-path: inset(0 round 4px);
  max-width: 128px;
  min-height: unset !important;
  object-fit: cover !important;
  width: auto !important;
}
@media (max-width: 768px) {
  .single-v2 .sidebar {
    display: none;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .sidebar {
    display: none;
  }
}
.single-v2 .aioseo-author-bio-compact {
  background: #F3F8FF;
  border-radius: 8px;
  border: unset;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  gap: 24px;
  height: 206px;
  max-width: 896px;
  padding: 32px 0px 0px 0px;
}
@media (max-width: 768px) {
  .single-v2 .aioseo-author-bio-compact {
    height: unset;
    margin: 0 0 32px;
    max-width: unset;
    padding: unset;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .aioseo-author-bio-compact {
    height: unset;
    margin: 0 0 32px;
    max-width: unset;
    padding: unset;
  }
}
.single-v2 .aioseo-author-bio-compact-left {
  margin: 4px 0 36px 24px;
}
@media (max-width: 768px) {
  .single-v2 .aioseo-author-bio-compact-left {
    margin: 32px 0 0;
  }
}
.single-v2 .aioseo-author-bio-compact-left .aioseo-author-bio-compact-image {
  border-radius: 120px !important;
  height: 120px !important;
  width: 120px !important;
}
@media (max-width: 768px) {
  .single-v2 .aioseo-author-bio-compact-left .aioseo-author-bio-compact-image {
    margin: 0 auto !important;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .aioseo-author-bio-compact-left .aioseo-author-bio-compact-image {
    margin: 0 auto !important;
  }
}
@media (max-width: 768px) {
  .single-v2 .aioseo-author-bio-compact-right {
    margin: 0 24px 32px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .aioseo-author-bio-compact-right {
    margin: 24px 24px 0 0;
  }
}
.single-v2 .aioseo-author-bio-compact-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
@media (max-width: 768px) {
  .single-v2 .aioseo-author-bio-compact-main {
    color: #1A1A1A;
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
  }
}
.single-v2 .aioseo-author-bio-compact-header {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
}
.single-v2 .aioseo-author-bio-compact-header .author-name {
  display: block;
}
@media (max-width: 768px) {
  .single-v2 .aioseo-author-bio-compact-header .author-name {
    color: #1A1A1A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
  }
}
.single-v2 .aioseo-author-bio-compact-header .author-job-title {
  color: #1A1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 768px) {
  .single-v2 .aioseo-author-bio-compact-header .author-job-title {
    font-size: 14px;
    line-height: 22px;
    margin-left: 3px;
    margin-top: 0;
    padding-left: 3px;
  }
}
@media (min-width: 600px) and (max-width: 1366px) {
  .single-v2 .aioseo-author-bio-compact-header .author-job-title {
    margin-left: 5px;
    margin-top: 0;
    padding-left: 5px;
  }
}
.single-v2 .author-socials img {
  max-height: 20px;
  max-width: 20px;
  width: auto;
}
/*# sourceMappingURL=single-post-v2.css.map */
.tcm-voting-loader .tcm-votes-count{border:2px solid #bfbfbf;border-top:2px solid;border-radius:50%;width:12px;height:12px;animation:tcm-voting-spin 2s linear infinite;position:relative;display:inline-block;top:2px;}@keyframes tcm-voting-spin{0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}.clear-this:after{content:"";display:table;clear:both;}.tcm-truncate{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.tcm-dot-loader{display:none;width:75px;margin:0 auto;text-align:center;}.tcm-dot-loader .inner1,.tcm-dot-loader .inner2,.tcm-dot-loader .inner3{display:inline-block;margin:1.875px;width:8px;height:8px;border:1px solid #d3d3d3;border-radius:15px;background-color:#d3d3d3;-webkit-transform-origin:50%;-webkit-animation-duration:.6s;-webkit-animation-name:rotate;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;}.tcm-dot-loader .inner2{-webkit-animation-delay:.15s;}.tcm-dot-loader .inner3{-webkit-animation-delay:.3s;}.tcm-dot-loader.done .inner1,.tcm-dot-loader.done .inner2,.tcm-dot-loader.done .inner3{-webkit-animation-iteration-count:0;}#tcm-moderate-front{position:absolute;top:30px;right:30px;}#tcm-moderate-front:hover .tcm-dropdown-moderate{opacity:1;visibility:visible;}#tcm-moderate-front .tcm-moderate-dots{position:relative;z-index:5;padding:0 8px;margin-right:-8px;}#tcm-moderate-front .tcm-moderate-dots:not(:hover) .moderate-dot{background-color:gray !important;}#tcm-moderate-front .tcm-moderate-dots .moderate-dot{width:5px;height:5px;display:block;border-radius:50%;margin:0 0 3px;}#tcm-moderate-front .tcm-moderate-dots:hover{cursor:pointer;}#tcm-moderate-front .tcm-dropdown-moderate{opacity:0;visibility:hidden;transition:.1s;transition-delay:.1s;position:absolute;top:30px;right:0;z-index:10;background-color:#fff;width:155px;box-shadow:0 3px 7px rgba(0,0,0,.15);font-size:13px;color:#6d6d6d;font-weight:500;}#tcm-moderate-front .tcm-dropdown-moderate .tcm-dropdown-moderate-element{padding:5px 15px;font-weight:500;}#tcm-moderate-front .tcm-dropdown-moderate .tcm-dropdown-moderate-element:first-child{margin-top:13px;}#tcm-moderate-front .tcm-dropdown-moderate .tcm-dropdown-moderate-element:last-child{margin-bottom:13px;}#tcm-moderate-front .tcm-dropdown-moderate .tcm-dropdown-moderate-element:hover{background-color:#e5e5e5;cursor:pointer;}#tcm-moderate-front .tcm-dropdown-moderate #tcm-admin-moderation-wrapper .tcm-moderation-mid .tcm-bulk #tcm-bulk-options .tcm-dropdown-content .tcm-dropdown-element:first-child{margin-top:13px;}.tcm-lazy-comments .tcm-dot-loader{width:45px;}.tcm-lazy-comments .tcm-dot-loader .inner1,.tcm-lazy-comments .tcm-dot-loader .inner2,.tcm-lazy-comments .tcm-dot-loader .inner3{width:5px;height:5px;background-color:#6e767d;border:1px solid #6e767d;margin:0 -.8px 2px;}@-webkit-keyframes rotate{0%{-webkit-transform:translateY(0%);}30%{-webkit-transform:translateY(-3.75px);}50%{-webkit-transform:translateY(0%);}70%{-webkit-transform:translateY(3.75px);}}input#redirect_url:focus,input#redirect_url2:focus,.select2-search__field:focus{border-bottom:1px solid #03a88a !important;box-shadow:0 1px 0 0 #03a88a !important;}.tcm-comments-list .tcm-posts{border:1px solid;border-radius:5px;text-align:center;padding:20px 0;line-height:1.4;margin:0 0 25px 0;}@media (max-width: 767px){.tcm-comments-list .tcm-posts{padding:20px 20%;}}@media (min-width: 541px)and (max-width: 767px){.tcm-comments-list .tcm-posts{padding:20px;}}.tcm-comments-list .tcm-posts .tcm-posts-list.no-featured-image{margin:40px 20px 0;display:flex;flex-flow:wrap;}@media (min-width: 541px)and (max-width: 767px){.tcm-comments-list .tcm-posts .tcm-posts-list.no-featured-image .tcm-post{float:left;width:47%;margin:1.5%;}}@media (min-width: 768px){.tcm-comments-list .tcm-posts .tcm-posts-list.no-featured-image .tcm-post{float:left;width:47%;margin:0 1.5%;}}.tcm-comments-list .tcm-posts .tcm-posts-list.no-featured-image .tcm-post h3{font-size:14px !important;font-weight:500;color:#666;line-height:normal;text-align:left;margin:0 0 25px !important;padding-left:25px;position:relative;}.tcm-comments-list .tcm-posts .tcm-posts-list.no-featured-image .tcm-post h3 a{color:inherit;transition:all .3s;}.tcm-comments-list .tcm-posts .tcm-posts-list.no-featured-image .tcm-post h3 a svg.related-posts-arrow{width:17px;height:17px;position:absolute;left:0;top:0;}.tcm-comments-list .tcm-posts .tcm-posts-list.no-featured-image .tcm-post h3 a:hover{border-bottom:1px solid;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image){margin:30px 0 20px;display:flex;justify-content:center;}@media (max-width: 540px){.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image){display:block;}}@media (min-width: 541px)and (max-width: 767px){.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image){justify-content:left;flex-wrap:wrap;}}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post{height:inherit;}@media (max-width: 540px){.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post{width:100%;margin-bottom:20px;padding-bottom:5px;border-bottom:1px dashed rgba(0,0,0,.15);}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post:last-child{border-bottom:0;margin-bottom:0;padding-bottom:0;}}@media (min-width: 541px)and (max-width: 767px){.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post{width:calc(47% - 1px);padding:1.5% 1.5% 18px;margin-bottom:20px;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post:nth-child(odd){border-right:1px dashed rgba(0,0,0,.15);}}@media (min-width: 768px){.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post{border-right:1px dashed rgba(0,0,0,.15);width:21.25%;padding:1.5%;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post:last-child{border-right:0;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post:first-child{padding-left:3%;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post:last-child{padding-right:3%;}}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post>div>a:not(.tcm-no-featured-image){padding-bottom:50%;border-radius:5px;background-position:center;background-size:cover;display:block;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post h3{font-size:14px !important;margin:18px 0 0;font-weight:normal;color:#666;transition:all .3s;line-height:normal;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post h3 a{color:inherit;transition:all .3s;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post h3 a svg.related-posts-arrow{display:none;}.tcm-comments-list .tcm-posts .tcm-posts-list:not(.no-featured-image) .tcm-post:hover h3{color:#000;}.tcm-comments-list .tcm-comment-item:not(.tcm-main-parent) .tcm-conversion-container{margin-right:30px;}.tcm-comments-list .tcm-conversion-container{padding:1px 1px 0;}.tcm-comments-list .tcm-conversion-container .tcm-thank-you-submited,.tcm-comments-list .tcm-share-post{border:1px solid;border-radius:5px;text-align:center;padding:20px;line-height:1.8;margin:0 0 25px 0;}#thrive-comments .tcm-comments-list p.tcm-moderation{display:none;line-height:25px;margin:0 0 10px;word-wrap:break-word;}@media (min-width: 768px){#thrive-comments .tcm-comments-list p.tcm-moderation{line-height:inherit;margin:2px 0 0;}}.tcm-comments-list .tcm-comment-awaiting-moderation .tcm-comment-header,.tcm-comments-list .tcm-comment-awaiting-moderation .tcm-comment-text,.tcm-comments-list .tcm-comment-awaiting-moderation .tcm-toggle-button,.tcm-comments-list .tcm-comment-awaiting-moderation .tcm-reply-container,.tcm-comments-list .tcm-comment-awaiting-moderation .tcm-dropdown-content a{opacity:.5;}#thrive-comments .tcm-comments-list .tcm-comment-awaiting-moderation p.tcm-moderation{display:inline-block;}#thrive-comments .tcm-voting-container{display:inline-block;margin-right:20px;font-size:15px;color:#6e767d;}#thrive-comments .tcm-voting-container .tcm-voting-input{background-color:rgba(0,0,0,0);display:inline-block;border:1px solid rgba(0,0,0,.25) !important;padding:0 15px;border-radius:20px;height:35px;line-height:35px;color:rgba(0,0,0,.5) !important;font-weight:normal;box-sizing:border-box;cursor:pointer;margin-left:5px;font-size:15px;transition:all .3s;}#thrive-comments .tcm-voting-container .tcm-voting-input:active{opacity:.6;color:#fff;}#thrive-comments .tcm-voting-container .tcm-voting-input:active svg{fill:#fff !important;}#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-upvote:not(.tcm-voting-loader).active,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-upvote:not(.tcm-voting-loader):hover,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-upvote:not(.tcm-voting-loader):active{color:#fff !important;background-color:#70ba2a !important;border-color:#70ba2a !important;}#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-upvote:not(.tcm-voting-loader).active svg,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-upvote:not(.tcm-voting-loader):hover svg,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-upvote:not(.tcm-voting-loader):active svg{fill:#fff;}#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-downvote:not(.tcm-voting-loader).active,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-downvote:not(.tcm-voting-loader):hover,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-downvote:not(.tcm-voting-loader):active{color:#fff !important;background-color:#ef5350 !important;border-color:#ef5350 !important;}#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-downvote:not(.tcm-voting-loader).active svg,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-downvote:not(.tcm-voting-loader):hover svg,#thrive-comments .tcm-voting-container .tcm-voting-input.tcm-downvote:not(.tcm-voting-loader):active svg{fill:#fff;}#thrive-comments .tcm-voting-container .tcm-voting-input .tcm-thumb_up,#thrive-comments .tcm-voting-container .tcm-voting-input .tcm-thumb_down{display:inline-block;}#thrive-comments .tcm-voting-container .tcm-voting-input .tcm-thumb_up svg,#thrive-comments .tcm-voting-container .tcm-voting-input .tcm-thumb_down svg{position:relative;width:16px;fill:#6e767d;top:4px;}.tcm-small #thrive-comments button.tcm-right{bottom:100%;position:relative;top:0;right:0;}#comments.tcm-small #thrive-comments .tcm-left .tcm-voting-input{margin-bottom:10px;}#thrive-comments{min-height:20px;width:100%;clear:both;font-family:"Roboto Regular";color:#393939;margin:80px 0;}#thrive-comments .thrive-comments-content{display:none;}#thrive-comments .thrive-comments-content svg{width:20px;height:20px;}#thrive-comments .share-buttons{text-align:center;padding:15px 0 0;}#thrive-comments .share-buttons div{width:32px;height:32px;margin:0 5px;display:inline-block;vertical-align:middle;cursor:pointer;}#thrive-comments .share-buttons div.fb-button{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-fb.png") top left no-repeat;}#thrive-comments .share-buttons div.gm-button{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-gm.png") top left no-repeat;}#thrive-comments .share-buttons div.gm-button.nitro-lazy{background-image:none !important;}#thrive-comments .share-buttons div.in-button{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-in.png") top left no-repeat;}#thrive-comments .share-buttons div.in-button.nitro-lazy{background-image:none !important;}#thrive-comments .share-buttons div.fb-button.nitro-lazy{background-image:none !important;}#thrive-comments .share-buttons div.tw-button{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-tw.png") top left no-repeat;}#thrive-comments .share-buttons div.tw-button.nitro-lazy{background-image:none !important;}#thrive-comments .share-buttons div.pt-button{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-pt.png") top left no-repeat;}#thrive-comments .share-buttons div.pt-button.nitro-lazy{background-image:none !important;}#thrive-comments .share-buttons div.xi-button{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-xi.png") top left no-repeat;}#thrive-comments .share-buttons div.xi-button.nitro-lazy{background-image:none !important;}#thrive-comments p{text-align:left;font-size:18px;margin-bottom:20px;color:#707070;font-family:inherit;line-height:1.7em;}#thrive-comments strong,#thrive-comments span,#thrive-comments a{font-family:inherit;}#thrive-comments textarea,#thrive-comments input{background-color:#f6f7f8;border:1px solid #c8cacb;box-shadow:inset 0 0 3px #d5d7d8;border-radius:5px;transition:all .3s;font-family:inherit;outline:none;}#thrive-comments textarea:focus,#thrive-comments input:focus{background-color:#f6f7f8;border:1px solid #68cbf8;box-shadow:inset 0 0 3px #95d8f6;}#thrive-comments textarea{min-height:105px;width:100%;box-sizing:border-box;font-size:20px;color:#393939;padding:18px 20px 20px;transition:height 0s;resize:vertical;}#thrive-comments textarea::-webkit-input-placeholder{color:#393939;opacity:1;font-family:inherit;}#thrive-comments textarea::-moz-placeholder{color:#393939;opacity:1;font-family:inherit;}#thrive-comments textarea:-ms-input-placeholder{color:#393939;opacity:1;font-family:inherit;}#thrive-comments textarea:-moz-placeholder{color:#393939;opacity:1;font-family:inherit;}#thrive-comments input{height:45px;padding:0 20px;font-size:17px;width:100%;box-sizing:border-box;}#thrive-comments input::-webkit-input-placeholder{color:#6e6e6f;opacity:1;}#thrive-comments input::-moz-placeholder{color:#6e6e6f;opacity:1;}#thrive-comments input:-ms-input-placeholder{color:#6e6e6f;opacity:1;}#thrive-comments input:-moz-placeholder{color:#6e6e6f;opacity:1;}#thrive-comments .tcm_receive_notif_container,#thrive-comments .tcm_remember_me{cursor:pointer;font-style:italic;font-size:12px;color:rgba(0,0,0,.3);margin:0;display:block;position:relative;padding-left:25px;line-height:20px;clear:both;}#thrive-comments .tcm_receive_notif_container input,#thrive-comments .tcm_remember_me input{display:none;}#thrive-comments .tcm_receive_notif_container .checkmark,#thrive-comments .tcm_remember_me .checkmark{position:absolute;top:-1px;left:0;height:18px;width:18px;border-radius:3px;background-color:#ccc;opacity:.7;transition:all .3s;}#thrive-comments .tcm_receive_notif_container:hover input~.checkmark,#thrive-comments .tcm_remember_me:hover input~.checkmark{background-color:#ccc;opacity:1;}#thrive-comments .tcm_receive_notif_container input:checked~.checkmark,#thrive-comments .tcm_remember_me input:checked~.checkmark{background-color:#2196f3;opacity:1;}#thrive-comments .tcm_receive_notif_container .checkmark:after,#thrive-comments .tcm_remember_me .checkmark:after{content:"";position:absolute;display:none;}#thrive-comments .tcm_receive_notif_container input:checked~.checkmark:after,#thrive-comments .tcm_remember_me input:checked~.checkmark:after{display:block;}#thrive-comments .tcm_receive_notif_container .checkmark:after,#thrive-comments .tcm_remember_me .checkmark:after{left:6px;top:3px;width:4px;height:8px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg);}#thrive-comments .tcm_receive_notif_container.tcm_last_label,#thrive-comments .tcm_remember_me.tcm_last_label{margin-bottom:15px;}#thrive-comments .tcm_receive_notif_container.tcm_last_label .tcm-consent-text.tcm-not-selected,#thrive-comments .tcm_remember_me.tcm_last_label .tcm-consent-text.tcm-not-selected{border-bottom:1px solid #ef5350;padding-bottom:2px;}#thrive-comments .tcm-btn-div+.tcm_receive_notif_container{margin-top:20px;margin-bottom:12px;clear:both;float:left;}#thrive-comments button{background-color:#fff;cursor:pointer;outline:none;font-size:15px;font-weight:500;line-height:35px;height:35px;padding:0 20px 0 35px;border:1px solid;border-radius:50px;text-transform:none;box-shadow:none;transition:all .3s;max-width:200px;font-family:inherit;}#thrive-comments button:hover,#thrive-comments button:focus{background-image:none;box-shadow:none;color:#fff;text-shadow:none;outline:none;}#thrive-comments button:hover.nitro-lazy,#thrive-comments button:focus.nitro-lazy{background-image:none !important;}#thrive-comments button:active{outline:none;opacity:.6;color:#fff;}#thrive-comments button:active svg{fill:#fff !important;}#thrive-comments button.tcm-transparent{background-color:rgba(0,0,0,0);}#thrive-comments button#tcm-submit-comment{padding:0 20px;max-width:100%;display:inline-block;}#thrive-comments button.tcm-show-login{background:none !important;border:none;border-radius:0;border-bottom:2px solid rgba(3,169,244,.5);height:auto;line-height:25px;padding:0;}@media (min-width: 768px){#thrive-comments button.tcm-show-login{display:inline-block;}}@media (min-width: 768px){#thrive-comments button.tcm-show-login:not(.tcm-save-btn-center){margin-top:76px;}}#thrive-comments button.tcm-right{background-color:rgba(0,0,0,0);position:relative;max-width:250px;}@media (max-width: 540px){#thrive-comments button.tcm-right{max-width:100%;}}@media (min-width: 768px){#thrive-comments button.tcm-right{bottom:100%;position:absolute;top:-35px;right:0;}}#thrive-comments button.tcm-right .reply-icon-container svg{position:absolute;left:12px;top:8px;}#thrive-comments button.tcm-right .preview-arrow svg{position:absolute;left:12px;top:8px;width:20px;height:20px;}#thrive-comments button.tcm-right:after{content:"";top:0;bottom:0;left:10px;position:absolute;width:19px;}#thrive-comments button.tcm-right:hover svg{fill:#fff !important;}#thrive-comments button.tcm-right:hover:after{background-position:left center;}#thrive-comments .tcm-comments-create>div{padding-bottom:60px;}#thrive-comments .tcm-closed-comments{margin:35px 0;border-radius:3px;background-color:rgba(0,0,0,.025);padding:20px;}#thrive-comments .tcm-closed-comments p{color:#6e767d;font-size:18px;margin:0;}#thrive-comments .tcm-error-message{display:none;color:#ef5350;text-align:left;font-style:normal;}#thrive-comments .tcm-invalid{border-color:#ef5350;background-color:#f6f7f8;}#thrive-comments .tcm-relative{position:relative;}#thrive-comments .tcm-reply-container{position:relative;min-height:1px;padding:1px 0;}#thrive-comments .tcm-left{display:inline-block;}@media (max-width: 767px){#thrive-comments .tcm-left .tcm-voting-input{margin-bottom:10px;}#thrive-comments .tcm-left .tcm-share-dropdown{display:none;}}#thrive-comments .tcm-comments-filters{font-size:20px;color:#393939;}#thrive-comments .tcm-comments-filters:after{content:"";display:table;clear:both;}#thrive-comments .tcm-comments-filters label{display:inline-block;font-size:20px;color:#848b91;font-weight:400;}#thrive-comments .tcm-comments-filters select{display:inline-block;font-size:19px;width:106px;border:none;outline:none;height:auto;font-weight:600;}#thrive-comments .tcm-comments-create .tcm-error-heading,#thrive-comments .tcm-create-comment-fields .tcm-error-heading,#thrive-comments .tcm-lazy-comments .tcm-error-heading{display:none;}#thrive-comments .tcm-comments-create .tcm-create-post-container,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container,#thrive-comments .tcm-lazy-comments .tcm-create-post-container{text-align:center;}@media (min-width: 768px){#thrive-comments .tcm-comments-create .tcm-create-post-container,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container,#thrive-comments .tcm-lazy-comments .tcm-create-post-container{margin-top:30px;display:flex;}}#thrive-comments .tcm-comments-create .tcm-create-post-container .left,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container .left,#thrive-comments .tcm-lazy-comments .tcm-create-post-container .left{flex-grow:0;}@media (max-width: 767px){#thrive-comments .tcm-comments-create .tcm-create-post-container .left,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container .left,#thrive-comments .tcm-lazy-comments .tcm-create-post-container .left{float:none !important;flex:none;}}#thrive-comments .tcm-comments-create .tcm-create-post-container .left .tcm-client-avatar,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container .left .tcm-client-avatar,#thrive-comments .tcm-lazy-comments .tcm-create-post-container .left .tcm-client-avatar{background-size:cover;background-position:center;position:relative;height:65px;width:65px;margin-right:25px;border-radius:50px;}@media (max-width: 767px){#thrive-comments .tcm-comments-create .tcm-create-post-container .left .tcm-client-avatar,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container .left .tcm-client-avatar,#thrive-comments .tcm-lazy-comments .tcm-create-post-container .left .tcm-client-avatar{display:inline-block;margin:30px 0 30px;}}#thrive-comments .tcm-comments-create .tcm-create-post-container .right,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container .right,#thrive-comments .tcm-lazy-comments .tcm-create-post-container .right{flex-grow:1;transition:all 3s;}@media (max-width: 767px){#thrive-comments .tcm-comments-create .tcm-create-post-container .right,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container .right,#thrive-comments .tcm-lazy-comments .tcm-create-post-container .right{float:none !important;flex:none;}}#thrive-comments .tcm-comment-additional-fields{margin-top:30px;text-align:left;}@media (min-width: 768px){#thrive-comments .tcm-comment-additional-fields{margin-bottom:0;align-items:center;display:none;}#thrive-comments .tcm-comment-additional-fields .tcm-btn-div{text-align:right;}#thrive-comments .tcm-comment-additional-fields .tcm-btn-div,#thrive-comments .tcm-comment-additional-fields .tcm-comment-as{float:left;width:50%;}}@media (max-width: 767px){#thrive-comments .tcm-comment-additional-fields{display:block !important;}#thrive-comments .tcm-comment-additional-fields .tcm-btn-div{margin-top:30px;}#thrive-comments .tcm-comment-additional-fields .tcm-btn-div,#thrive-comments .tcm-comment-additional-fields .tcm-comment-as{display:block;text-align:center;}}#thrive-comments .tcm-comment-additional-fields .inner .tcm-guest input{margin:0 0 20px;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts{flex:1 48%;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts a{z-index:10;position:relative;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts:after{content:"";display:table;clear:both;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo{width:35px;height:35px;display:inline-block;margin:0 3px;position:relative;outline:none;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo:focus{opacity:.7;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo .tcm-share-info{display:none;position:absolute;top:45px;left:-3px;font-size:13px;color:#596269;background:#ddd;width:175px;text-align:center;padding:0 12px;border:5px solid #ddd;border-radius:4px;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo .tcm-share-info:after,#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo .tcm-share-info:before{content:" ";position:absolute;bottom:100%;left:10%;height:0;width:0;border:solid rgba(0,0,0,0);border-color:rgba(221,221,221,0);border-bottom-color:#ddd;pointer-events:none;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo .tcm-share-info:after{border-width:5px;margin-left:-5px;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo .tcm-share-info:before{border-width:12px;margin-left:-12px;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-fb-logo{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-fb-icon.png");}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-fb-logo.nitro-lazy{background-image:none !important;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-tw-logo{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-tw-icon.png");}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-tw-logo.nitro-lazy{background-image:none !important;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-gp-logo{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-gp-icon.png");}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-gp-logo.nitro-lazy{background-image:none !important;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-wp-logo{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-wp-icon.png");}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-wp-logo.nitro-lazy{background-image:none !important;}#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-wp-logo:hover span,#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-gp-logo:hover span,#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-fb-logo:hover span,#thrive-comments .tcm-comment-additional-fields .tcm-social-accounts .tcm-social-share-logo#tcm-tw-logo:hover span{display:block;}#thrive-comments .tcm-comment-additional-fields .tcm-separator{text-align:center;}@media (min-width: 768px){#thrive-comments .tcm-comment-additional-fields .tcm-separator{width:20%;float:left;margin:82px 0 0;}}#thrive-comments .tcm-comment-additional-fields .tcm-separator span{font-size:18px;color:#707070;vertical-align:middle;position:relative;}@media (max-width: 767px){#thrive-comments .tcm-comment-additional-fields .tcm-separator span{display:inline-block;margin:25px 0;}}@media (max-width: 767px){#thrive-comments .tcm-comment-additional-fields .tcm-separator span:before,#thrive-comments .tcm-comment-additional-fields .tcm-separator span:after{content:"";height:1px;display:block;width:60px;background-color:#e1e1e1;position:absolute;top:calc(50% - .5px);}#thrive-comments .tcm-comment-additional-fields .tcm-separator span:before{left:-70px;}#thrive-comments .tcm-comment-additional-fields .tcm-separator span:after{left:30px;}}@media (min-width: 768px){#thrive-comments .tcm-comment-additional-fields .tcm-separator span:before,#thrive-comments .tcm-comment-additional-fields .tcm-separator span:after{content:"";height:60px;display:block;width:1px;background-color:#e1e1e1;position:absolute;left:calc(50% - .5px);}#thrive-comments .tcm-comment-additional-fields .tcm-separator span:before{top:-70px;}#thrive-comments .tcm-comment-additional-fields .tcm-separator span:after{top:30px;}}@media (min-width: 768px){#thrive-comments .tcm-comment-additional-fields .tcm-guest{float:left;width:55%;}}@media (min-width: 768px){#thrive-comments .tcm-comment-additional-fields .tcm-user-details{float:left;width:25%;text-align:center;}#thrive-comments .tcm-comment-additional-fields .tcm-user-details p{text-align:center;}#thrive-comments .tcm-comment-additional-fields .tcm-user-details button{display:inline-block !important;}}#thrive-comments .tcm-comments-list .tcm-comment-item{background-color:#fff;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment{padding:30px 30px 0;margin-bottom:20px;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment .deleted-header{opacity:.5;display:flex;align-items:center;margin-bottom:25px;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment .deleted-header .deleted-header-text strong{display:block;margin-bottom:8px;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment .deleted-header .deleted-header-text span{font-size:15px;font-weight:500;color:#6e767d;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment .undo-action{text-decoration:underline;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment .moderation-img{margin-right:25px;background-position:center;background-size:cover;width:65px;height:65px;border-radius:50%;display:inline-block;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment .deleted-text{opacity:.5;}#thrive-comments .tcm-comments-list .tcm-comment-item .deleted-state .tcm-deleted-comment .deleted-text p{margin:0;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class{position:relative;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class .tcm-featured svg.author-icon-svg{display:none !important;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class:before{content:"";position:absolute;height:45px;width:40px;z-index:5;left:-13px;top:-9px;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/featured-icon.png") no-repeat center/30px auto !important;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class.tcm-has-children>div:first-child.level-0{margin-bottom:20px !important;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class>.tcm-featured{background-color:#f9f9f9;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class>.tcm-featured .tcm-comment-header .tcm-author-badges span.tcm-badge:not(.svg-badge){border-color:#f9f9f9;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class>.tcm-featured .tcm-comment-header .tcm-author-badges span.tcm-badge:not(.svg-badge):hover{border-color:#e7e8e8;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-post-author{position:relative;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-post-author>div.level-0 svg.author-icon-svg{top:-9px;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-post-author svg.author-icon-svg{display:block;content:"";position:absolute;height:45px;width:30px;left:-8px;top:-9px;}#thrive-comments .tcm-comments-list .tcm-comment-item:not(.tcm-main-parent){border-left:1px solid #d2d0d0;margin:0 0 20px 30px;}#thrive-comments .tcm-comments-list .tcm-comment-item:not(.tcm-main-parent):after{content:"";display:table;clear:both;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container{display:flex;align-items:center;margin-bottom:15px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-comment-author-img{margin-right:30px;width:65px;height:65px;border-radius:50px;background-size:cover;background-position:center;}@media (min-width: 768px){#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-content{float:left;}}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-content .tcm-user-info .tcm-comment-author-name strong{font-size:20px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-content .tcm-user-info .tcm-date-container span{font-size:16px;color:#6e767d;display:inline-block;font-weight:400;margin:0;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-badges{top:-5px;vertical-align:middle;}@media (max-width: 767px){#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-badges{clear:both;margin:15px 0 0 8px;}}@media (min-width: 768px){#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-badges{float:left;margin-left:50px;}}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-badges .tcm-badge{width:40px;height:40px;display:inline-block;background-repeat:no-repeat;margin:0 3px;background-position:center;border-radius:50px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-flex-container .tcm-author-badges .tcm-badge:hover{background-color:#ececec;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-comment-text{font-size:20px;margin-bottom:30px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-comment-text p,#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-comment-text a,#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-comment-text p a{word-wrap:break-word;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-comment-text p:last-child{margin-bottom:0;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div>div{margin:25px 0 0;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div.tcm-warning-box{border:1px solid #ef5350;border-radius:5px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div.tcm-warning-box .tcm-comment-wrapper{padding:0 20px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-social-accounts{flex:0 1 50%;text-align:center;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-social-accounts p{text-align:center;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-separator{flex:0 1 5%;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-error-heading{display:block;background-color:#ef5350;color:#fff;text-align:center;width:100%;font-size:19px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-error-heading p{padding:10px 0;color:#fff;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-comment-wrapper .tcm-show-login{display:block;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-new-user-label{display:inline-block;padding-top:6px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .clearfix:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div .tcm-new-user-label a{text-decoration:underline;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-has-children>.tcm-featured{margin-bottom:20px !important;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent{margin:0 0 35px;border:1px solid #e5e4e4;border-radius:5px;transition:all .3s;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content{margin-bottom:20px;position:relative;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content.tcm-comment-awaiting-moderation .tcm-comment-text{margin-bottom:43px;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content.level-0{padding:30px 30px 0;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content:not(.level-0){padding:30px 30px 0;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content.tcm-featured{margin-bottom:0;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content.tcm-featured:not(.level-0){padding:30px 30px 20px;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content.tcm-featured.level-0{padding:30px 30px 20px;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent:hover{box-shadow:0 0 8px 0 rgba(0,0,0,.1);}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .stop-nesting .stop-nesting{border:none;margin-left:0;padding:0;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-highlight-item{border:5px solid #70ba2a;}#thrive-comments .tcm-lazy-comments{width:100%;}#thrive-comments .tcm-lazy-comments .tcm-align-right{margin-top:54px;float:right;max-width:50%;}@media (max-width: 540px){#thrive-comments .tcm-lazy-comments .tcm-align-right{margin-top:0;float:none;max-width:100%;}}#thrive-comments .tcm-lazy-comments .tcm-align-right a{font-size:13px;color:#434343 !important;text-decoration:underline;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/subscr-env.png") no-repeat left 1px/25px auto;padding-left:33px;}#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form{overflow:hidden;float:right;}@media (max-width: 540px){#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form{width:100%;max-width:none;margin-top:10px;}}#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form input{float:left;width:160px;border-radius:0;box-shadow:none;background-color:rgba(0,0,0,0);line-height:30px;height:30px;border-color:rgba(0,0,0,.25);color:#6e6e6f;border-right:none;font-size:14px;padding:0 10px;}#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form input:focus{color:#6e6e6f;}#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form button{float:right;border-radius:0;font-weight:normal;height:auto;line-height:2;padding:0 10px;font-size:14px;}@media (max-width: 772px){#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form button{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100px;box-sizing:border-box;}#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form input{float:none;width:calc(100% - 100px);box-sizing:border-box;}}#thrive-comments .tcm-lazy-comments .tcm-align-right .tcm-subscribe-form .tcm-error-message{font-size:14px;margin-bottom:5px;}#thrive-comments .tcm-lazy-comments .tcm-loader{text-align:center;border:1px solid #e5e4e4 !important;border-radius:5px;padding:10px;cursor:pointer;transition:all .3s;background-color:#fff !important;max-width:inherit;height:auto;width:100%;font-weight:normal;line-height:initial;}#thrive-comments .tcm-lazy-comments .tcm-loader:hover,#thrive-comments .tcm-lazy-comments .tcm-loader:focus{box-shadow:0 0 8px 0 rgba(0,0,0,.1);}#thrive-comments .tcm-lazy-comments .tcm-loader:focus{background-color:rgba(0,0,0,.02) !important;}#thrive-comments .tcm-lazy-comments .tcm-loader p{font-size:15px;color:#6e767d;position:relative;margin:0 auto;display:inline-block;padding:0;}#thrive-comments .tcm-lazy-comments .add-comment{width:auto;border-radius:5px;margin-top:35px;text-align:center;cursor:pointer;padding:10px;transition:all .3s;}#thrive-comments .tcm-lazy-comments .add-comment:hover,#thrive-comments .tcm-lazy-comments .add-comment:focus{box-shadow:0 0 8px 0 rgba(0,0,0,.1);opacity:.7;}#thrive-comments .tcm-lazy-comments .add-comment p{font-size:15px;color:#fff;position:relative;margin:0 auto;display:inline-block;padding:0 0 0 35px;}#thrive-comments .tcm-lazy-comments .add-comment p .add-comment-icon{position:absolute;top:2px;left:6px;}#thrive-comments .tcm-lazy-comments .tcm-powered-by{max-width:50%;margin-top:50px;position:relative;padding-left:25px;height:28px;line-height:28px;display:inline-block;}@media (max-width: 540px){#thrive-comments .tcm-lazy-comments .tcm-powered-by{max-width:100%;}}#thrive-comments .tcm-lazy-comments .tcm-powered-by a{text-decoration:none;font-size:13px;}#thrive-comments .tcm-lazy-comments .tcm-powered-by a .tcm-footer-logo{position:absolute;top:5px;left:-1px;}#thrive-comments .tcm-lazy-comments .tcm-powered-by a .tcm-footer-logo svg{width:23px;height:18px;}#thrive-comments .tcm-lazy-comments .tcm-powered-by span:nth-child(2){color:#434343;}#thrive-comments .tcm-lazy-comments .tcm-powered-by span:last-child{color:#58a245;text-decoration:underline;}.tcm-hide{display:none !important;}.tcm-save-btn-center{display:block;margin:0 auto;}.tcm-comment-as-label p{margin-bottom:10px !important;}.tcm-logout-label a{font-size:16px;text-decoration:underline;}.tcm-comments-filters .left{display:inline-block;float:left;}@media (max-width: 767px){.tcm-comments-filters .left{float:none;text-align:center;display:block;}}.tcm-comments-filters .right{display:inline-block;float:right;}@media (max-width: 767px){.tcm-comments-filters .right{float:none;text-align:center;display:block;margin:0;}}.tcm-filter-dropdown{display:inline-block;}.right #tcm-sort-by.tcm-dropdown{position:relative;display:inline-block;}.right #tcm-sort-by.tcm-dropdown .tcm-toggle-button{cursor:pointer;font-size:20px;font-weight:400;color:#6e767d;padding:0 20px 0 0;margin-top:0;display:block;}.right #tcm-sort-by.tcm-dropdown .tcm-toggle-button.current-sorting{background-position:right center;}.right #tcm-sort-by.tcm-dropdown .dropdown-arrow-comments{position:absolute;display:block;right:1px;top:4px;}.right #tcm-sort-by.tcm-dropdown .dropdown-arrow-comments svg{width:12px;}.right #tcm-sort-by.tcm-dropdown .tcm-dropdown-content{box-shadow:0 5px 5px 0 rgba(0,0,0,.25);font-size:13px;color:#6d6d6d;font-weight:500;display:none;width:155px;white-space:nowrap;left:0;padding:13px 0;position:absolute;background-color:#fff;z-index:5;text-align:left;}.right #tcm-sort-by.tcm-dropdown .tcm-dropdown-content .tcm-dropdown-element{padding:0 15px;line-height:30px;}.right #tcm-sort-by.tcm-dropdown .tcm-dropdown-content .tcm-dropdown-element:hover,.right #tcm-sort-by.tcm-dropdown .tcm-dropdown-content .tcm-dropdown-element.hover{cursor:pointer;background-color:#e5e5e5;}.right #tcm-sort-by.tcm-dropdown .tcm-dropdown-content .tcm-dropdown-element a{font-size:19px;color:#6e767d;}.right #tcm-sort-by.tcm-dropdown.tcm-share-dropdown-hover .tcm-dropdown-content{display:block;}.tcm-dropdown:not(.tcm-really-random){display:inline-block;z-index:10;}.tcm-dropdown:not(.tcm-really-random) .tcm-toggle-button{display:block;font-size:15px;font-weight:400;cursor:pointer;color:#6e767d;padding:0;margin:0;}.tcm-dropdown:not(.tcm-really-random) .tcm-toggle-button svg{width:11px !important;top:6px;position:relative;}.tcm-dropdown:not(.tcm-really-random) .tcm-toggle-button.current-sorting{background-position:right center;}.tcm-dropdown:not(.tcm-really-random) .tcm-toggle-button .svg-arrow-down svg{width:12px;position:relative;top:6px;left:4px;}.tcm-dropdown:not(.tcm-really-random):hover .tcm-dropdown-content{opacity:1;visibility:visible;}.tcm-dropdown:not(.tcm-really-random):hover .svg-arrow-down{display:none;}.tcm-dropdown:not(.tcm-really-random):hover .tcm-dropdown-content{display:block;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content{opacity:0;visibility:hidden;transition:.5s;margin-top:15px;position:absolute;background-color:#fff;width:155px;z-index:1;box-shadow:0 2px 6px 0 rgba(0,0,0,.2);font-size:13px;color:#6d6d6d;font-weight:500;padding:13px 0;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element{padding:5px 15px;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element:hover,.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element.hover{cursor:pointer;background-color:#e5e5e5;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element a{font-size:13px;color:#6d6d6d !important;line-height:20px;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element a:focus{opacity:.7;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element .tcm-fb-icon:before{content:"";display:inline-block;vertical-align:middle;width:18px;height:18px;background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-fb-icon.png");background-size:contain;background-repeat:no-repeat;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element .tcm-tw-icon:before{content:"";display:inline-block;vertical-align:middle;width:18px;height:18px;background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-tw-icon.png");background-size:contain;background-repeat:no-repeat;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element .tcm-cu-icon{padding-left:21px;position:relative;}.tcm-dropdown:not(.tcm-really-random) .tcm-dropdown-content .tcm-dropdown-element .tcm-cu-icon:before{content:"";display:inline-block;vertical-align:middle;width:18px;height:18px;margin-top:3px;background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-copy-url-icon.png");background-size:contain;background-repeat:no-repeat;position:absolute;left:0;top:-2px;}.tcm-dropdown.tcm-filter-dropdown{margin:0 15px 0 0;}.tcm-filter-dropdown .tcm-toggle-button{color:#6e767d;}.tcm-comment-header{position:relative;margin-bottom:25px;align-items:center;display:flex;}.tcm-comment-header .tcm-author-content{width:calc(100% - 90px);}.tcm-comment-header .tcm-author-badges{margin-top:-5px;}.tcm-comment-header .tcm-author-badges span.tcm-badge:not(.svg-badge){width:26px;height:26px;border:5px solid #fff;border-radius:50%;display:inline-block;background-repeat:no-repeat;background-position:center;background-size:cover;margin:0;position:relative;vertical-align:middle;}.tcm-comment-header .tcm-author-badges span.tcm-badge:not(.svg-badge):hover{border-color:#e7e8e8;}.tcm-comment-header .tcm-author-badges span.tcm-badge:not(.svg-badge):hover:after{content:"";width:0;height:0;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #e7e8e8;position:absolute;left:7px;bottom:calc(100% + 4px);}.tcm-comment-header .tcm-author-badges span.tcm-badge{position:relative;}.tcm-comment-header .tcm-author-badges span.tcm-badge:hover{cursor:pointer;}.tcm-comment-header .tcm-author-badges span.tcm-badge:hover span.text{display:block;box-shadow:0 1px 4px rgba(0,0,0,.15);padding:4px;}.tcm-comment-header .tcm-author-badges span.tcm-badge span.text{position:absolute;width:120px;bottom:calc(100% + 15.5px);left:-51.5px;background-color:#fff;font-size:12px;line-height:normal;display:none;text-align:center;border-radius:2px;border-bottom:1px solid rgba(0,0,0,.15);}.tcm-comment-header .tcm-author-badges span.svg-badge{position:relative;width:36px;height:36px;display:inline-block;vertical-align:middle;}.tcm-comment-header .tcm-author-badges span.svg-badge:hover{cursor:pointer;}.tcm-comment-header .tcm-author-badges span.svg-badge:hover:after{content:"";width:0;height:0;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #e7e8e8;position:absolute;left:12px;bottom:calc(100% - 1px);}.tcm-comment-header .tcm-author-badges span.svg-badge:hover svg{background-color:#e7e8e8;}.tcm-comment-header .tcm-author-badges span.svg-badge:hover span.text{display:block;}.tcm-comment-header .tcm-author-badges span.svg-badge span.text{position:absolute;width:120px;bottom:calc(100% + 10px);left:-46px;background-color:#fff;font-size:12px;line-height:normal;display:none;text-align:center;}.tcm-comment-header .tcm-author-badges span.svg-badge svg{width:36px !important;height:36px !important;margin:0;position:relative;background-color:rgba(0,0,0,0);border-radius:50%;}.tcm-comment-header .tcm-comment-author-img{margin-right:25px;background-position:center;background-size:cover;flex:0 0 65px;width:65px;height:65px;border-radius:50%;display:inline-block;}@media (max-width: 540px){.tcm-comment-header .tcm-comment-author-img{align-self:start;}}.tcm-comment-header .tcm-author-content .tcm-comment-author-name{font-size:20px;color:#393939;display:flex;}@media (max-width: 767px){.tcm-comment-header .tcm-author-content .tcm-comment-author-name{flex-direction:column-reverse;}}.tcm-comment-header .tcm-author-content .tcm-comment-author-name strong{font-weight:700;display:inline-block;margin-bottom:8px;word-wrap:break-word;}@media (min-width: 768px){.tcm-comment-header .tcm-author-content .tcm-comment-author-name strong{max-width:50%;margin-right:15px;}}.tcm-comment-header .tcm-author-content .tcm-date-container span{font-size:15px;font-weight:500;color:#6e767d;}.tcm-red{color:#f44336;}.tcm-comment-content .tcm-comment-text{font-size:20px;line-height:33px;color:#393939;}.tcm-comment-content .tcm-comment-text p a:hover{text-decoration:underline;}.comments-lead-trigger{display:none;}.tcm-frontend-toast.tvd-toast-container{position:fixed;z-index:9999;display:flex;bottom:10px;width:100%;}.tcm-frontend-toast.tvd-toast-container .tvd-toast{box-shadow:0 1px 3px 0 rgba(0,0,0,.22);border-radius:2px;top:0;width:auto;clear:both;position:relative;max-width:100%;height:auto;line-height:1.5em;background-color:#ef3131;padding:10px 25px;font-size:1.1rem;font-weight:300;color:#fff;margin:10px auto 0;align-items:center;justify-content:space-between;}.tvd-toast{font-family:sans-serif;}.thrv_wrapper.thrv-comments{margin:0;}body.tve_editor_page #tve_editor .thrv-comments{position:relative;}body.tve_editor_page #tve_editor .thrv-comments::before{background:rgba(0,0,0,0);content:"";display:block;position:absolute;top:0;right:0;left:0;bottom:0;z-index:1;}@media (max-width: 540px){.tcm-comment-header{margin-bottom:12px;display:block;text-align:center;}.tcm-comment-header .tcm-comment-author-img{margin:10px 0 0;flex:unset;width:50px;height:50px;border-radius:50%;}.tcm-comment-header .tcm-author-content{width:100%;}.tcm-comment-header .tcm-author-content .tcm-comment-author-name strong{margin:10px 0;}.tcm-comment-header .tcm-author-badges{margin:0 0 10px;}#thrive-comments .tcm-left{width:100%;}#thrive-comments .tcm-left .tcm-share-dropdown{display:none;}#thrive-comments .tcm-left .tcm-voting-container{width:100%;text-align:center;margin:7px 0 15px;}#thrive-comments .tcm-left .tcm-voting-container>span{display:none;}#thrive-comments .tcm-left .tcm-voting-container .tcm-voting-input{margin:0 3px;}#thrive-comments button.tcm-right{width:100%;box-sizing:border-box;}#thrive-comments button.tcm-right:after{content:none;}#thrive-comments button#tcm-submit-comment{width:100%;box-sizing:border-box;}#thrive-comments .tcm-comments-create>div{padding-bottom:30px;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class>.tcm-featured{padding:12px !important;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-featured-class>.tcm-featured:not(.level-0){margin-bottom:0 !important;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent{padding:0;margin:0 0 12px;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content .tcm-comment-author-name{flex-direction:column;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content.level-0{padding:12px 12px 0;margin-bottom:18px !important;}#thrive-comments .tcm-comments-list .tcm-comment-item.tcm-main-parent .tcm-comment-content:not(.level-0){padding:12px 12px 0;margin-bottom:12px;}#thrive-comments .tcm-comments-list .tcm-comment-item:not(.tcm-main-parent){border-left:1px solid #e5e4e4;margin:0 0 12px 4px;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content div:nth-child(3) .tcm-reply-container .tcm-create-comment-fields>div{margin:10px 0 0 !important;}#thrive-comments .tcm-comments-list .tcm-comment-item .tcm-comment-content .tcm-comment-text{margin-bottom:13px;}#thrive-comments .tcm-comments-create .tcm-create-post-container .left .tcm-client-avatar,#thrive-comments .tcm-create-comment-fields .tcm-create-post-container .left .tcm-client-avatar,#thrive-comments .tcm-lazy-comments .tcm-create-post-container .left .tcm-client-avatar{margin:10px 0;height:50px;width:50px;border-radius:50%;}#thrive-comments .tcm-lazy-comments .tcm-powered-by{margin-top:12px;}#thrive-comments .tcm-lazy-comments .add-comment{margin-top:12px;}#thrive-comments .tcm-comment-additional-fields{margin-top:10px;text-align:center;}#thrive-comments .tcm-comment-additional-fields .tcm-btn-div{margin-top:10px;}}.tve_editor_page #thrive-comments{pointer-events:none;cursor:pointer;}#message,.error:not(.tvd-inner-dashboard),.notice:not(.tvd-inner-dashboard),.update-nag,.sbi_notice,.update,.updated{display:none !important;}.comments-compat-twentynineteen{margin:2rem 1rem 1rem;}@media only screen and (min-width: 1168px){.comments-compat-twentynineteen{max-width:calc(50vw - 28px);margin:0 calc(10% + 60px) 3rem;}}@media (min-width: 768px){.comments-compat-twentynineteen{max-width:calc(66.6666666667vw - 28px);margin:3rem calc(10% + 60px);}}[class^=tcm-icon-]:before,[class*=" tcm-icon-"]:before{font-family:"tcm-icomoon" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.tcm-icon-keyboard_arrow_down:before{content:"";}.tcm-icon-arrow_drop_down:before{content:"";}.tcm-icon-pencil:before{content:"";}.tcm-icon-envelope:before{content:"";}.tcm-icon-sphere:before{content:"";}.tcm-icon-globe:before{content:"";}.tcm-icon-internet:before{content:"";}.tcm-icon-add_circle:before{content:"";}.tcm-icon-keyboard_arrow_down2:before{content:"";}.tcm-icon-keyboard_arrow_up:before{content:"";}.tcm-icon-mode_edit:before{content:"";}.tcm-icon-thumb_up:before{content:"";}.tcm-icon-thumb_down:before{content:"";}.tcm-icon-general_settings_icon:before{content:"";}.tcm-icon-settings:before{content:"";}.tcm-icon-cog:before{content:"";}.tcm-icon-preferences:before{content:"";}.tcm-icon-desktop_windows:before{content:"";}.tcm-icon-mobile:before{content:"";}.tcm-icon-cell-phone:before{content:"";}.tcm-icon-handheld:before{content:"";}.tcm-icon-comment:before{content:"";}.tcm-icon-file_upload:before{content:"";}.tcm-icon-check:before{content:"";}.tcm-icon-info:before{content:"";}.tcm-icon-information:before{content:"";}.tcm-icon-trash-o:before{content:"";}.tcm-icon-link:before{content:"";}.tcm-icon-chain:before{content:"";}.tcm-icon-url:before{content:"";}.tcm-icon-uri:before{content:"";}.tcm-icon-anchor:before{content:"";}#tcm-social-status div{display:inline-block;float:left;margin-right:20px;}#tcm-social-status div a{padding:7px 20px 7px 60px;background:#858585 url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/signin-gpl.png") no-repeat 15px center;border-radius:5px;box-shadow:none;text-transform:inherit;}#tcm-social-status div a.nitro-lazy{background-image:none !important;}#tcm-social-status div a:hover{opacity:.7;}#tcm-social-status div a.enabled:after,#tcm-social-status div a.disabled:after{content:attr(data-label);}#tcm-social-status div a.signin-facebook{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/signin-fb.png");}#tcm-social-status div a.signin-facebook.nitro-lazy{background-image:none !important;}#tcm-social-status div a.disabled{background-color:#e84848;}#tcm-social-status div a.enabled{background-color:#009688;}#tcm-social-status:after{content:"";display:block;clear:both;}p.label{font-size:16px !important;}#wp-auth-check-wrap #wp-auth-check{max-height:625px !important;}.tvd-right.tcm-gt-reporting{font-size:15px;font-weight:400 !important;padding:10px 20px 0 45px;position:relative;top:-2px;}.tvd-right.tcm-gt-reporting:before{position:absolute;right:calc(100% - 38px);font-size:16px;top:12px;}.tvd-right.tcm-gt-reporting i{padding-right:12px;position:relative;top:2px;}.tvd-right.tcm-gt-moderation{font-size:14px;font-weight:400 !important;padding:10px 0 10px 28px;position:relative;top:-1px;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/opt-to-mod.png") no-repeat left center/18px auto;}.tvd-right.td-app-notification-counter{margin-left:15px;}.wp-auth-check-close.button-link{padding:0;background:rgba(0,0,0,0);border:medium;}.screen-reader-text{display:none;}@media (max-width: 1366px){.tvd-modal{width:unset !important;max-width:80% !important;}}#wpfooter{display:none;}#wpbody-content{padding-bottom:5px;}.tcm-keywords-delete h2{margin-bottom:25px;font-size:22px;}.tcm-keywords-delete h4{margin-top:40px;}#tcm-modal-content form div:last-child{margin:24px 0 0;}#tcm-modal-content h2{margin-bottom:25px;font-size:22px;}#tcm-modal-content .checkbox-no-follow{margin-right:10px;}#tcm-modal-content #keyword-error{margin:-20px 0 25px 40px;}#tcm-modal-content #link-error{margin:0 0 25px 0;}#tcm-modal-content .tcm-moderation-margin01{margin:30px 0 20px;position:relative;padding-left:40px;}#tcm-modal-content .tcm-moderation-margin01:before{content:"";position:absolute;left:5px;height:0;border-top:1px dashed #cbcbcb;width:20px;top:15px;}#tcm-modal-content .tcm-moderation-margin01:after{content:"";position:absolute;left:5px;bottom:0;width:0;border-left:1px dashed #cbcbcb;top:15px;}#tcm-modal-content .tcm-moderation-margin02{margin:0;padding-left:40px;}#tcm-modal-content .tcm-moderation-margin02 label{left:inherit;}#tcm-modal-content .tcm-moderation-margin02:before{position:absolute;left:0;top:-5px;color:#cbcbcb;}#tcm-modal-content .tcm-moderation-keywords{margin:0;display:inline-block;height:50px;}#tcm-modal-content [type=checkbox]+label{padding-left:25px;}#tcm-modal-content [type=checkbox]:checked+label:after{background-color:#03a88a;border:2px solid #03a88a;}#tcm-modal-content .tcm-autocomplete{background-position:right center !important;}#tcm-modal-content label.tvd-active{color:#03a88a;}#tcm-modal-content input[type=text]:focus:not([readonly]){border-bottom:1px solid #03a88a;box-shadow:0 1px 0 0 #03a88a;}#tcm-modal-content .tvd-btn.tvd-btn-green{background-color:#03a88a;}#tcm-modal-content .tvd-materialize-tags.tvd-active{border-bottom:1px solid #03a88a;box-shadow:0 1px 0 0 #03a88a;}#tcm-modal-content .tvd-chip .tvd-icon-close2:before{content:none;}#powerTip.n,#powerTip.s{background-color:#000;color:#fff;font-style:inherit;border:0;box-shadow:none;font-family:sans-serif;border-radius:3px;}#powerTip.n a,#powerTip.s a{color:#03a88a;}.tcm-i-m-bad label{display:inline-block;margin-right:25px;color:#333;font-weight:400;margin-bottom:30px;font-size:16px;}.tcm-i-m-bad .tvd-switch{display:inline-block;}.tcm-i-m-bad .tvd-switch label{color:#999;}.tcm-i-m-bad .tcm-voting-cards-container{padding:30px 0;max-width:700px;width:100%;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card{float:left;width:17.6%;margin-right:3%;text-align:center;padding:100px 0 10px;background-color:#fff;box-shadow:0 0 2px rgba(0,0,0,.25);border-radius:5px;color:#666;font-size:14px;transition:all .3s;position:relative;height:auto;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card p{color:inherit !important;font-size:14px !important;padding:0 10px !important;font-weight:500 !important;text-align:center;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:after{content:"";position:absolute;width:62px;height:62px;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/sprite-badges.png");background-repeat:no-repeat;top:20px;left:calc(50% - 31px);}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:nth-child(2):after{background-position:left 50%;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:nth-child(3):after{background-position:left 100%;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:hover,.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card.current{background-color:#03a88a;background-position:top right;color:#fff;cursor:pointer;box-shadow:0 0 10px rgba(0,0,0,.25);}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:hover:nth-child(1):after,.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card.current:nth-child(1):after{background-position:right top;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:hover:nth-child(2):after,.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card.current:nth-child(2):after{background-position:right 50%;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:hover:nth-child(3):after,.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card.current:nth-child(3):after{background-position:right 100%;}.tcm-i-m-bad .tcm-voting-cards-container .tcm-voting-card:last-child{margin-right:0;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge{overflow:hidden;height:90px;position:relative;width:40%;margin:10px 20px 10px 0;float:left;border:1px solid #d0d0d0;border-radius:5px;padding:15px 20px;font-weight:500;font-size:14px;line-height:24px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm-link-controls{display:none;position:absolute;top:10px;right:10px;font-size:16px;color:#9fadae;cursor:default;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm-link-controls .tcm-icon-trash-o:hover,.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm-link-controls .tcm-icon-mode_edit:hover{color:#03a88a;cursor:pointer;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm-link-controls .tcm-icon-trash-o{margin-right:5px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm_badge_title{display:inline-block;color:#03a88a;max-width:80%;font-weight:500;padding:0 0 0 10px;float:left;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm_badge_short_description{display:block;color:#b0b0b0;padding-left:45px;float:left;clear:both;position:relative;top:-7px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm_badge_edit_corner{position:absolute;display:none;top:7px;right:7px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge .tcm_badge_edit_corner img{margin:0 4px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge:hover{border-color:#6bd1bf;box-shadow:0 2px 5px 0 rgba(107,209,191,.5);}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge:hover .tcm-link-controls{display:block;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge:hover .tcm_badge_edit_corner{display:block;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge span.tcm-badge-img{width:25px;height:25px;display:inline-block;background-size:contain;background-repeat:no-repeat;vertical-align:middle;background-position:center;float:left;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge span.tcm-badge-img+.tcm_badge_title{padding:0 0 10px 20px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm_badge svg.tcm-badge-svg{width:35px !important;height:35px !important;margin:0;vertical-align:middle;float:left;position:relative;top:-5px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new{color:#b0b0b0;background-color:#f5f5f5;border:1px dashed #d0d0d0;padding:22px 0 0;text-align:center;width:40%;border-radius:5px;font-size:14px;float:left;margin:10px 20px 10px 0;overflow:hidden;position:relative;height:90px;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new span.tcm-icon-add_circle{font-size:30px;vertical-align:middle;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new span.tcm_badge_new_title{font-size:18px;vertical-align:middle;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new img{vertical-align:middle;transition-duration:.5s;transition-property:transform;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new .tcm_badge_new_title{font-size:18px;line-height:24px;color:silver;vertical-align:middle;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new:hover{cursor:pointer;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new:hover span.tcm-icon-add_circle,.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new:hover span.tcm_badge_new_title{color:#8a8a8a;}.tcm-i-m-bad .tcm-badges-wrapper .tcm-badge-new:hover img{transform:rotate(90deg);-webkit-transform:rotate(90deg);}.tcm-badges-modal{padding:30px 30px 0 !important;}.tcm-badges-modal h2{font-size:22px;color:#494949;font-weight:500;margin-bottom:20px;}.tcm-badges-modal .badges-inner div{width:45px;height:45px;float:left;}.tcm-badges-modal .tcm-badge-icon{height:100%;width:100%;border-radius:3px;cursor:pointer;border:2px solid rgba(0,0,0,0);display:inline-block;}.tcm-badges-modal .tcm-badge-icon:hover{border-color:#ccc;box-shadow:0 0 8px rgba(0,0,0,.2);}.tcm-badges-modal .tcm-badge-icon.selected{border-color:#009688;box-shadow:0 0 8px rgba(0,0,0,.2);}.tcm-badges-modal div.tcm-badge-icon{background-size:contain;background-repeat:no-repeat;background-position:center;}.tcm-badges-modal .choose-badge{margin:10px 0 0;}.tcm-badges-modal .tcm-choose{border:1px solid #d9d9d9;border-radius:3px 3px 0 0;padding:18px 22px;text-transform:uppercase;color:#4e4e4e;font-size:14px;float:left;font-weight:500;position:relative;}.tcm-badges-modal .tcm-choose:after{content:"";position:absolute;width:100%;height:2px;background-color:#fff;left:0;top:100%;}.tcm-badges-modal .tcm-upload-badge{padding:19px 0;text-transform:uppercase;color:#4e4e4e;font-size:14px;float:right;font-weight:500;}.tcm-badges-modal .tcm-upload-badge:hover{color:#999;cursor:pointer;}.tcm-badges-modal .tcm-badges-container{clear:both;border:1px solid #d9d9d9;border-left:none;border-right:none;margin:0 -30px 30px;padding:30px;max-height:200px;overflow-y:scroll;}@media (max-width: 1366px){.tcm-badges-modal .tcm-badges-container{max-height:190px;}}.tcm-badges-modal .field-desc{font-size:14px;color:#03a88a;}.tcm-badges-modal #tcm_badge_name{width:80%;display:block;}.tcm-badges-modal #tcm_badge_name:focus{border-bottom:1px solid #03a88a;box-shadow:0 1px 0 0 #03a88a;}.tcm-badges-modal .select2{width:auto !important;padding:0 10px;}.tcm-badges-modal #tcm_badge_reaches{width:50px;text-align:center;display:inline;}.tcm-badges-modal #tcm_badge_reaches:focus{border-bottom:1px solid #03a88a;box-shadow:0 1px 0 0 #03a88a;}.tcm-badges-modal label{color:#03a88a;}.tcm_badge_id{display:none;}#tcm-admin-configurator [type=radio]+label{padding-left:30px;}#tcm-admin-configurator [type=checkbox]+label{padding-left:26px;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card{float:left;width:17.6%;margin-right:3%;text-align:center;height:100px;background-color:gray;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card:last-child{margin-right:0;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tooltips{margin-left:0;background-image:none;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tooltips.nitro-lazy{background-image:none !important;}.tcm-separator{border-top-color:#e9e9e9;border-bottom:none;margin:10px 0 30px;}.tcm-comments-notifications{max-width:70% !important;width:70%;max-height:80%;}.tcm-comments-notifications .tvd-icon-close2:before{content:"";width:16px;height:16px;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/the-x.png") no-repeat center;position:relative;top:-12px;}@media (max-width: 1366px){.tcm-comments-notifications{max-height:90%;}}.tcm-comments-notifications .tvd-modal-content{padding:30px 0 0;}.tcm-comments-notifications .tvd-modal-content:after{content:unset;}.tcm-comments-notifications h2{color:#666;font-size:22px;font-weight:400;border-bottom:1px solid rgba(0,0,0,.1);padding:0 25px 22px;margin-bottom:0;}.tcm-comments-notifications .tcm-modal-body{display:flex;}.tcm-comments-notifications .tcm-modal-body .notification-left{width:70%;overflow-y:auto;padding:0 15px 0 30px;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-reply{position:relative;margin:30px 0;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-reply:after{content:"";display:table;clear:both;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-reply .tcm-comment-author-img{width:40px;height:40px;margin-right:10px;float:left;border-radius:50%;background-size:cover;background-position:center;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-reply .comm-content{float:left;width:calc(100% - 50px);}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-reply .comm-content p{font-weight:500;margin:0;max-width:80%;color:#393939;font-size:16px;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment{position:relative;margin:30px 0;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment:after{content:"";display:table;clear:both;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .tcm-comment-author-img{width:40px;height:40px;margin-right:10px;float:left;border-radius:50%;background-size:cover;background-position:center;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content{float:left;width:calc(100% - 50px);}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content h4{font-size:16px;color:#595959;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content span{font-size:14px;color:#b3b3b3;display:inline-block;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content p{font-weight:500;color:#393939;font-size:16px;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input{background-color:#03a9f4;box-shadow:0 0 3px rgba(0,0,0,.25);padding:5px 15px;max-width:300px;position:relative;min-height:35px;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input p,.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input textarea{color:#fff;padding:0;font-weight:400;border:none;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input a{position:absolute;top:5px;left:calc(100% + 15px);}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input a.error-icon{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/error.png") no-repeat center;width:18px;height:18px;left:calc(100% + 40px);top:7px;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input a.error-icon.nitro-lazy{background-image:none !important;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input a.error-icon.tooltipelem:hover{cursor:pointer;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input a.error-icon.tooltipelem:hover .tooltiptext{display:block;}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input a.error-icon.tooltipelem .tooltiptext{display:none;white-space:nowrap;text-decoration:none;font-weight:400;background-color:rgba(0,0,0,.9);color:#fff;text-align:center;border-radius:3px;padding:10px 25px;font-size:14px;position:absolute;z-index:100;bottom:calc(100% + 8px);left:50%;transform:translateX(-50%);}.tcm-comments-notifications .tcm-modal-body .notification-left .hardcoded-comment .comm-content .tcm-label-to-input a.error-icon.tooltipelem .tooltiptext:before{content:"";width:0;height:0;position:absolute;top:100%;left:50%;transform:translateX(-50%);border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-top:7px solid rgba(0,0,0,.9);}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl{display:flex;align-items:center;padding-top:20px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div.tcm-label-to-input:hover a.icon-pen{display:block;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl h4{width:20%;font-size:14px;color:#0dbf9f;font-weight:400;margin:0;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div{width:80%;position:relative;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div.tcmlti-one{min-height:45px;padding-top:5px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div p,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div textarea{box-shadow:none;margin:0;font-size:16px;color:#393939;font-weight:400;padding:5px;height:36px;border:1px dashed rgba(0,0,0,0);}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div p:hover,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div textarea:hover{border-color:#d0d0d0;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div p:focus,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div textarea:focus{border-color:#03a9f4;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div a{position:absolute;top:10px;right:10px;text-decoration:none;color:#999;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl div a.icon-pen{display:none;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two{display:flex;padding-top:40px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two .reply-sep{margin:30px 0;border:none;border-bottom:1px solid rgba(0,0,0,.1);}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two h4{width:20%;font-size:14px;color:#0dbf9f;font-weight:400;margin:0;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two>div{width:80%;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input{position:relative;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-one{min-height:45px;margin-top:-10px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-two{min-height:45px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input:hover a.icon-pen{display:block;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.title,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.title+textarea{color:#393939;font-size:18px;font-weight:500;margin:0 0 5px;padding:5px;border:1px dashed rgba(0,0,0,0);height:36px;line-height:normal;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.title:hover,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.title+textarea:hover{border-color:#d0d0d0;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.title:focus,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.title+textarea:focus{border-color:#03a9f4;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input textarea{border:none;box-shadow:none;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p+textarea{margin:0;padding:5px;font-size:16px;font-weight:400;color:#898989;border:1px dashed rgba(0,0,0,0);height:36px;line-height:normal;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p:hover,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p+textarea:hover{border-color:#d0d0d0;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p:focus,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p+textarea:focus{border-color:#03a9f4;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-three{min-height:38px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-three p,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-three p+textarea{height:25px;line-height:25px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-four{height:55px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-four p,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-four p+textarea{min-height:50px;line-height:normal;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-five{min-height:40px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-five p,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-five p+textarea{height:33px;line-height:normal;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-six{min-height:75px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-six p,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.tcmlti-six p+textarea{min-height:68px;line-height:normal;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.extra-p{margin:0 0 8px;font-size:14px;color:#898989;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.special-input{margin:15px 0 25px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input.special-input textarea{min-height:100px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p+textarea{font-size:14px;color:#898989;padding:5px 35px 5px 5px;border:1px dashed rgba(0,0,0,0);}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p:hover,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p+textarea:hover{border-color:#d0d0d0;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p:focus,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p+textarea:focus{border-color:#03a9f4;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p.w-border+textarea+a,.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input p.special-p+textarea.w-border+textarea+a{top:10px;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input a{position:absolute;top:6px;right:10px;text-decoration:none;color:#999;}.tcm-comments-notifications .tcm-modal-body .notification-left .container-nl-two div.tcm-label-to-input a.icon-pen{display:none;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes{width:30%;background-color:#eaeaea;padding:0 20px 0 30px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes span.tooltipelem{position:absolute;width:15px;height:15px;display:inline-block;font-size:15px;color:#919099;top:16px;margin:0 5px 0 0;left:-21px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes span.tooltipelem:hover{color:#0dbf9f;cursor:pointer;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes span.tooltipelem:hover .tooltiptext{display:block;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes span.tooltipelem .tooltiptext{display:none;white-space:nowrap;text-decoration:none;font-weight:400;background-color:rgba(0,0,0,.9);color:#fff;text-align:center;border-radius:3px;padding:10px 25px;font-size:14px;position:absolute;z-index:100;bottom:calc(100% + 8px);left:50%;transform:translateX(-50%);}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes span.tooltipelem .tooltiptext:before{content:"";width:0;height:0;position:absolute;top:100%;left:50%;transform:translateX(-50%);border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-top:7px solid rgba(0,0,0,.9);}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input{position:relative;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a{position:absolute;top:1px;right:10px;text-decoration:none;color:#999;box-shadow:none;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a:hover{color:#0dbf9f;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a.error-icon{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/error.png") no-repeat center;width:18px;height:18px;right:30px;top:2px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a.error-icon.nitro-lazy{background-image:none !important;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a.error-icon.tooltipelem:hover{cursor:pointer;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a.error-icon.tooltipelem:hover .tooltiptext{display:block;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a.error-icon.tooltipelem .tooltiptext{display:none;white-space:nowrap;text-decoration:none;font-weight:400;background-color:rgba(0,0,0,.9);color:#fff;text-align:center;border-radius:3px;padding:10px 25px;font-size:14px;position:absolute;z-index:100;bottom:calc(100% + 8px);right:-3px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input a.error-icon.tooltipelem .tooltiptext:before{content:"";width:0;height:0;position:absolute;top:100%;right:5px;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-top:7px solid rgba(0,0,0,.9);}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .special-input textarea{font-size:14px;color:#766b61;font-weight:400;border:none;border-bottom:1px solid #dbdbdb;padding:0 0 8px;box-shadow:none;height:30px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .tcm-copy-container{border-bottom:1px solid #dbdbdb;padding:13px 0 3px;position:relative;margin-left:20px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .tcm-copy-container p{margin:0;display:inline;font-size:14px;color:#766b61;font-weight:400;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes .tcm-copy-container .tcm-copy-input-content{display:inline;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes h4{margin-top:28px;color:#0dbf9f;font-size:16px;font-weight:400;margin-bottom:25px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes a{color:#0dbf9f;font-size:12px;text-decoration:none;float:right;position:relative;bottom:-3px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes a.tvd-btn-flat{font-size:13px;float:none;position:inherit;bottom:inherit;min-height:35px;line-height:35px;padding:0 15px;}.tcm-comments-notifications .tcm-modal-body .notification-shortcodes p.tcm-single-p{font-size:14px;color:#766b61;font-weight:400;border-bottom:1px solid #dbdbdb;padding-bottom:8px;min-height:30px;}.tcm-comments-notifications .tcm-modal-body .notification-left,.tcm-comments-notifications .tcm-modal-body .notification-shortcodes{height:55vh;}@media screen and (max-width: 1366px){.tcm-comments-notifications .tcm-modal-body .notification-left,.tcm-comments-notifications .tcm-modal-body .notification-shortcodes{height:60vh;}}.tcm-comments-notifications .tcm-btm{padding:20px 25px;border-top:1px solid rgba(0,0,0,.1);}.tcm-comments-notifications .tcm-btm .tvd-right{background-color:#0dbf9f;}#tcm-admin-configurator .tvd-collapsible .tcm-conversion{padding-bottom:30px;max-width:990px;}#tcm-admin-configurator .tvd-collapsible .tcm-cards{padding:30px 0;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card{float:left;width:17.6%;margin-right:3%;text-align:center;padding:100px 0 10px;background-color:#fff;box-shadow:0px 0px 2px rgba(0,0,0,.25);border-radius:5px;color:#666;font-size:14px;transition:all .3s;position:relative;height:auto;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card p{color:inherit !important;font-size:14px !important;padding:0 10px !important;font-weight:500 !important;text-align:center;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card svg.conversion-card{width:60px;height:60px;top:30px;left:calc(50% - 30px);position:absolute;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card span .default{display:block;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card .second{display:none;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card.current span.default,#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card:hover:not(.leads_inactive) span.default{display:none;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card.current .second,#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card:hover:not(.leads_inactive) .second{display:block;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card.current:after{width:0;height:0;border-left:20px solid rgba(0,0,0,0);border-right:20px solid rgba(0,0,0,0);border-bottom:20px solid #f3f3f3;content:"";position:absolute;top:calc(100% + 11px);margin:auto;left:calc(50% - 20px);}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card:hover:not(.leads_inactive),#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card.current{background-color:#03a88a;color:#fff;cursor:pointer;box-shadow:0 0 10px rgba(0,0,0,.25);}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card.leads_inactive{color:#666 !important;box-shadow:0 0 2px rgba(0,0,0,.25) !important;opacity:.4 !important;cursor:default;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card.leads_inactive span .default{display:block;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card.leads_inactive .second{display:none;}#tcm-admin-configurator .tvd-collapsible .tcm-cards .tcm-card:last-child{margin-right:0;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box{background-color:#f3f3f3;padding:20px;display:none;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box input,#tcm-admin-configurator .tvd-collapsible .tcm-message-box .select2{margin:-5px 0 15px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box label{color:#a5a5a5;font-size:inherit;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .tvd-switch{display:inline-block;margin-left:25px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box.current{display:block;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only){float:left;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only) input{background-position:right center !important;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):first-child{width:220px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):first-child.tcm-l-text{width:100%;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(2){width:calc(100% - 220px);color:#999;position:relative;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(2)>div#redirect-error,#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(2)>div#redirect-error2{font-size:12px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(3){margin-top:20px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(3)>label{color:#393939;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(3).social-sharing-checkboxes p.sharing-text{position:absolute;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(3).social-sharing-checkboxes .sharing-div{margin:0 0 0 220px;}@media (max-width: 1366px){#tcm-admin-configurator .tvd-collapsible .tcm-message-box>div:not(.tcm-thrivebox-only):nth-child(3).social-sharing-checkboxes .sharing-div span{width:105px;display:inline-block;}}#tcm-admin-configurator .tvd-collapsible .tcm-message-box textarea{background-color:#fff;min-height:90px;padding:10px 15px 0;margin-bottom:10px;color:#666;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .icon{width:25px;height:25px;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/link-smiley-d-h.png") no-repeat top left;cursor:pointer;position:absolute;right:20px;bottom:45px;margin:0;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .icon.nitro-lazy{background-image:none !important;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .icon:hover{background-position:top right;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown{box-shadow:0 3px 5px rgba(0,0,0,.1);color:#a9a9a9;width:250px;z-index:9999;right:5px;margin:12px -205px 0 0;bottom:32%;font-size:14px;background-color:#fff;padding:20px;border-radius:3px;position:absolute;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown #hyperlink-error{margin:0 0 5px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown .hyper-span{margin:0 0 5px;display:inline-block;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown:before{height:0;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);border-top:8px solid #fff;content:"";width:0;position:absolute;top:100%;left:10px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown:after{content:"";display:table;clear:both;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown input,#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown button,#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown label{transition:none;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown input{font-size:14px;padding:0 5px;background-color:#fff;border-radius:5px;margin:0 0 10px;border:1px solid #a3a3a3;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown input:focus{border-bottom-color:#0dbf9f;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown input.ui-autocomplete-loading{background-position:185px center;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown input[type=checkbox]:checked+label:after{background-color:#0dbf9f !important;border-color:#0dbf9f !important;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown label{color:#a9a9a9;margin:0 0 4px;font-size:14px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown button{min-height:32px;line-height:32px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown button.hyperlink-close{background-color:rgba(169,169,169,.2) !important;color:#a7a7a7 !important;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .dropdown button.hyperlink-save{background-color:#0dbf9f;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box#tab-2 span label{padding:0 15px 0 25px;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .tcm-thrivebox,#tcm-admin-configurator .tvd-collapsible .tcm-message-box .tcm-redirect-massage{font-size:12px;position:relative;display:inline-block;padding-left:20px;color:#a5a5a5;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .tcm-thrivebox a,#tcm-admin-configurator .tvd-collapsible .tcm-message-box .tcm-redirect-massage a{color:inherit;text-decoration:underline;}#tcm-admin-configurator .tvd-collapsible .tcm-message-box .tcm-thrivebox:before,#tcm-admin-configurator .tvd-collapsible .tcm-message-box .tcm-redirect-massage:before{content:"";background:#f7f7f7 url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-error.png") no-repeat center/15px;-webkit-filter:grayscale(100%);filter:grayscale(100%);width:15px;position:absolute;top:0;bottom:0;left:0;opacity:.5;}#active_commenters_graph{padding:25px 32px 30px;background-color:#fff;font-size:13px;}#active_commenters_graph .reporting-nav-container{float:right;position:relative;top:2px;}#active_commenters_graph .reporting-nav-container p{font-size:14px;}#active_commenters_graph .reporting-nav-container a{font-size:13px;margin:0 0 0 10px;}#active_commenters_graph .tcm-reports-pagination p strong{font-size:14px;}#active_commenters_graph .tcm-reports-pagination{margin:0 0 0 40%;display:inline;}#active_commenters_graph .tcm-reports-pagination div{display:inline-block;width:45px;position:relative;top:-2px;margin:0 0 0 10px;}#active_commenters_graph p{display:inline;margin:0;}#active_commenters_graph .select2-container{width:inherit !important;margin:0;}#active_commenters_graph .most-header{border-bottom:1px solid #e0e0e0;padding:0 0 15px 0;}#active_commenters_graph .most-header:after{content:"";display:table;clear:both;}#active_commenters_graph .most-header span{width:20%;float:left;}#active_commenters_graph #most_active_commenters div{border-bottom:1px solid #e0e0e0;padding:15px 0;display:flex;}#active_commenters_graph #most_active_commenters div span{width:20%;display:inline-block;}#active_commenters_graph #most_active_commenters div span:nth-child(2){padding-right:20px;word-wrap:break-word;}#active_commenters_graph #most_active_commenters div:last-of-type{margin-bottom:32px;}#tcm-reporting #tcm-reporting-autocomplete{position:relative;}#tcm-reporting #tcm-reporting-autocomplete input{margin:0;}#tcm-reporting #tcm-reporting-autocomplete input:focus{border-bottom-color:#03a88a;box-shadow:0 1px 0 0 #03a88a;}#tcm-reporting #tcm-reporting-autocomplete label{color:#a3a3a3;}#tcm-reporting #tcm-reporting-autocomplete .clear-post-autocomplete{cursor:pointer;position:absolute;right:15px;bottom:5px;display:none;}#tcm-reporting .custom-range-date label{color:#a3a3a3;}#tcm-reporting .tcm-reporting-filter-section{background-color:#fff;padding:20px;margin:20px 0;}#tcm-reporting .tvd-row{font-size:12px !important;}#tcm-reporting .tvd-row .tvd-col.tvd-m2{width:14.2857142857%;}#tcm-reporting .tvd-row .tvd-col.tvd-m2.custom-range-date{position:relative;top:-5px;}#tcm-reporting .tvd-row .tvd-col.tvd-m2 .tcm-incl-excl-moderators label{font-size:12px;font-weight:500;color:#aeaeae;}#tcm-reporting .tvd-row .tvd-col.tvd-m2 .tcm-incl-excl-moderators label span{margin:13px 0 0 5px;}#tcm-reporting .custom-range-date{margin-top:16px;}#tcm-reporting .custom-range-date input{margin-bottom:0;}#tcm-reporting .tvd-row,#tcm-reporting .select2-container{margin:0;}#tcm-display-report-parent{position:relative;min-height:400px;}#tcm-display-report-parent #tcm-display-report{padding:25px 0 30px;background-color:#fff;}#tcm-display-report-parent .tcm-no-data-report{position:absolute;left:0;right:0;top:0;bottom:0;background-color:#fff;text-align:center;padding-top:8%;}#wpcontent svg{width:25px;height:25px;}#wpcontent .highcharts-container svg{width:100%;height:auto;}#wpcontent #tcm-admin-wrapper{margin:0 0 0 -20px;}#wpcontent #tcm-admin-wrapper #tcm-header{width:100%;color:#fff;font-size:20px;}#wpcontent #tcm-admin-wrapper #tcm-header #tcm-nav{background-color:#0dbf9f;padding:30px 35px 30px;height:auto;line-height:normal;}#wpcontent #tcm-admin-wrapper #tcm-header #tcm-nav .tcm-nav-svg{position:relative;top:8px;}#wpcontent #tcm-admin-wrapper #tcm-header #tcm-nav svg.tc-logo-dashboard{width:40px;height:30px;}#wpcontent #tcm-admin-wrapper #tcm-header div{position:relative;top:-7px;}#wpcontent #tcm-admin-wrapper #tcm-header div,#wpcontent #tcm-admin-wrapper #tcm-header a{color:#fff;font-weight:100;}#wpcontent #tcm-admin-wrapper #tcm-header div img,#wpcontent #tcm-admin-wrapper #tcm-header a img{width:45px;vertical-align:middle;}#wpcontent #tcm-admin-wrapper #tcm-header div strong,#wpcontent #tcm-admin-wrapper #tcm-header a strong{font-weight:700;}#wpcontent #tcm-admin-wrapper #tcm-holder{position:relative;min-height:800px;overflow:hidden;}#wpcontent #tcm-admin-wrapper #tcm-holder input[type=checkbox]:checked+label:after{background-color:#03a88a;border:2px solid #03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator{position:relative;width:calc(100% - 460px);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tcm-disabled{opacity:.5;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator>ul{margin:0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header{background-color:#fff;margin:0;padding:20px 35px;-moz-box-shadow:inset 0 -5px 5px -15px rgba(192,192,192,.5);-webkit-box-shadow:inset 0 -5px 5px -15px rgba(192,192,192,.5);box-shadow:inset 0 -5px 5px -15px rgba(192,192,192,.5);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header .tc-options-svg{position:relative;top:5px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header svg.comment-conversion-icon{width:32px;height:25px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header h2{color:#03a88a;font-weight:400;margin:0;font-size:20px;display:inline-block;padding-left:21px;line-height:25px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header h2.tcm-icon-general_settings_icon{padding:0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header h2.tcm-icon-general_settings_icon:before{font-size:25px;vertical-align:middle;margin-right:20px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header .comment-conversion-heading{padding-left:13px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header .tcm-icon-keyboard_arrow_down{font-size:34px;line-height:1.5em;color:#03a88a;display:inline-block;-moz-transition:all 500ms ease;-webkit-transition:all 500ms ease;-o-transition:all 500ms ease;transition:all 500ms ease;float:right;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header:hover{background-color:#e5f4f3;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:all 500ms linear;-ms-transition:all 500ms linear;transition:all 500ms linear;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header.tvd-active{background-color:#e5f4f3;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;border:none;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-header.tvd-active .tcm-icon-keyboard_arrow_down{-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body{padding:30px 35px;background-color:#fff;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .notification-label{color:#03a88a;font-size:18px;margin:0 0 22px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .notification-label span.tooltipelem{color:#919099;position:relative;font-size:18px;top:3px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .notification-label span.tooltipelem:hover{color:#0dbf9f;cursor:pointer;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .notification-label span.tooltipelem:hover .tooltiptext{display:block;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .notification-label span.tooltipelem .tooltiptext{display:none;white-space:nowrap;text-decoration:none;font-weight:400;background-color:rgba(0,0,0,.9);color:#fff;text-align:center;border-radius:3px;padding:10px 25px;font-size:14px;position:absolute;z-index:100;bottom:calc(100% + 8px);left:50%;transform:translateX(-50%);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .notification-label span.tooltipelem .tooltiptext:before{content:"";width:0;height:0;position:absolute;top:100%;left:50%;transform:translateX(-50%);border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-top:7px solid rgba(0,0,0,.9);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tve-form-add-new-connection:after{content:"";display:table;clear:both;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder{width:40%;border:1px solid #d0d0d0;border-radius:5px;font-size:14px;padding:0 20px;float:left;margin:10px 20px 10px 0;overflow:hidden;position:relative;height:80px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder p{color:#666;font-weight:500;max-width:85%;font-size:14px;margin:0;line-height:80px;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/notif-comm.png") no-repeat left center;padding-left:55px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder p.nitro-lazy{background-image:none !important;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder p.tcm-ccn{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/notif-reply.png") no-repeat left center;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder p.tcm-ccn.nitro-lazy{background-image:none !important;}@media (max-width: 1366px){#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder p{background:none !important;padding:0;max-width:100%;}}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder .tcm-link-controls{display:none;position:absolute;top:10px;right:10px;font-size:16px;color:#9fadae;cursor:default;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder .tcm-link-controls .tcm-icon-mode_edit:hover{color:#03a88a;cursor:pointer;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder:hover{border-color:#6bd1bf;box-shadow:0 2px 5px 0 rgba(107,209,191,.5);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-rounded-holder:hover .tcm-link-controls{display:block;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .add-new-area{margin-bottom:25px;width:calc(80% + 20px);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .add-new-area a{color:#b0b0b0;background-color:#f5f5f5;border:1px dashed #d0d0d0;font-size:18px;text-align:center;height:65px;line-height:65px;text-decoration:none;display:block;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .add-new-area a:before{font-size:30px;position:relative;top:6px;margin:0 6px 0 0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .add-new-area a:hover{color:#6d6d6d;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card{height:63px;border:1px solid #ddd;background-color:#fff;width:calc(80% + 20px);overflow:hidden;display:flex;align-items:center;padding:0 10px;margin-bottom:5px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card:hover{border-color:#03a88a;box-shadow:0 1px 3px rgba(0,0,0,.25);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card .connection-img img{border-radius:50%;vertical-align:middle;width:30px;height:30px;margin-right:10px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card .tcm-config-field{width:calc(80% - 40px);margin:0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card .tcm-config-field label{font-weight:600;font-size:14px;color:#acacac;position:relative;top:3px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card .tcm-config-field p{display:inline-block;margin:0 0 0 65px;font-size:14px;color:#acacac;font-weight:600;position:relative;top:4px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card .tcm-config-field p.active{color:#009688;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card .connection-title{width:20%;display:inline-block;font-size:14px;color:#393939;font-weight:600;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card>a{color:#acacac;margin-right:10px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body.tcm-notifications .tcm-notification-card>a:hover{color:#009688;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .cache-error{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-error.png") center left 30px no-repeat;margin:-30px -35px 0;padding:35px 35px 35px 75px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .cache-error.nitro-lazy{background-image:none !important;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .cache-error.extra-cache-class{background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-error.png") center left no-repeat;padding:0 0 0 30px;margin:15px 0 0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .cache-error.extra-cache-class.nitro-lazy{background-image:none !important;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body p{padding:0;font-size:inherit;color:#333;font-weight:400;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body p.tcm-title-line{color:#03a88a;font-size:18px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tvd-switch{min-height:30px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tvd-switch label input[type=checkbox]:checked+.tvd-lever:after{background-color:#03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field{margin:25px 0 25px 0;clear:both;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-field-colorpicker{position:relative;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-field-colorpicker .color-picker-label,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-field-colorpicker .color-picker-text{width:20px;height:20px;float:left;position:relative;top:5px;margin-right:5px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-field-colorpicker .color-picker-text{width:100px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-field-colorpicker #color-picker{width:100px;margin:0 auto;text-align:center;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-field-colorpicker input[type=text]#color-picker:focus:not([readonly]){border-bottom:1px solid #03a88a;box-shadow:0 1px 0 0 #03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-field-colorpicker .color-picker-container{position:absolute;z-index:20;top:50px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .keywords-container{overflow:hidden;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #close_comments_days_old,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #comments_per_page,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #tcm_live_update_refresh_rate{margin:0 10px;text-align:center;width:60px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #close_comments_days_old:focus,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #comments_per_page:focus,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #tcm_live_update_refresh_rate:focus{border-color:#03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.tcm-extra-styling{clear:both;margin:0;padding-top:18px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #comment_max_links{width:50px;margin:0 5px;text-align:center;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #comment_max_links:focus{border-color:#03a88a;box-shadow:0 1px 0 0 #03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #moderation_keys,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #blacklist_keys{margin:20px 0 0;height:90px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #moderation_keys:focus,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field #blacklist_keys:focus{border-color:#03a88a;box-shadow:0 0 2px #03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field label{font-size:16px;color:#333;font-weight:400;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tvd-switch label{color:#999;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field input[type=number].small-text{-moz-appearance:textfield;margin:0;width:40px;text-align:center;font-weight:500;border-bottom-color:#dbdbdb;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field input[type=number].small-text:focus{border-bottom:1px solid #009688;box-shadow:0 1px 0 0 #009688;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field input[type=radio]:checked+label:before{border-color:#009688;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field input[type=radio]:checked+label span{color:#009688;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field input[type=radio]:checked+label:after{border-color:#009688;background-color:#009688;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .select2-container{width:auto !important;min-width:110px;margin:0 0 0 15px;color:#766b61;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .select2-container.select2-container--default.select2-container--open .select2-selection--single{border-bottom-color:#009688;box-shadow:0 1px 0 0 #009688;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .select2-container.select2-container--default .select2-selection--single{transition:all .3s;border-bottom-color:#dbdbdb;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#766b61 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .select2-container.select2-container--default.select2-container--open .select2-selection__arrow b{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #766b61 rgba(0,0,0,0);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tvd-switch{display:inline-block;margin-left:25px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcb-avatar-selection{margin-top:25px;overflow:hidden;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcb-avatar-selection div.tcm-upload-image{width:100px;height:100px;display:inline-block;background-position:center;margin:0 50px 10px 0;border-radius:50px;background-size:cover;background-repeat:no-repeat;float:left;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcb-avatar-selection .tcm-actions{display:inline;vertical-align:middle;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcb-avatar-selection .tcm-actions button{padding:0 2rem;margin-bottom:20px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcb-avatar-selection .tcm-actions button.tvd-btn-green{background-color:#03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcb-avatar-selection .tcm-actions p{color:#999;font-weight:500;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcb-avatar-selection .tcm-actions .tcm-upload-image{margin-right:20px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder{padding:0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder:hover{border-color:#ef3131;box-shadow:0 2px 5px 0 rgba(239,49,49,.5);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card{display:block;margin:0;max-height:200px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card .tvd-card-content{padding:20px 20px 0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card .tvd-card-content h4{margin:0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card .tvd-card-action{padding:0 20px 20px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card .tvd-button-holder{width:50%;float:left;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card .tvd-button-holder a{color:rgba(255,255,255,.8);width:100%;text-align:center;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card .tvd-button-holder a:hover{color:#fff;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .red-moderation-container .tcm-rounded-holder .tvd-card .tvd-button-holder a:before{content:"";}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder{width:40%;border:1px solid #d0d0d0;border-radius:5px;font-size:14px;padding:15px 20px;float:left;margin:10px 20px 10px 0;overflow:hidden;position:relative;height:90px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder p{color:#03a88a;font-weight:500;max-width:85%;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-link.png") no-repeat left 10px;padding:0 0 12px 20px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder p.nitro-lazy{background-image:none !important;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder a{color:#b0b0b0;padding-left:20px;position:relative;width:270px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-content/plugins/thrive-comments/assets/images/tcm-link02.png") no-repeat left 4px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder a.nitro-lazy{background-image:none !important;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder .tcm-link-controls{display:none;position:absolute;top:10px;right:10px;font-size:16px;color:#9fadae;cursor:default;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder .tcm-link-controls .tcm-icon-trash-o:hover,#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder .tcm-link-controls .tcm-icon-mode_edit:hover{color:#03a88a;cursor:pointer;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder .tcm-link-controls .tcm-icon-trash-o{margin-right:5px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder:hover{border-color:#6bd1bf;box-shadow:0 2px 5px 0 rgba(107,209,191,.5);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder:hover .tcm-link-controls{display:block;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder:hover.tcm-new-link{border:1px dashed #d0d0d0;box-shadow:none;cursor:pointer;color:#8a8a8a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder.tcm-new-link{color:#b0b0b0;background-color:#f5f5f5;border:1px dashed #d0d0d0;padding:22px 0 0;text-align:center;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder.tcm-new-link span{font-size:30px;vertical-align:middle;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-rounded-holder.tcm-new-link span:last-child{font-size:18px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-comment-moderation label{margin-right:50px;}@media (max-width: 1366px){#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-comment-moderation label{width:200px;}}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-grey-label{color:#999;margin-right:40px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-grey-label:before{border-color:#333;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-grey-label span{color:#333;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field .tcm-mt{margin-top:30px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-config-field.no-margin{margin:0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-lazy-load label{display:inline-block;min-width:200px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator .tvd-collapsible-body .tcm-lazy-load .tvd-switch label{min-width:auto;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-admin-configurator button:not(.tvd-btn-gray){background-color:#03a88a;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview{background-color:#f1f1f1;height:100vh;position:absolute;right:0;top:0;width:460px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview.sticky{position:fixed;top:32px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header{height:44px;background-color:#38615a;position:relative;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header .icon-box-position{right:100%;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header a{display:block;float:left;height:100%;line-height:44px;width:20px;background-color:#22453f;transition:all .5s;position:absolute;right:calc(100% - 20px);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header a span{color:#bec8c6;-moz-transition:all 500ms ease;-webkit-transition:all 500ms ease;-o-transition:all 500ms ease;transition:all 500ms ease;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header a span:before{transform:rotate(270deg);display:inline-block;position:relative;left:0;top:3px;font-size:20px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header a span.icon-variation:before{transform:rotate(90deg);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header p{text-transform:uppercase;color:#fff;font-size:10px;letter-spacing:1.5px;line-height:44px;margin:0 0 0 30px;display:block;overflow:hidden;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header p span.color-var{color:rgba(255,255,255,.5);}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header p span[class^=size-]{color:#839794;cursor:pointer;width:35px;height:44px;display:inline-block;position:absolute;right:0;opacity:.5;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header p span[class^=size-].size-l{right:36px;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header p span[class^=size-].size-l:before{width:35px;text-align:center;font-size:20px;display:block;padding:12px 0 0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header p span[class^=size-].size-s:before{width:35px;text-align:center;font-size:20px;display:block;padding:12px 0 0;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview #tcm-preview-header p span[class^=size-].active{background-color:rgba(0,0,0,.25);opacity:1;}#wpcontent #tcm-admin-wrapper #tcm-holder #tcm-live-preview iframe{width:165%;height:1111px;transform:scale(.6);transform-origin:left top;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal{max-width:80%;max-height:80%;border-radius:5px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content{padding:0;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content:after{height:25px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content label.tcm-modal-label{cursor:inherit;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tcm-modal-header,#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tcm-modal-body{padding:30px 30px 0;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tcm-modal-body{padding:30px 15px 30px 30px;max-height:55vh;overflow-y:scroll;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .labels-footer{padding:0 30px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content h2{font-size:22px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row{line-height:35px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row:nth-child(6),#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row:nth-child(12),#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row:nth-child(16),#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row:nth-child(23),#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row:nth-child(27){margin-bottom:40px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-s6:nth-child(1){text-align:right;padding-right:30px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-s6:nth-child(1) .tcm-modal-label{color:#999;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-m6{padding:0;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-col.tvd-m6 input{margin:-5px 0 1rem 0;font-weight:500;color:#393939;font-size:16px;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-col.tvd-m6 input:focus{border-bottom:1px solid #0dbf9f;box-shadow:0 1px 0 0 #0dbf9f;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-col.tvd-m6 ::-webkit-input-placeholder{color:#766b61;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-col.tvd-m6 ::-moz-placeholder{color:#766b61;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-col.tvd-m6 :-ms-input-placeholder{color:#766b61;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tvd-row .tvd-col.tvd-m6 :-moz-placeholder{color:#766b61;}#wpcontent #tcm-admin-wrapper #tcm-holder .tvd-modal .tvd-modal-content#tcm-modal-content .tcm-m50{margin:25px 0;overflow:hidden;}#wpcontent #tcm-admin-wrapper #tcm-holder input::-webkit-outer-spin-button,#wpcontent #tcm-admin-wrapper #tcm-holder input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}#wpcontent #tcm-admin-wrapper #tcm-holder input[type=checkbox].filled-in:checked+label:after,#wpcontent #tcm-admin-wrapper #tcm-holder input[type=checkbox].filled-in:checked+label:before,#wpcontent #tcm-admin-wrapper #tcm-holder [type=checkbox].filled-in:not(:checked)+label:after{top:3px;}#tcb_landing_page #thrive-comments img.wp-smiley,#tcb_landing_page #thrive-comments img.emoji{display:inline !important;border:none !important;box-shadow:none !important;height:1em !important;width:1em !important;margin:0 .07em !important;vertical-align:-.1em !important;background:none !important;padding:0 !important;}.dashicons,.dashicons-before:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:never;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:20px;vertical-align:top;text-align:center;transition:color .1s ease-in;}.dashicons-admin-appearance:before{content:"";}.dashicons-admin-collapse:before{content:"";}.dashicons-admin-comments:before{content:"";}.dashicons-admin-customizer:before{content:"";}.dashicons-admin-generic:before{content:"";}.dashicons-admin-home:before{content:"";}.dashicons-admin-links:before{content:"";}.dashicons-admin-media:before{content:"";}.dashicons-admin-multisite:before{content:"";}.dashicons-admin-network:before{content:"";}.dashicons-admin-page:before{content:"";}.dashicons-admin-plugins:before{content:"";}.dashicons-admin-post:before{content:"";}.dashicons-admin-settings:before{content:"";}.dashicons-admin-site-alt:before{content:"";}.dashicons-admin-site-alt2:before{content:"";}.dashicons-admin-site-alt3:before{content:"";}.dashicons-admin-site:before{content:"";}.dashicons-admin-tools:before{content:"";}.dashicons-admin-users:before{content:"";}.dashicons-airplane:before{content:"";}.dashicons-album:before{content:"";}.dashicons-align-center:before{content:"";}.dashicons-align-full-width:before{content:"";}.dashicons-align-left:before{content:"";}.dashicons-align-none:before{content:"";}.dashicons-align-pull-left:before{content:"";}.dashicons-align-pull-right:before{content:"";}.dashicons-align-right:before{content:"";}.dashicons-align-wide:before{content:"";}.dashicons-amazon:before{content:"";}.dashicons-analytics:before{content:"";}.dashicons-archive:before{content:"";}.dashicons-arrow-down-alt:before{content:"";}.dashicons-arrow-down-alt2:before{content:"";}.dashicons-arrow-down:before{content:"";}.dashicons-arrow-left-alt:before{content:"";}.dashicons-arrow-left-alt2:before{content:"";}.dashicons-arrow-left:before{content:"";}.dashicons-arrow-right-alt:before{content:"";}.dashicons-arrow-right-alt2:before{content:"";}.dashicons-arrow-right:before{content:"";}.dashicons-arrow-up-alt:before{content:"";}.dashicons-arrow-up-alt2:before{content:"";}.dashicons-arrow-up-duplicate:before{content:"";}.dashicons-arrow-up:before{content:"";}.dashicons-art:before{content:"";}.dashicons-awards:before{content:"";}.dashicons-backup:before{content:"";}.dashicons-bank:before{content:"";}.dashicons-beer:before{content:"";}.dashicons-bell:before{content:"";}.dashicons-block-default:before{content:"";}.dashicons-book-alt:before{content:"";}.dashicons-book:before{content:"";}.dashicons-buddicons-activity:before{content:"";}.dashicons-buddicons-bbpress-logo:before{content:"";}.dashicons-buddicons-buddypress-logo:before{content:"";}.dashicons-buddicons-community:before{content:"";}.dashicons-buddicons-forums:before{content:"";}.dashicons-buddicons-friends:before{content:"";}.dashicons-buddicons-groups:before{content:"";}.dashicons-buddicons-pm:before{content:"";}.dashicons-buddicons-replies:before{content:"";}.dashicons-buddicons-topics:before{content:"";}.dashicons-buddicons-tracking:before{content:"";}.dashicons-building:before{content:"";}.dashicons-businessman:before{content:"";}.dashicons-businessperson:before{content:"";}.dashicons-businesswoman:before{content:"";}.dashicons-button:before{content:"";}.dashicons-calculator:before{content:"";}.dashicons-calendar-alt:before{content:"";}.dashicons-calendar:before{content:"";}.dashicons-camera-alt:before{content:"";}.dashicons-camera:before{content:"";}.dashicons-car:before{content:"";}.dashicons-carrot:before{content:"";}.dashicons-cart:before{content:"";}.dashicons-category:before{content:"";}.dashicons-chart-area:before{content:"";}.dashicons-chart-bar:before{content:"";}.dashicons-chart-line:before{content:"";}.dashicons-chart-pie:before{content:"";}.dashicons-clipboard:before{content:"";}.dashicons-clock:before{content:"";}.dashicons-cloud-saved:before{content:"";}.dashicons-cloud-upload:before{content:"";}.dashicons-cloud:before{content:"";}.dashicons-code-standards:before{content:"";}.dashicons-coffee:before{content:"";}.dashicons-color-picker:before{content:"";}.dashicons-columns:before{content:"";}.dashicons-controls-back:before{content:"";}.dashicons-controls-forward:before{content:"";}.dashicons-controls-pause:before{content:"";}.dashicons-controls-play:before{content:"";}.dashicons-controls-repeat:before{content:"";}.dashicons-controls-skipback:before{content:"";}.dashicons-controls-skipforward:before{content:"";}.dashicons-controls-volumeoff:before{content:"";}.dashicons-controls-volumeon:before{content:"";}.dashicons-cover-image:before{content:"";}.dashicons-dashboard:before{content:"";}.dashicons-database-add:before{content:"";}.dashicons-database-export:before{content:"";}.dashicons-database-import:before{content:"";}.dashicons-database-remove:before{content:"";}.dashicons-database-view:before{content:"";}.dashicons-database:before{content:"";}.dashicons-desktop:before{content:"";}.dashicons-dismiss:before{content:"";}.dashicons-download:before{content:"";}.dashicons-drumstick:before{content:"";}.dashicons-edit-large:before{content:"";}.dashicons-edit-page:before{content:"";}.dashicons-edit:before{content:"";}.dashicons-editor-aligncenter:before{content:"";}.dashicons-editor-alignleft:before{content:"";}.dashicons-editor-alignright:before{content:"";}.dashicons-editor-bold:before{content:"";}.dashicons-editor-break:before{content:"";}.dashicons-editor-code-duplicate:before{content:"";}.dashicons-editor-code:before{content:"";}.dashicons-editor-contract:before{content:"";}.dashicons-editor-customchar:before{content:"";}.dashicons-editor-expand:before{content:"";}.dashicons-editor-help:before{content:"";}.dashicons-editor-indent:before{content:"";}.dashicons-editor-insertmore:before{content:"";}.dashicons-editor-italic:before{content:"";}.dashicons-editor-justify:before{content:"";}.dashicons-editor-kitchensink:before{content:"";}.dashicons-editor-ltr:before{content:"";}.dashicons-editor-ol-rtl:before{content:"";}.dashicons-editor-ol:before{content:"";}.dashicons-editor-outdent:before{content:"";}.dashicons-editor-paragraph:before{content:"";}.dashicons-editor-paste-text:before{content:"";}.dashicons-editor-paste-word:before{content:"";}.dashicons-editor-quote:before{content:"";}.dashicons-editor-removeformatting:before{content:"";}.dashicons-editor-rtl:before{content:"";}.dashicons-editor-spellcheck:before{content:"";}.dashicons-editor-strikethrough:before{content:"";}.dashicons-editor-table:before{content:"";}.dashicons-editor-textcolor:before{content:"";}.dashicons-editor-ul:before{content:"";}.dashicons-editor-underline:before{content:"";}.dashicons-editor-unlink:before{content:"";}.dashicons-editor-video:before{content:"";}.dashicons-ellipsis:before{content:"";}.dashicons-email-alt:before{content:"";}.dashicons-email-alt2:before{content:"";}.dashicons-email:before{content:"";}.dashicons-embed-audio:before{content:"";}.dashicons-embed-generic:before{content:"";}.dashicons-embed-photo:before{content:"";}.dashicons-embed-post:before{content:"";}.dashicons-embed-video:before{content:"";}.dashicons-excerpt-view:before{content:"";}.dashicons-exit:before{content:"";}.dashicons-external:before{content:"";}.dashicons-facebook-alt:before{content:"";}.dashicons-facebook:before{content:"";}.dashicons-feedback:before{content:"";}.dashicons-filter:before{content:"";}.dashicons-flag:before{content:"";}.dashicons-food:before{content:"";}.dashicons-format-aside:before{content:"";}.dashicons-format-audio:before{content:"";}.dashicons-format-chat:before{content:"";}.dashicons-format-gallery:before{content:"";}.dashicons-format-image:before{content:"";}.dashicons-format-quote:before{content:"";}.dashicons-format-status:before{content:"";}.dashicons-format-video:before{content:"";}.dashicons-forms:before{content:"";}.dashicons-fullscreen-alt:before{content:"";}.dashicons-fullscreen-exit-alt:before{content:"";}.dashicons-games:before{content:"";}.dashicons-google:before{content:"";}.dashicons-googleplus:before{content:"";}.dashicons-grid-view:before{content:"";}.dashicons-groups:before{content:"";}.dashicons-hammer:before{content:"";}.dashicons-heading:before{content:"";}.dashicons-heart:before{content:"";}.dashicons-hidden:before{content:"";}.dashicons-hourglass:before{content:"";}.dashicons-html:before{content:"";}.dashicons-id-alt:before{content:"";}.dashicons-id:before{content:"";}.dashicons-image-crop:before{content:"";}.dashicons-image-filter:before{content:"";}.dashicons-image-flip-horizontal:before{content:"";}.dashicons-image-flip-vertical:before{content:"";}.dashicons-image-rotate-left:before{content:"";}.dashicons-image-rotate-right:before{content:"";}.dashicons-image-rotate:before{content:"";}.dashicons-images-alt:before{content:"";}.dashicons-images-alt2:before{content:"";}.dashicons-index-card:before{content:"";}.dashicons-info-outline:before{content:"";}.dashicons-info:before{content:"";}.dashicons-insert-after:before{content:"";}.dashicons-insert-before:before{content:"";}.dashicons-insert:before{content:"";}.dashicons-instagram:before{content:"";}.dashicons-laptop:before{content:"";}.dashicons-layout:before{content:"";}.dashicons-leftright:before{content:"";}.dashicons-lightbulb:before{content:"";}.dashicons-linkedin:before{content:"";}.dashicons-list-view:before{content:"";}.dashicons-location-alt:before{content:"";}.dashicons-location:before{content:"";}.dashicons-lock-duplicate:before{content:"";}.dashicons-lock:before{content:"";}.dashicons-marker:before{content:"";}.dashicons-media-archive:before{content:"";}.dashicons-media-audio:before{content:"";}.dashicons-media-code:before{content:"";}.dashicons-media-default:before{content:"";}.dashicons-media-document:before{content:"";}.dashicons-media-interactive:before{content:"";}.dashicons-media-spreadsheet:before{content:"";}.dashicons-media-text:before{content:"";}.dashicons-media-video:before{content:"";}.dashicons-megaphone:before{content:"";}.dashicons-menu-alt:before{content:"";}.dashicons-menu-alt2:before{content:"";}.dashicons-menu-alt3:before{content:"";}.dashicons-menu:before{content:"";}.dashicons-microphone:before{content:"";}.dashicons-migrate:before{content:"";}.dashicons-minus:before{content:"";}.dashicons-money-alt:before{content:"";}.dashicons-money:before{content:"";}.dashicons-move:before{content:"";}.dashicons-nametag:before{content:"";}.dashicons-networking:before{content:"";}.dashicons-no-alt:before{content:"";}.dashicons-no:before{content:"";}.dashicons-open-folder:before{content:"";}.dashicons-palmtree:before{content:"";}.dashicons-paperclip:before{content:"";}.dashicons-pdf:before{content:"";}.dashicons-performance:before{content:"";}.dashicons-pets:before{content:"";}.dashicons-phone:before{content:"";}.dashicons-pinterest:before{content:"";}.dashicons-playlist-audio:before{content:"";}.dashicons-playlist-video:before{content:"";}.dashicons-plugins-checked:before{content:"";}.dashicons-plus-alt:before{content:"";}.dashicons-plus-alt2:before{content:"";}.dashicons-plus:before{content:"";}.dashicons-podio:before{content:"";}.dashicons-portfolio:before{content:"";}.dashicons-post-status:before{content:"";}.dashicons-pressthis:before{content:"";}.dashicons-printer:before{content:"";}.dashicons-privacy:before{content:"";}.dashicons-products:before{content:"";}.dashicons-randomize:before{content:"";}.dashicons-reddit:before{content:"";}.dashicons-redo:before{content:"";}.dashicons-remove:before{content:"";}.dashicons-rest-api:before{content:"";}.dashicons-rss:before{content:"";}.dashicons-saved:before{content:"";}.dashicons-schedule:before{content:"";}.dashicons-screenoptions:before{content:"";}.dashicons-search:before{content:"";}.dashicons-share-alt:before{content:"";}.dashicons-share-alt2:before{content:"";}.dashicons-share:before{content:"";}.dashicons-shield-alt:before{content:"";}.dashicons-shield:before{content:"";}.dashicons-shortcode:before{content:"";}.dashicons-slides:before{content:"";}.dashicons-smartphone:before{content:"";}.dashicons-smiley:before{content:"";}.dashicons-sort:before{content:"";}.dashicons-sos:before{content:"";}.dashicons-spotify:before{content:"";}.dashicons-star-empty:before{content:"";}.dashicons-star-filled:before{content:"";}.dashicons-star-half:before{content:"";}.dashicons-sticky:before{content:"";}.dashicons-store:before{content:"";}.dashicons-superhero-alt:before{content:"";}.dashicons-superhero:before{content:"";}.dashicons-table-col-after:before{content:"";}.dashicons-table-col-before:before{content:"";}.dashicons-table-col-delete:before{content:"";}.dashicons-table-row-after:before{content:"";}.dashicons-table-row-before:before{content:"";}.dashicons-table-row-delete:before{content:"";}.dashicons-tablet:before{content:"";}.dashicons-tag:before{content:"";}.dashicons-tagcloud:before{content:"";}.dashicons-testimonial:before{content:"";}.dashicons-text-page:before{content:"";}.dashicons-text:before{content:"";}.dashicons-thumbs-down:before{content:"";}.dashicons-thumbs-up:before{content:"";}.dashicons-tickets-alt:before{content:"";}.dashicons-tickets:before{content:"";}.dashicons-tide:before{content:"";}.dashicons-translation:before{content:"";}.dashicons-trash:before{content:"";}.dashicons-twitch:before{content:"";}.dashicons-twitter-alt:before{content:"";}.dashicons-twitter:before{content:"";}.dashicons-undo:before{content:"";}.dashicons-universal-access-alt:before{content:"";}.dashicons-universal-access:before{content:"";}.dashicons-unlock:before{content:"";}.dashicons-update-alt:before{content:"";}.dashicons-update:before{content:"";}.dashicons-upload:before{content:"";}.dashicons-vault:before{content:"";}.dashicons-video-alt:before{content:"";}.dashicons-video-alt2:before{content:"";}.dashicons-video-alt3:before{content:"";}.dashicons-visibility:before{content:"";}.dashicons-warning:before{content:"";}.dashicons-welcome-add-page:before{content:"";}.dashicons-welcome-comments:before{content:"";}.dashicons-welcome-learn-more:before{content:"";}.dashicons-welcome-view-site:before{content:"";}.dashicons-welcome-widgets-menus:before{content:"";}.dashicons-welcome-write-blog:before{content:"";}.dashicons-whatsapp:before{content:"";}.dashicons-wordpress-alt:before{content:"";}.dashicons-wordpress:before{content:"";}.dashicons-xing:before{content:"";}.dashicons-yes-alt:before{content:"";}.dashicons-yes:before{content:"";}.dashicons-youtube:before{content:"";}.dashicons-editor-distractionfree:before{content:"";}.dashicons-exerpt-view:before{content:"";}.dashicons-format-links:before{content:"";}.dashicons-format-standard:before{content:"";}.dashicons-post-trash:before{content:"";}.dashicons-share1:before{content:"";}.dashicons-welcome-edit-page:before{content:"";}#wp-auth-check-wrap.hidden{display:none;}#wp-auth-check-wrap #wp-auth-check-bg{position:fixed;top:0;bottom:0;left:0;right:0;background:#000;opacity:.7;z-index:1000010;}#wp-auth-check-wrap #wp-auth-check{position:fixed;left:50%;overflow:hidden;top:40px;bottom:20px;max-height:415px;width:380px;margin:0 0 0 -190px;padding:30px 0 0;background-color:#f0f0f1;z-index:1000011;box-shadow:0 3px 6px rgba(0,0,0,.3);}@media screen and (max-width:380px){#wp-auth-check-wrap #wp-auth-check{left:0;width:100%;margin:0;}}#wp-auth-check-wrap.fallback #wp-auth-check{max-height:180px;overflow:auto;}#wp-auth-check-wrap #wp-auth-check-form{height:100%;position:relative;overflow:auto;-webkit-overflow-scrolling:touch;}#wp-auth-check-form.loading:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;margin:-10px 0 0 -10px;background:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-includes/images/spinner.gif") no-repeat center;background-size:20px 20px;transform:translateZ(0);}@media print,(min-resolution:120dpi){#wp-auth-check-form.loading:before{background-image:url("https://cdn-aieen.nitrocdn.com/NZHcjzJeBMtvWTlDVThcwjZlIOICKssU/assets/images/optimized/rev-2b41628/www.certapet.com/wp-includes/images/spinner-2x.gif");}}#wp-auth-check-wrap #wp-auth-check-form iframe{height:98%;width:100%;}#wp-auth-check-wrap .wp-auth-check-close{position:absolute;top:5px;right:5px;height:22px;width:22px;color:#787c82;text-decoration:none;text-align:center;}#wp-auth-check-wrap .wp-auth-check-close:before{content:"";font:normal 20px/22px dashicons;speak:never;-webkit-font-smoothing:antialiased !important;-moz-osx-font-smoothing:grayscale;}#wp-auth-check-wrap .wp-auth-check-close:focus,#wp-auth-check-wrap .wp-auth-check-close:hover{color:#2271b1;}#wp-auth-check-wrap .wp-auth-fallback-expired{outline:0;}#wp-auth-check-wrap .wp-auth-fallback{font-size:14px;line-height:1.5;padding:0 25px;display:none;}#wp-auth-check-wrap.fallback .wp-auth-check-close,#wp-auth-check-wrap.fallback .wp-auth-fallback{display:block;}