﻿
/* implement ng-cloak for angular */
.ng-cloak {
    visibility: hidden;
}      

/* IE11 selects */
select::-ms-expand {
    display: none;
}

/* zindex on form */
form#aspnetForm {
    position: relative;
    z-index: 999;
		overflow-x: hidden;
}

/* set minimum height for news/events callout*/
.content .after-content.related-content ul li a {
    min-height: 230px;
}

/* click on desktop*/
@media screen and (min-width: 894px) {
    .tab-heading.tab-heading-click-desktop {
        cursor: pointer !important;
    }
}

/* content min height */
.content-min-height {
    min-height: 700px;
}

/* top content */
.content .top-content p {
    letter-spacing: 0px;
}

/* add caret */
.with-caret:after {
    content: "›";
    margin-left: 10px;
}

/* main menu transition time*/
.main-menu .sub-menu-container .sub-nav .has-children>ul {
    -webkit-transition: 350ms opacity ease,350ms visibility ease !important;
    transition: 350ms opacity ease,350ms visibility ease !important;
}

/* Button CTA widget - general class site-wide for button */
.button--CTA {
	display: block;
	width: fit-content;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 0;
	padding: 20px;
	font-size: 20px;
	line-height: 1;
	text-align: center;
	background: #115b98;
	color: #ffffff !important;
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
	text-decoration: none;
	margin-bottom: 20px;
	margin-top: 20px;
}

.button--CTA__flex {
	display: flex;
}

@media screen and (min-width: 894px) {
	.button--CTA {
		cursor: pointer;
		opacity: 1;
		-webkit-transition: 200ms opacity ease;
		transition: 200ms opacity ease;
	}

		.button--CTA:hover {
			opacity: .7;
			-webkit-transition: 200ms opacity ease;
			transition: 200ms opacity ease;
		}
}

.button--CTA__subscribe {
	font-size: 16px;
	font-weight: 400;

}