/**
 * This file will be included in header in every page after reboot.
 * It should be used for content that relates
 * to your site as a whole, it should not be used for plugin-specific css.
 */
html {
    overflow-y: scroll;
}

body > .contentRender {
    min-height: 100%;
    height: 100%;
}

/* This ensures that the page always has a scrollbar to ensure that some headers load correctly without FOUC */
html, body {
    height: 100%;
    font-family: var(--font-body);
    color: var(--sw-text-color);
}

body {
    background: var(--sw-body-bg);
}

@font-face {
    font-family: "PierSans-Light";
    src: url("/includes/client_public/assets/fonts/PierSans-Light.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PierSans-Regular";
    src: url("/includes/client_public/assets/fonts/PierSans-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PierSans-LightItalic";
    src: url("/includes/client_public/assets/fonts/PierSans-LightItalic.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PierSans-Italic";
    src: url("/includes/client_public/assets/fonts/PierSans-Italic.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PierSans-Semi-Bold";
    src: url("/includes/client_public/assets/fonts/PierSans-Regular.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: "PierSans-Bold";
    src: url("/includes/client_public/assets/fonts/PierSans-Bold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PierSans-BoldItalic";
    src: url("/includes/client_public/assets/fonts/PierSans-BoldItalic.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Skip links */
.skip-link[href] {
    z-index: 5000000;
    display: block;
    margin: 0;
    padding: var(--space-8) var(--space-12);
    width: auto;
    height: auto;
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    color: var(--gray-100);
    text-align: center;
    border: 4px dashed var(--gray-100);
    background: var(--gray-900);
    opacity: 0;
    clip: auto;
    white-space: normal;
    pointer-events: none;
    transition: opacity 200ms cubic-bezier(0,0,0.3,1);
}

.skip-link[href]:focus-visible {
    opacity: 1;
    pointer-events: all;
}

/* Set General max-width of site content */
.contentRender_name_plugins_core_textbox,
.contentRender_name_plugins_nav_sitemap,
.contentRender_name_plugins_search_results,
.contentRender_name_plugins_common_button,
.contentRender_name_plugins_collections_template_custom_list,
.contentRender_name_plugins_collections_template_custom_contacts,
.contentRender_name_plugins_blog_leisure_blog_posts,
.contentRender_name_plugins_blog_leisure_blog_en_posts,
.contentRender_name_plugins_blog_leisure_blog_fr_posts,
.contentRender_name_plugins_blog_leisure_blog_de_posts,
.contentRender_name_plugins_blog_articles_posts,
.contentRender_name_plugins_blog_articles_fr_posts,
.contentRender_name_plugins_blog_articles_de_posts,
.contentRender_name_plugins_blog_articles_en_posts,
.contentRender_name_plugins_crm_formbuilder,
.contentRender_name_plugins_events_submitevent,
.contentRender_name_plugins_crm_rfp,
.contentRender_name_plugins_crm_rsvp {
    width: 100%;
    padding: 0 var(--space-5);
    margin: 0 auto;
}

.contentRender_name_plugins_core_textbox {
    padding: var(--space-8) var(--space-5);
}

.contentRender_name_plugins_crm_dms_formbuilder {
	margin: 0 auto;
	max-width: var(--width-base);
}


.contentRender_name_plugins_crm_formbuilder,
.contentRender_name_plugins_events_submitevent,
.contentRender_name_plugins_crm_rfp,
.contentRender_name_plugins_crm_rsvp {
    max-width: var(--width-comfortable);
}

@media (min-width: 64em) {
    .contentRender_name_plugins_core_textbox,
    .contentRender_name_plugins_search_results,
    .contentRender_name_plugins_nav_sitemap,
    .contentRender_name_plugins_common_button,
    .contentRender_name_plugins_collections_template_custom_list,
    .contentRender_name_plugins_collections_template_custom_contacts {
        max-width: var(--width-base);
    }

}

/* Panels */
.panel-page {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100%;
}

.panel-navigation-share {
    display: flex;
	justify-content: flex-start;
	align-items: center;
	max-width: var(--width-base);
    padding: 0 var(--space-5);
    margin: 0 auto;
    margin-bottom: var(--space-8);
}

.panel-navigation-share .navigation-container { 
	display: none; 
}

.panel-navigation-share .share-container { 
	margin-left: auto;
}

.panel-intro {
    max-width: var(--width-comfortable);
    margin: 0 auto;
    margin-bottom: var(--space-16);
    padding: 0 var(--space-5);
}

.panel-social {
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.panel-social .title-container {
    text-align: center;
}

.panel-three-column,
.panel-two-column {
    max-width: var(--width-base);
    padding: 0;
    margin: 0 auto;
    margin-bottom: var(--space-8);
}

.panel-three-column :is(.left-container, .center-container, .right-container),
.panel-two-column :is(.left-container, .right-container) {
    padding: 0 var(--space-5);
}

:is(.panel-intro, .panel-social, .panel-three-column, .panel-two-column) .contentRender_name_plugins_core_textbox {
    padding: 0;
}

.sv-col > .contentRender > .sv-panel {
    margin-left: calc(-1 * var(--space-5));
    margin-right: calc(-1 * var(--space-5));
}

@media (min-width: 64em) {
    .panel-navigation-share .navigation-container { display: block; }

    .panel-three-column,
    .panel-two-column {
        display: flex;
    }

    .panel-two-column.sidebar-left .left-container {
        order: 1;
        flex-basis: 40%;
    }

    .panel-two-column.sidebar-left .right-container {
        order: 2;
        flex-basis: 60%;
    }

    .panel-two-column.sidebar-right .left-container {
        order: 1;
        flex-basis: 60%;
    }

    .panel-two-column.sidebar-right .right-container {
        order: 2;
        flex-basis: 40%;
    }

    .panel-two-column.even :is(.left-container, .right-container) {
        flex-basis: 50%;
    }

    .panel-three-column > * { flex-basis: calc(100% / 3); }
}

/* Inputs */

:is(input, button, select, textarea, a):focus-visible {
    outline: var(--sw-focus-color) solid 1px;
    outline-offset: 2px;
}

/* Video Play Button */

.shared-play-button {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
	width: var(--space-16);
	height: var(--space-16);
	padding: 0;
	background-color: rgba(0, 0, 0, .5);
	border: 3px solid var(--white);
	border-radius: 50%;
	font-size: var(--text-2xl);
	line-height: 1;
	text-align: center;
	color: var(--white);
	pointer-events: none;
	transition: background-color 100ms, border-color 100ms;
}

@media (hover: hover) {
    .contentRender[class*="contentRender_name_plugins_collections"] .slide-top:hover .shared-play-button,
    .image-box-with-caption .slide-pic:hover .shared-play-button {
        border-color: rgba(255, 255, 255, .6);
        background-color: rgba(0, 0, 0, .7);
    }
}

.ccl-v2-widget .slide-title {
    font-family: var(--font-title-b);
    line-height: 30px;
}

.ccl-v2-widget .slide-desc {
    line-height: var(--leading-normal);
}

.ccl-v2-widget .content-section, .ccl-v2-widget .content-upper {
    gap: var(--space-4);
}

.ccl-v2-widget .content-upper .slide-upper {
    gap: var(--space-4);
}

.ccl-v2-widget .info-flag, .ccl-v2-widget .sponsored {
    text-transform: capitalize;
	font-size: var(--text-base);
    margin: 0 0 var(--space-3);
}

.ccl-v2-widget .slide-top.date-present,
.ccl-v2-widget .slide-top.tripbulider-present {
    margin-bottom: 0;
    padding-bottom: var(--space-5);
}

.ccl-v2-widget.animation-expand .slide:hover .slide-img {
    scale: 1.025;
    transition: scale 0.5s ease;
}

.ccl-v2-widget.animation-rise .slide .content-section {
    transition: var(--transition-slow);
}

.ccl-v2-widget.animation-rise .slide:hover .content-section {
    bottom: var(--space-2) !important;
}

.ccl-v2-widget.remove-spacing {
    margin-bottom: 0 !important;
}

/* Image/Video Credits */

.slide-top .credits,
.related-content .credits,
.ccl-widget .credits,
.image-box-with-caption .credits {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: var(--space-2) var(--space-3);
	font-family: var(--font-family);
	font-size: .66rem;
	font-style: italic;
	text-shadow: 0 0 10px var(--black);
	color: var(--white);
	pointer-events: none;
	z-index: 10;
}

.image-box-with-caption .caption {
    color: var(--sw-text-color);
}

.credits a, .credits a:hover {
    color: inherit;
    position: relative;
    z-index: 100;
    pointer-events: all;
}
.credits a:hover {
    text-decoration: underline;
}

/* Slider Arrows */

.core-v2-slider.slider-v2-4-across-fullwidth .glide__slides {
	margin-bottom: 34px;
}
.ccl-v2-widget.core-v2-slider.slider-v2-4-across-fullwidth .view-all-col {
		order: 0;
	}
@media screen and (min-width: 64em) {
	.core-v2-slider.slider-v2-4-across-fullwidth .glide__slides {
		margin-bottom: 80px;
	}
	
}

.core-v2-slider .glide__arrows {
    height: 30px;
    justify-content: end;
    max-width: var(--width-base);
    margin: 0;
    gap: var(--space-12);
    bottom: -32px !important;
    top: auto !important;

    .glide__arrow {
        margin: 0;
        transition: all .4s ease-in-out;
        height: 60px;
        width: 60px;

        &.glide__arrow--right {
            color: var(--black);
            border-radius: 50% 0 50% 50%;
        }

        &.glide__arrow--left {
            color: var(--black);
            border-radius: 0 50% 50% 50%;
        }

        &:hover {
            background-color: var(--green);
            color: var(--primary);
        }
    }

    @media (min-width: 64em) {
        bottom: 0px !important;
        top: unset !important;
    }
}
.core-v2-slider.slider-v2-4-across-fullwidth .glide__arrows {
	right: 20px;
}
.core-v2-slider.slider-v2-4-across-fullwidth .glide__arrows {
	@media (min-width: 64em) {
		right: 0px;
        bottom: 0px !important;
        top: unset !important;
		margin: 0px auto;
    }
}

 .glide__arrow,
 .sv-lightbox .arrow {
    --arrow-color: var(--gray-800);
	--arrow-bg-color: transparent;

	position: relative;
	width: var(--space-10);
	height: var(--space-10);
    display: flex;
    align-items: center;
    justify-content: center;
	flex-shrink: 0;
	padding: 0;
	margin: var(--space-3);
	background-color: var(--arrow-bg-color);
	border-radius: none;
	box-shadow: none;
	font-size: var(--text-xl);
	color: var(--arrow-color);
	pointer-events: all;
    transition:
        color var(--transition-appendix),
        background-color var(--transition-appendix);

    .fa-angle-right {
        &:before {
            content: '\f061';
            font-size: 26px;
            font-weight: 300;
        }
    }
    
    .fa-angle-left {
        &:before {
            content: '\f060';
            font-size: 26px;
            font-weight: 300;
        }
    }
}

 .glide__arrow i,
 .sv-lightbox .arrow i {
	display: block;
	line-height: var(--leading-none);
 }

/* Fade effect for glide sliders */

.glide.fade .glide__slides {
	transform: none !important;
	display: block;
	width: auto !important;
}

.glide.fade .glide__slide {
	position: absolute;
	left: 0; 
	top: 0;
	z-index: 1;
	opacity: 0;
	transition: opacity 800ms ease;
}

.glide.fade .glide__slide:first-child {
	position: relative;
}

.glide.fade .glide__slide--active {
	z-index: 2;
	opacity: 1;
}

/* responsive image */

.slide-img {
    background-color: #eee;
    background-position: 130% 0;
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, #eee 45%, #f6f6f6, #eee 65%);
    animation: img-loading 1200ms infinite ease-in-out;
}

.slide-img.loaded {
    animation: none;
}
      
@keyframes img-loading {
    to {
        background-position: -30% 0;
    }
}

/* Body Overlay */

.body-overlay {
    position: fixed;
    inset: 0;
    display: none;
    background-color: rgba(0, 0, 0, .2);
    z-index: 3;
}

.hamburger-open .body-overlay {
    display: block;
}

@media (min-width: 64em) {
    .hamburger-open .body-overlay {
        display: none;
    }
}

/* Shared Scrollbar Styles - use .styled-scrollbar to add styles to any element*/

.styled-scrollbar {
    scrollbar-color: var(--sw-scrollbar-thumb-color) var(--sw-scrollbar-track-color);
    scrollbar-width: thin;
}

.styled-scrollbar::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

.styled-scrollbar::-webkit-scrollbar-track {
    background-color: var(--sw-scrollbar-track-color);
}

.styled-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--sw-scrollbar-thumb-color);
    border-radius: var(--rounded-md);
    border: 2px solid var(--sw-scrollbar-track-color);
}

.styled-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: var(--sw-scrollbar-thumb-hover);
}

.styled-scrollbar::-webkit-scrollbar-thumb:active {
    background-color: var(--sw-scrollbar-thumb-active);
}

.ccl-v2-widget {
    .widget-title {
        font-family: var(--font-title-b);
        font-size: var(--text-3xl);
        line-height: var(--leading-tight);

        .widget-subtitle {
            font-size: var(--text-base);
            line-height: var(--leading-normal);
            text-transform: uppercase;
            margin-bottom: var(--space-3);
        }

        @media (min-width: 64em) {
            font-size: var(--text-5xl);
            margin-bottom: var(--space-5);

            .widget-subtitle {
                margin-bottom: var(--space-10);
            }
        }
    }

    .slide-footer {
        .read-more {
            display: flex;
            align-items: flex-end;
            margin: 0;
            padding: 15px 50px;
            background: none;
            font-size: var(--text-base);
            font-weight: normal;
            gap: var(--space-3);
            text-wrap: nowrap;
            border-radius: 25px 0 25px 25px;
            border: 1px solid var(--sw-button-border-color);
            color: var(--white);
            transition: var(--transition-appendix);

            &:hover {
                background: var(--green);
                border: 1px solid var(--green);
            }
        }
    }
}

/* Shared Date */
.ccl-v2-widget .mini-date-section {
    border-radius: var(--radius-bl);
    top: unset;
    bottom: 0;
    left: var(--space-5);
    padding: var(--space-3) 18px;
}

/* Shared info details */
.ccl-v2-widget .details {
    gap: var(--space-2);
}

.ccl-v2-widget .details .info-item,
.ccl-v2-widget .details .info-item a {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    font-weight: normal;
    color: var(--sw-text-color);
}

.ccl-v2-widget .details .info-item a:hover {
    text-decoration: underline;
}

/* View All Button */
.ccl-v2-widget .widget-inner {
    gap: var(--space-3);
}

.ccl-v2-widget .view-all-col {
    justify-content: flex-end;
}

.ccl-v2-widget .widget-view-all {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: normal;
    line-height: var(--leading-normal);
    font-family: var(--font-title-r);
    transition: var(--transition-appendix);
}

.ccl-v2-widget .widget-view-all::after {
    font-family: "Font Awesome 6 Pro";
    content: '\f061';
    font-size: 19px;
    font-weight: 300;
    margin-top: 2px;
}

.ccl-v2-widget .widget-view-all:hover {
    background: transparent;
    color: var(--sw-button-secondary-color);
    gap: var(--space-5);
}

.slide-top .credits, 
.related-content .credits, .ccl-widget .credits, 
.image-box-with-caption .credits {
    bottom: 5px;
    right: var(--space-4);
}

@media (min-width: 64em) {
    .ccl-v2-widget .widget-view-all::after {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        transition: var(--transition-arrow);
        font-size: 26px;
        font-weight: 300;
        height: 60px;
        width: 60px;
        border-radius: var(--radius-tr);
    }

    .ccl-v2-widget .widget-view-all:hover::after {
        background: var(--green);
    }

    .slide-top .credits, 
    .related-content .credits, .ccl-widget .credits, 
    .image-box-with-caption .credits {
        bottom: var(--space-4);
    }
}

/** Linked List **/
.contentRender_name_plugins_collections_template_custom_core_link_list {
    background: var(--gray-light);
}

.link-list {
    padding: var(--space-10) var(--space-5);
    margin: 0 auto var(--widget-margin-bottom);
    max-width: var(--width-base);
    color: var(--sw-collections-text-color);
}

.link-list .link-list-title {
    margin: 0;
    line-height: 1.2;
    color: var(--sw-collections-title-color);
    font-family: var(--font-title-b);
    font-weight: var(--font-weight-bold, 700);
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-8);
}

.link-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    padding: 0;
}

.link-list ul li {
    display: flex;
    align-items: center;
    width: 100%;
    list-style: none;
    margin-bottom: 0;
}

.link-list ul li::before {
    font-family: "Font Awesome 6 Pro";
    content: '\f061';
    font-size: 19px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: var(--transition-arrow);
    font-weight: 300;
    height: 45px;
    width: 45px;
    border-radius: var(--radius-tr);
}

.link-list a.link-list-link {
    width: 100%;
    max-width: calc(100% - 60px);
    color: var(--sw-collections-text-color);
    padding-left: var(--space-4);
    position: relative;
}

.link-list ul li:hover {
    &:before {
        background: var(--green);
    }

    .link-list-link {
        text-decoration: underline;
    }
}

.video-player {
    padding: 3px 0;
    margin: 0;
    position: relative;
}

.video-player .title {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    margin: 0;
    background: var(--white);
    border-radius: 25px 25px 0 0;
    padding: var(--space-4) var(--space-4);
    font-size: var(--text-xl);
}

@media (width >= 40em) {
    .video-player .title {
        padding: var(--space-5) var(--space-10);
        left: 25px;
        font-size: var(--text-2xl);
    }
}

@media (min-width: 64em) {
    .link-list {
        padding: var(--space-16) var(--space-5);
    }

    .link-list .link-list-title {
        font-size: var(--text-5xl);
    }

    .link-list ul li {
        max-width: calc(100% / 3 - var(--space-4));
    }
}

.share-itinerary {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: var(--space-16) 0;
    gap: var(--space-5);
}

.share-itinerary h6 {
    font-size: var(--text-3xl) !important;
    margin-bottom: 0 !important;
    width: 100%;
}

.share-itinerary div {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.share-this-itinerary {
    flex-direction: column;
}

.share-itinerary > div a:not(.social-link) {
    display: flex;
    width: 100%;
    background: var(--gray);
    padding: var(--space-5) var(--space-16) var(--space-5) var(--space-8);
    transition: var(--transition-appendix);
    border-radius: var(--space-8);
    color: var(--sw-text-color);
    font-size: var(--text-lg);
    text-decoration: none;
    position: relative;
    transition: var(--transition-appendix);

    &::after {
        font-family: "Font Awesome 6 Pro";
        content: '\f061';
        font-size: 28px;
        font-weight: 300;
        margin-top: 2px;
        position: absolute;
        right: 30px;
        top: 12px;
    }
}

.social-shares ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-top: var(--space-4);
    gap: var(--space-4);
}

.social-shares .social-network {
    list-style: none;
}

.social-shares .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    background: var(--primary);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-decoration: none;
}

.share-itinerary > div a:hover {
    color: var(--white);
    background: var(--primary);
    cursor: pointer;
}

@media (min-width: 64em) {
    .share-itinerary > div {
        width: 100%;
        max-width: calc(100% / 4);
    }

    .share-itinerary h6 {
        font-size: var(--text-5xl) !important;
    }

    :lang(de-DE) .share-itinerary > div a,
    :lang(fr-FR) .share-itinerary > div.email-this-itinerary a,
    :lang(es-ES) .share-itinerary > div.email-this-itinerary a {
        padding: 15px var(--space-20) 15px var(--space-8);
        line-height: var(--leading-none);
    
        &::after {
            top: 19px;
        }
    }
}

.contentRender_name_plugins_nav_sitemap .sitemap h3 {
    display: none
}

#ae_launcher.ae-cta-position-preset-right-lower {
    bottom: 34px !important;
}

.panel-accordion .accordion-item > button {
    display: flex;
    align-items: center;
    border-radius: 30px;
    color: var(--btn-text);
    background-color: var(--gray);
    padding: 15px 50px;
    font-size: var(--text-lg);
    font-weight: normal;
    gap: var(--space-3);
    text-wrap: nowrap;
    border-radius: 25px 0 25px 25px;
    color: var(--black);
    transition: var(--transition-appendix);
    margin: 0;
    text-wrap: auto;

    > i {
        &:before {
            font-family: "Font Awesome 6 Pro";
            content: '\f061';
            font-size: 19px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            transition: var(--transition-arrow);
            font-weight: 300;
            height: 45px;
            width: 25px;
            color: var(--black);
        }
    }
}

.panel-accordion .accordion-item {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 25px;
        bottom: 0;
        right: 0;
        left: 0;
        border: 1px solid white;
        border-radius: 0 0 25px 25px;
    }

    &.active {
        &:before {
            border-color: var(--gray-400);
            z-index: -1;
        }
    }
}

.panel-accordion .accordion-item .accordion-content {
    border: none;
}

.countdown-clock-wrapper .title {
    color: var(--black);
}

/* Act on forms */
.custom-embed.center .embed-container {
    margin: var(--space-10) 0;
}

.ao-form {
    font-family: "Inter";

    .ao-form-label {
        padding: 0 0 5px;
    }

    #form-submit {
        font-size: 24px !important;
        font-weight: normal;
        font-style: normal;
        text-align: left;
        border: none;
        color: #fff;
        background: url(/includes/client_public/assets/shared/icons/arrow_right.svg) no-repeat scroll right 25px center #2a2a2a !important;
        background-size: 26px !important;
        cursor: pointer;
        padding: 16px 25px 16px !important;
        box-sizing: border-box;
        line-height: 26px;
        height: auto;
        border-radius: 25px 0 25px 25px !important;
        transition: var(--transition-appendix);
        min-width: 200px;
        width: 215px;
        margin: 0 0 25px;
    }
}

@media (hover: hover) {
    .ao-form #form-submit:hover{
        background: url(/includes/client_public/assets/shared/icons/arrow_right_black.svg) no-repeat scroll right 25px center #4dbd69 !important;
        background-size: 26px !important;
        color: #2a2a2a !important;
    }
}