/*
Theme name: Global Coalition on Aging
Description: Custom Theme
*/

/*
	Source post-css styles are located in the postcss directory.
	The compiled bundle is in assets/bundle.css; The README.md
	file contains instructions how to get the compilation
	process up & running.

	If you need to make a quick fix, feel free to add CSS
	below this comment. It will override bundle.css styles.
*/

p {  }

.loader {
    position: relative;
}
.loader:before {
    content: '';
    background: #00000008;
    height: 100%;
    width: 75%%;
    position: absolute;
}

.loader:after {
    top: 36%;
    content: '';
    width: 48px;
    height: 48px;
    border: 5px solid #000;
    border-bottom-color: #00a4ff;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    z-index: 9;
    left: 40%;
}

.page-template-homepage .section-initiatives .tabs-slider .tab__image, .page-template-initiatives .section-intro .tabs-slider .tab__image {
    display: block;
    padding: 0;
    margin-top: 0;
}

.page-template-homepage .section-initiatives .tabs-slider .tab, .page-template-initiatives .section-intro .tabs-slider .tab  {
    padding-left: 0;
}

.page-template-homepage .tabs-slider .tab .tab__image img, .page-template-initiatives .section-intro .tabs-slider .tab .tab__image img {
	height: 100%;
}

a.banner-link-text {
    color: #fff;
    text-decoration: underline;
}

.header .logo strong {
    font-weight: 700;
}

.page-template-templates .article .article__image {
    background-position-x: 14%;
}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
} 