/*
 Theme Name:   TCC: GeneratePress Child Theme
 Theme URI:    https://generatepress.com
 Description:  Designed & Built by The Creative Collective
 Designer:     Arvind Sardar
 Designer URI: https://www.thecreativecollective.com.au
 Template:     generatepress
 Version:      0.1
*/

/* COLOUR
--------------------------------------------*/
    :root {
        --brand1: #f26333;  /* orange */
        --brand2: #fcaf17;  /* yellow */
        --brand3: #bcbec0;  /* grey */

		--gray10: #e6e1e2;
		--gray20: #cac5c6;
		--gray30: #afaaab;
		--gray40: #948f91;
		--gray50: #7a7677;
		--gray60: #5e5e5e;
		--gray70: #474747;
		--gray80: #303030;
		--gray90: #1b1b1b;

		--light: var(--gray10);
        --mid: var(--gray30);
        --dark: var(--gray60);
    }
    .bg-brand1 {background-color: var(--brand1);}
    .bg-brand2 {background-color: var(--brand2);}
.bg-brand3 {background-color: var(--brand3);}
    .bg-dark {background-color: var(--dark); padding:20px;}
    .bg-mid {background-color: var(--mid);}
    .bg-light {background-color: var(--light);}
    .txt-brand1 {color: var(--brand1);}
    .txt-brand2 {color: var(--brand2);}
    .txt-dark {color: var(--dark);}
    .txt-mid {color: var(--mid);}
    .txt-light {color: var(--light);}
    .txt-white {color: white;}
    .txt-center {text-align: center;}
.border-brand1 {border:3px solid var(--brand1); margin:10px; }
	.border-brand2{border:3px solid var(--brand2); margin:10px;}
	.border-brand3	{border:3px solid var(--brand3); margin:10px;}


/* @section GLOBAL
--------------------------------------------*/
_01_global{}
    body {
        overflow-x: hidden;
    }
    .nobottommargin * {
        margin-bottom: 0 !important;
    }
    .site-content,
    .entry-header {
        word-wrap: normal !important;
    }
    .site-content .alignwide {
        margin-left: -80px;
        margin-right: -80px;
    }
    .site-content .alignfull {
        margin-left: calc( -100vw / 2 + 100% / 2);
        margin-right: calc( -100vw / 2 + 100% / 2);
        max-width: 100vw;
    }
    .alignfull img {
        width: 100vw;
    }
    .flexi-center{ /*main-axis centered*/
    	-webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
	.flexi-middle{ /*secondary-axis centered*/
	    -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
	.flexi-spaced{
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
    }
    .link-overlay-parent{
		background-size: cover;
		position: relative;
		padding-bottom: 100%;
	}
     .link-overlay-parent a.link-overlay {
        color: white;
        font-weight: 300;
		font-size: 20px;
		position: absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		background-color: rgba(0,0, 0, 0.5);
		padding: 20px;
		display: flex; display: -webkit-box;display: -ms-flexbox;
        justify-content: center;-ms-flex-pack: center; -webkit-box-pack: center;
	    align-items: center;-webkit-box-align: center;-ms-flex-align: center;
		transition: all 0.5s ease; -webkit-transition: all 0.5s ease;
	}
	.link-overlay-parent a.link-overlay:hover{
		background-color: black;
    }
    #page .wp-block-spacer,
    #page .entry-content > [class*="wp-block-"]:not(:last-child){
        margin-bottom: 0;
    }


    .nolink a{
        cursor: default;
    }
    #page hr.wp-block-separator{
        margin: 16px 0;
    }


/*	TYPOGRAPHY
--------------------------------------------*/
_01_typography{}
    h1,
    h2,
    h3,
    h4 {
        color: var(--dark);
    }
    a {color: var(--brand2);}
    a:hover {color: var(--brand1);}


/* BUTTONS - use a span or div wrapper for 'a'
--------------------------------------------*/
_01_buttons{}
    .button-block a,
    a.button,
    .gform_button,
    input[type="submit"] {
        background-color: var(--brand2);
        /*border: 1px solid var(--brand2);*/
        text-transform: uppercase;
        font-size: 18px;
        display: inline-block;
        line-height: 1;
        padding: 12px 20px;
        border-radius: 3px;
        color: #fff;
        margin-bottom: 5px;
		font-weight:500;
    }

#wp-submit:hover{
	background-color:var(--brand1);
}
    .button-block.button-small a,
    a.button.button-small{
        font-size: 75%;
        padding: 6px 10px;
		font-weight:500;
    }
    .button-block.button-big a,
    a.button.button-big{
        font-size: 120%;
        padding: 18px 24px;
		font-weight:500;
    }
    .button-block a:hover,
    a.button:hover,
    .gform_button:hover {
        background-color: var(--brand1) !important;
     /*   border: 1px solid #fff !important;*/
        color: #fff;
		font-weight:500;
    }
    p.button, div.button {
        padding: 0 !important;
        display: block !important;
        margin: 10px 0;
    }
.wp-block-column .pricing-column .button-block{
font-weight:500;
	    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    margin: 0 50px 20px 50px;
}

/* ICONS
--------------------------------------------*/
_01_icons{}
    a.social-icon{
        padding: 3px 3px 3px 4px;;
        height: 35px;
        width: 35px;
        background: transparent;
        border: solid 1px var(--mid);
        display: inline-block;
        margin-left: 5px;
        line-height:1;
        text-align: center;
        vertical-align: bottom;
    }
    a.social-icon svg{
        fill: var(--mid);
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle;
    }
    a.social-icon:hover{
        background: var(--mid);
    }
    a.social-icon:hover svg{
        fill: white;
    }



/*	CONTENT: ABOVE PAGE ZONE
--------------------------------------------*/
_02_above_page{}
    #above-page-widgets.widget-area {
        background: var(--light);
        border-bottom: 1px solid var(--mid);
        color: var(--mid);
        line-height: 1;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    #above-page-widgets.widget-area .grid-parent{
        padding: 0 15px;
    }
    #above-page-widgets.widget-area .inner.row {
        padding: 0 40px;
    }
    #above-page-widgets.widget-area .widget {
        padding: 0;
        margin: 0;
    }
    #above-page-widgets.widget-area .button{
        margin-bottom: 0;
    }
    #above-page-widgets #custom_html-4{
        text-align: right;
    }
    /* MEDIA QUERY
    ======================================= */
    @media only screen and (max-width: 768px){
        #above-page-widgets #custom_html-4,
        #above-page-widgets #custom_html-6{
            text-align: center;
            margin-bottom: 4px;
        }
    }
    #above-page-widgets #custom_html-6{
        font-size: 20px;
        font-weight: bold;
    }


/*	CONTENT: HEADER ZONE
--------------------------------------------*/
_02_header{}
    #masthead {
        background-color: var(--dark);
    }
    #masthead .header-widget {
        padding-right: 10px;
    }
    #masthead .header-widget a {
        color: var(--dark);
    }
    .site-logo {
        max-width:300px;
        /* float: left; */
    }
    .nav-float-right .header-widget {
        position: relative;
        top: 0;
    }


/* FOOTER ZONE
--------------------------------------------*/
_02_footer{}
    #footer-widgets {
        background-color: var(--dark);
    }
    .site-footer .site-info{
        background: var(--mid);
    }
    .site-footer .widget-title {
        font-size: 16px;
        font-weight: 300;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: var(--light);
    }
    .site-footer p {
        font-size: 13px;
		color: var(--light);
    }
    .widget_tcc_logo_widget img.custom-logo{
        max-width: 250px;
    }


/*	CONTENT: NAVIGATION ZONE
--------------------------------------------*/
_02_navigation{}
    #site-navigation{
        background-color: var(--brand1);
        margin-bottom: 30px;
    }
    .main-navigation .main-nav ul li a {
        color: white;
        letter-spacing: 1px;
        font-weight: 500;
    }
    .main-navigation .main-nav ul > li:last-child > a {
        padding-right: 0;
    }
    .main-navigation .main-nav ul li a:hover {
        color: var(--brand2);
    }
    .main-navigation .main-nav ul .sub-menu a {
        background: var(--mid);
        color: white;
    }
    .main-navigation .main-nav ul .sub-menu a:hover {
        background: var(--brand2);
        color: white;
    }
    .main-navigation .main-nav ul li.log-in-out a {
        line-height: 1.3;
        border-radius: 3px;
        padding: 5px 9px;
        font-weight: 600;
        font-size: 15px;
        border: solid white 2px;
        margin-left: 20px;
        color: white;
    }
    .main-navigation .main-nav ul li.log-in-out a:hover{
        color: var(--brand1);
        border: solid white 2px;
		background-color:white;

    }
@media only screen and (max-width: 768px){
.main-navigation .main-nav ul li.log-in-out a {
    margin-left: 0px;  
}
}
    /* STICKY MENU
    ======================================= */
    #sticky-navigation.main-navigation {
        background-color: var(--brand1);
        border-bottom: 1px solid white;
    }

    /* SEARCH BOX
    ======================================= */
    .inside-navigation .navigation-search{
        width: 99.3%;
    }
    .inside-navigation .navigation-search input.search-field{
        margin: 3px;
        border: solid 1px var(--mid);
        opacity: 1;
        height: 58px;
        padding-left: 60px;
    }
    .inside-navigation .navigation-search:after{
        content: "\f002";
        font-family: GeneratePress;
        z-index: 2;
        font-size: 30px;
        color: var(--light);
        position: absolute;
        left: 20px;
        top:5px;
        bottom:5px;
    }


    /* TOGGLE BUTTON
    ======================================= */
    .main-navigation .menu-toggle {
        color: white;
    }
    .main-navigation .menu-toggle:hover {
        color: white;
    }

    /* MOBILE MENU DROPDOWN
    ======================================= */
    @media only screen and (max-width: 768px) {
        .both-sticky-menu .main-navigation:not(#mobile-header).toggled .main-nav>ul {
            -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.5);
            -moz-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.5);
        }
        .main-navigation .main-nav ul.sf-menu>li>a {
            background: var(--brand1);
            line-height: 1.1;
            padding: 15px 20px;
        }
        .main-navigation .main-nav ul.sf-menu>li>a:hover {
            background: var(--brand2);
        }
		
		.main-navigation .main-nav ul li a:hover {
        /* color: var(--brand2); */
			color:white;
    }
    }


/* RESOURCES LISTING
--------------------------------------------*/
_04_resources_snippet{}
    .resources-listing, .resources-listing-footer{
        text-align: center;
    }
    .resources-listing .entry-column{
        margin-bottom: 30px;
    }
    .resources-listing .entry-image, .resources-listing-footer .entry-image{
        width: 100px;
    }
    .resources-listing .entry-title{
        color: white;
        margin-bottom: 12px;
    }
    .resources-listing .entry-content, .resources-listing-footer .entry-content{
        color: white;
    }
    .resources-listing .entry-column-inner{
        padding: 50px;
        position: relative;
    }
    .resources-listing .button, .resources-listing-footer .button{
        position: absolute;
        text-align: center;
        bottom: 20px;
        left:0;
        right:0;
    }
    .resources-listing .button a.entry-link, .resources-listing-footer .button a.entry-link{
        background-color: rgba(255, 255, 255, 0.2);
        border-color: white;
    }
.resources-listing-footer .entry-column-inner{
	padding: 5px 5px 30px 5px;
        position: relative;
}

.resources-listing-footer .entry-column {
    margin: 0px 0px 20px 0px;
}

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

/*	SNIPPET: BANNER ZONE
--------------------------------------------*/
_04_banner_snippet{}
    .page-banner {
        height: 35vh;
    }
    .page-banner .inner{
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
    }
    .page-banner h1.banner-title {
        text-align: center;
        color: white;
    }

/* SNIPPET: LOGINBLOCK
--------------------------------------------*/
_04_frontend_login_snippet{}
    form#loginform label{
        display: block;
    }
    form#loginform .login-username,
    form#loginform .login-password{
        display: inline-block;
        width: 300px;
        vertical-align: top;
    }
    form#loginform .login-username input,
    form#loginform .login-password input{
        width: 90%;
    }

/*	CONTENT: PAGES
--------------------------------------------*/
_03_content_pages{}
    body.home #content{
        padding-bottom: 0;
    }
    .getting-better-banner{
        background-image: url(/wp-content/themes/tcc_child_theme/images/GettingBetter_CoverImage.jpg);
        background-size: cover;
        background-position: center center;
        padding: 100px 0;
    }
    .sidebar-block{
        border: solid 1px var(--gray20);
        padding: 16px;
        margin-bottom: 30px;
    }

/*	SNIPPET: SLIDER
--------------------------------------------*/
_04_slider{}
    .tcc-slick-slide .tcc-slide {
        height: 50vh;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        position: relative;
        z-index: 0;
    }
    .tcc-slick-slide .tcc-slide:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background-color: rgba(0, 0, 0, 0.3); */
        z-index: 1;
    }
    .tcc-slick-slide .tcc-slide .tcc-slide-content {
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 1200px;
        max-width: 90%;
        margin: 0 auto;
    }
    .tcc-slick-slide .tcc-slide-title {
        font-size: 60px;
        margin-bottom: 0;
        color: white;
        line-height: 1;
        font-weight: 400;
        text-align: center;
        text-transform: uppercase;
    }
    .tcc-slick-slide .tcc-slide-body {
        font-size: 20px;
        margin-bottom: 20px;
        color: var(--brand1);
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        line-height: 1;
    }
    @media only screen and (max-width: 1024px) {
        .tcc-slick-slide .tcc-slide {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: end;
            -webkit-justify-content: flex-end;
            -moz-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }
        .tcc-slick-slide .tcc-slide .tcc-slide-content {
            display: block;
            width: 100%;
            padding-top: 30px;
            padding-bottom: 30px;
        }
        .tcc-slick-slide .tcc-slide-title,
        .tcc-slick-slide .tcc-slide-body {
            font-size: 40px;
        }
    }


/*	SNIPPET: RECENT POSTS GRID
--------------------------------------------*/
_04_snippet_recent_posts_grid{}
    .posts-grid .post-content {
        text-align: center;
        background-clip: content-box !important;
    }
    .posts-grid .post-content:before,
    .posts-grid .post-content:after {
        content: "";
        display: block;
        padding-top: 20%;
    }
    .posts-grid h4 {
        color: white;
        font-weight: bold;
        font-size: 32px;
    }



/* SNIPPET: SITEWIDE CTA
--------------------------------------------*/
_04_snippet_sitewide_cta{}

/* PLUGIN: GRAVITY FORMS
--------------------------------------------*/
_05_plugin_gravity_forms{}
    .gform_wrapper .gf_simple_horizontal li.hidden_label input {
        margin-top: 0;
    }
    body .gform_wrapper ul li.gfield {
        margin-top: 0;
    }
    body .gform_wrapper li.hidden_label input {
        margin-top: 0 !important;
    }

    /* --> CONTACT FORM */
    #gform_wrapper_1.gform_wrapper li#field_1_6{
        padding-top: 16px;
    }

    /* --> FOOTER FROM */
    #gform_widget-2{
        color: white;;
    }

    /* --> SIGN UP FORM  */
    #gform_wrapper_3.gform_wrapper ul.gform_fields li.gfield {
        margin-bottom: 36px;
    }
    #gform_wrapper_3.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
        font-weight: 400;
        font-size: 16px;
    }
    #gform_wrapper_3.gform_wrapper #input_3_52_copy_values_option_container{
        display: inline-block;
        font-size: 14px;
        font-style: italic;
        margin-left: 20px;
    }
    #gform_wrapper_3.gform_wrapper ul li.gfield.gsection {
        padding-top: 36px;
    }
    #gform_wrapper_3.gform_wrapper.gf_browser_gecko select,
    #gform_wrapper_3.gform_wrapper.gf_browser_chrome select {
        padding: 7px 12px;
    }
    #gform_wrapper_3.gform_wrapper ul li.gfmc-column:nth-child(odd){
        padding-right: 3%;
    }
    #gform_wrapper_3.gform_wrapper #field_3_29{
        padding: 15px;
        background-color: var(--gray10);
        border: solid 1px var(--gray20);
    }
    @media screen and (max-width: 768px) {
        #gform_wrapper_3 li.gfmc-column {
            width: 100% !important;
        }
    }

.gform_wrapper .field_description_below .gfield_consent_description, .gform_wrapper .gfield_consent_description {
    width: 100%;
    max-height: 240px;
    overflow-y: scroll;
    border: none;
    margin-top: 12px;
    padding: 6px 8px;
    font-size: inherit;
}

/* SNIPPET: TESTIMONIALS
--------------------------------------------*/
_04_snippet_testimonials{}
    .tcc-testimonials{
        margin: 0 auto;
    }
    .tcc-testimonials .item{
        padding:2vw 7vw 2vw 2vw;
        text-align: center;
    }
    .tcc-testimonials .title{
        font-size:18px;
        font-weight:600;
    }
    .tcc-testimonials .body{
        font-size:14px;
    }
    .tcc-testimonials .author{
        font-size:14px;
        font-weight:600;
    }
    .tcc-testimonials .slick-prev {
        left: -100px;
    }
    .tcc-testimonials .slick-next {
        right: -100px;
    }

/* WOOCOMMERCE
--------------------------------------------*/
_05_woocommerce{}
    .woocommerce .col-1, .woocommerce .col-2{
        max-width:none;
    }

/* PLUGIN: Pricing Table
--------------------------------------------*/
_05_pricingtable{}
    .pricing-table .pricing-column{
        border: solid 5px var(--brand2);
		margin-bottom:5px;
    }
    .pricing-table .pricing-column.recommended{
        border-color: var(--brand1);
		margin-bottom:5px;
    }
    .pricing-table .pricing-column.recommended h3{
        background-color: var(--brand1);
    }
    .pricing-table h3{
        background-color: var(--brand2);
        color: white;
        padding: 15px 8px;
    }
    .pricing-table ul{
        padding-right: 1.5em;
    }
    .pricing-table li{
        margin-bottom: 8px;
    }

    .pricetable{
        background: rgba(252, 175, 23, 0.5);
        /* background: none; */
        border-radius: 0;
        padding: 8px;
    }
    .pricetable .pricetable-column.pricetable-featured{
        background: var(--brand2);
        border: 2px solid white;
        border-radius: 0;
        padding: 12px;
    }
    .pricetable code{
        font-family: inherit;
    }
    .pricetable .pricetable-button-container a, .pricetable .pricetable-button-container a .pricetable-gradient, .pricetable .pricetable-button-container a .pricetable-noise {
        border-radius: 0;
    }
    .pricetable .pricetable-button-container a{
        border: none;
    }
    .pricetable .pricetable-button-container a .pricetable-gradient{
        background: var(--brand1);
        box-shadow: none;
    }
    .pricetable .pricetable-button-container a:hover .pricetable-gradient{
        background: var(--brand2);
    }
    .pricetable h3.pricetable-name, .pricetable h4.pricetable-price {
        font-family: inherit;
    }
    .pricetable .pricetable-button-container a {
        color: white;
        font-style: normal;
        font-family: inherit;
        text-transform: uppercase;
    }
    .pricetable h4.pricetable-price {
        color: #888888;
        font-size: 22px;
        font-style: normal;
        font-weight: 300;
    }
    .pricetable .pricetable-feature {
        font-size: 14px;
        font-family: inherit;
        border-top: none;
        color: var(--gray60);
    }

/* PLUGIN: ACCORDIONS
--------------------------------------------*/
_05_accordions{}
    .c-accordion__title:hover{
        color: var(--brand1);
    }
    .c-accordion__title::after {
        left: -33px;
        background-color: var(--brand2);
        right: auto;
        padding: 0px 5px;
        color:white;
    }
    .c-accordion__content{
        color:var(--gray60);
    }

.wp-block-pb-accordion-item{
	margin:0px 30px;
}

/* orange callout Block
--------------------------------------------*/
.orange_callout{
        background-color: var(--brand2);
	padding:20px 0px 20px 0px;
	color:white;
}

.orange_callout h2{
	color:white;
}

    .entry-content .orange_callout {
        margin-left  : calc( -100vw / 2 + 100% / 2 );
        margin-right : calc( -100vw / 2 + 100% / 2 );
        max-width    : 100vw;
    }

.white_button a, a.white_button{
    background-color: transparent;
    border: 1px solid white;
    text-transform: uppercase;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 3px;
    color: #fff;
    margin: 5px;
    /* vertical-align: bottom; */
}

.white_button a:hover, a.white_button:hover {
    background-color: white;
	color:var(--brand2);
}


.orange_callout .white_button, .orange_callout .white_buttonV2 {
    background-color: transparent;
    border: 1px solid white;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 3px;
    color: #fff;
    margin: 10px 5px;
    width: 30%;
	font-weight:500;
}
.orange_callout .white_button:hover{
	background-color: white;
        border: 1px solid white;
         text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 3px;
        color: var(--brand2);
           margin: 10px 5px;
    width: 30%;
	font-weight:500;
}
@media only screen and (max-width: 768px) {
	  .orange_callout .white_button, .orange_callout .white_button:hover{
		  width:80%;
	  }
  }



.fa-2x{
	color:var(--brand1);
}

.login_logout a {
	background-color:white;
	 color: var(--brand2);
}

/*members
--------------------------------------------*/
.red_background{
	background-color:#d75f67;
}
.members_title h2{
	text-transform: uppercase!important;
}

#members h2, #members{
	color:white;
}
#members{
	padding:5px;
	margin-bottom:20px;
}
.orange_background, .orange_background h2 {
	
		margin-bottom:20px;
	color:white;
}

.orange_background a:hover, a.orange_background:hover
{
	color:var(--brand1)!important;
}

.green_background{
	background-color:#6bb6ad;
}

.blue_background{
	background-color:#3d8ec3;
}

.purple_background{
	background-color:#8b7aad;
}

.pink_background{
	background-color:#d288ab;
}

.members_button a, a.members_button {
    background-color: white;
	 opacity: 0.4;
  filter: alpha(opacity=20); /* For IE8 and earlier */
    border: 1px solid white;
    text-transform: uppercase;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 3px;
    /* vertical-align: bottom; */
	    margin: 0px 30px 10px 30px;
    /* vertical-align: bottom; */
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}



.members_button a:hover, a.members_button:hover{
    background-color: white!important;
	 opacity: 1;
  filter: alpha(opacity=100); /* For IE8 and earlier */
	  border: 1px solid white;
    text-transform: uppercase;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 3px;
	font-weight:500;
}

.resources-listing-footer .members_button a:hover, .resources-listing-footer a.members_button:hover{
    font-size: 12px;
   padding: 8px 5px;
	 margin: 0px 5px 5px 5px;
	}

.resources-listing-footer .members_button a, .resources-listing-footer a.members_button{
 font-size: 12px;
   padding: 8px 5px;
	margin: 0px 5px 5px 5px;
	}
.bottom-button-container{
	position:relative;
	padding-bottom: 50px;
}

.absolute-button-block a{
	    background-color: var(--brand2);
    /* border: 1px solid var(--brand2); */
    text-transform: uppercase;
    font-size: 18px;

    padding: 12px 20px;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
	 position: absolute!important;
   bottom:0px;
    right: 0;
    left: 0;
    text-align: center;
    margin: 0 50px 10px 50px;
}
.absolute-button-block a:hover{
    background-color: var(--brand1) !important;
    /* border: 1px solid #fff !important; */
    color: #fff;
    font-weight: 500;
}


/*-----General Buttons------*/

/*-----brand1 button------*/
    .brand1_button a,
    a.brand1_button {
        background-color: var(--brand1);
        /*border: 1px solid var(--brand2);*/
        text-transform: uppercase;
        font-size: 18px;
        display: inline-block;
        line-height: 1;
        padding: 12px 20px;
        border-radius: 3px;
        color: #fff;
    }
 
    .brand1_button a:hover,
    a.brand1_button:hover
 {
        background-color: var(--brand1) !important;

        color: #fff;
	     opacity: 0.9;
  filter: alpha(opacity=90); /* For IE8 and earlier */
    }
/*-----brand2 button------*/
    .brand2_button a,
    a.brand2_button {
        background-color: var(--brand2);
        /*border: 1px solid var(--brand2);*/
        text-transform: uppercase;
        font-size: 18px;
        display: inline-block;
        line-height: 1;
        padding: 12px 20px;
        border-radius: 3px;
        color: #fff;
    }
 
    .brand2_button a:hover,
    a.brand2_button:hover{
        background-color: var(--brand2) !important;
    
        color: #fff;
	     opacity: 0.9;
  filter: alpha(opacity=90); /* For IE8 and earlier */
    }
    

/*-----brand3 button------*/
    .brand3_button a,
    a.brand3_button {
        background-color: var(--brand3);

        text-transform: uppercase;
        font-size: 18px;
        display: inline-block;
        line-height: 1;
        padding: 12px 20px;
        border-radius: 3px;
        color: #fff;
    }
 
    .brand3_button a:hover,
    a.brand3_button:hover{
        background-color: var(--brand3) !important;
    
        color: #fff;
	     opacity: 0.9;
  filter: alpha(opacity=90); /* For IE8 and earlier */
    }
    
