/*
==================================================

Body Copy Module 

===================================================
*/
.full-width-copy .body-copy figure,
.full-width-copy .body-copy .html-container {
	display: block;
	float: left;
	padding-right: 2.25vw;
	margin-top: 10px;
}

.full-width-copy .body-copy figure,
.full-width-copy .body-copy div.html-container {
	width: 35%;
	margin-left: 0;
}

.full-width-copy .body-copy h1:first-of-type:after,
.full-width-copy .body-copy h2:first-of-type::after {
	display: none;
}

.full-width-copy figcaption {
	background: var(--light-gray);
	padding: 10px 5px 10px 10px;
	float: left;
	margin-top: 0;
	width: 100%;
	box-sizing: border-box;
}

.full-width-copy figure img {
	width: 100%;
	padding-right: 0;
	margin-top: 0;
	height: auto;
}

@media (min-width: 1440px) {
	.full-width-copy .body-copy figure,
	.full-width-copy .body-copy div.html-container {
		width: 25%;
	}
}

@media (max-width: 767px) {
	.full-width-copy .body-copy figure,
	.full-width-copy .body-copy div.html-container {
		width: 50%;
    padding-right: 20px;
	}
}

@media (max-width: 420px) {
	.full-width-copy .body-copy figure,
	.full-width-copy .body-copy div.html-container {
		width: 100%;
		margin-left: 0;
	}
}

/* FIRST LETTER CHANGE */
.first-letter .copy-container>span[id]>p:first-of-type,
.first-letter .copy-container>p:first-of-type {
	position: relative;
	z-index: 0;
}

.first-letter .copy-container>span[id]>p:first-of-type+*,
.first-letter .copy-container>p:first-of-type+* {
	position: relative;
	z-index: 1;
}

.first-letter .copy-container>span[id]>p:first-of-type::first-letter,
.first-letter .copy-container>p:first-of-type::first-letter {
	float: left;
	color: var(--font-color);
	font-size: 130px;
	line-height: 100px;
	padding: 10px 20px 10px 0;
	font-family: var(--TradeGothicBoldCn)
}

.first-letter .copy-container>span[id]>p:first-of-type:after,
.first-letter .copy-container>p:first-of-type:after {
	position: absolute;
	top: -1.5em;
	left: -2.5em;
	display: block;
	float: left;
	content: " ";
	height: 180px;
	width: 180px;
	border-radius: 100%;
	background-color: #f1f1f1;
	z-index: -1;
}

.first-letter .visual-element {
	height: 0;
}

/* Body Copy Changes 
==========================================*/
.body-copy-module h1,
.body-copy-module h2,
.body-copy-module h3,
.body-copy-module h4,
.body-copy-module h5,
.body-copy-module h6 {
	margin-bottom: 10px;
}

div.html-container.side-html h2,
div.html-container.side-html h3,
div.html-container.side-html h4,
div.html-container.side-html h5,
div.html-container.side-html h6,
div.html-container.side-html p {
	margin: 0;
	width: 100%;
}

.red-border {
    border: 2px solid var(--maroon);
    background: transparent;
    font-family: var(--TradeGothicCn);
    display: block;
    border-radius: 3px;
}
select.red-border option {
    font-family: var(--TradeGothicCn) !important;
}

/* Tool Tip */
.tool-tip {
    position: relative;
    margin-left: 3px;
}
    .tool-tip::before {
        background-image: var(--information-icon);
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        transform: scale(1.2);
    }
.tool-tip-info {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    font-size: 14px;
    width: 150px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: -1px 0 15px 4px;
    z-index: 10;
    line-height: 1;
}
.tool-tip:after {
    display: none;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    z-index: 11;
    border: 20px solid transparent;
    border-bottom: 20px solid white;
}
.tool-tip[data-direction="up"] .tool-tip-info {
    bottom: calc(100% + 10px);
    top: unset;
}

.tool-tip[data-direction="up"]:after {
    border: 20px solid transparent;
    border-top: 20px solid white;
    top: -20px;
    bottom: unset;
}

.tool-tip:hover .tool-tip-info,
.tool-tip.show-tip .tool-tip-info,
.tool-tip:hover:after,
.tool-tip.show-tip:after  {
    display: block;
}
/*
========================================================

9.Persistent Module

========================================================
*/
.persistent-module .body-copy .icon-img {
	width: 100px;
	margin-bottom: 20px;
}

.persistent-banner {
	will-change: transform;
	transition: transform 0.2s ease;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	width: 100%;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--component-background-color);
	color: var(--font-color);
	z-index: 5;
	opacity: 1;
}

.persistent-banner.show {
	transform: translate3d(0, 0, 0);
}

.persistent-banner.hide {
	transform: translate3d(0, 100%, 0) !important;
}

.persistent-banner .section-container {
	padding-top: 25px;
	padding-bottom: 25px;
	position: relative;
}

/* .persistent-banner .section-container.bodyCopy-container {
	display: flex;
	justify-content: flex-start;
} */

.persistent-banner .body-copy h2 {
	position: static;
}

.persistent-banner .visual-element {
	height: 3px;
	background-color: var(--main-highlight-color);
}


.persistent-banner .copy-container {
	white-space: nowrap;
}

.persistent-banner a {
	box-shadow: 0px 0px 0px 0px !important;
	border: none;
}

.persistent-banner a::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	content: "";
}

.persistent-banner a::after {
	display: none !important;
}

.persistent-banner .body-copy h2 {
	margin-bottom: 0px !important;
	padding-bottom: 0px !important;
	display: inline-block;
}

.persistent-banner a .banner-text {
	transition: all .2s ease;
}

.persistent-banner a:hover .banner-text {
	box-shadow: var(--hover-underline-width);
	cursor: pointer;
}

.persistent-banner a img {
	margin-left: 15px;
	padding-bottom: 1px;
	box-sizing: border-box;
	cursor: pointer;
	transition: transform 0.2s;
	max-width: 16px;
	max-height: 16px;
	transform: scale(2);
	display: inline-block;
	vertical-align: middle;
}

.persistent-banner a:hover img {
	transform: scale(2.5);
}

.persistent-banner span.closebtn {
	display: none;
	position: absolute;
	right: var(--default-column-gap);
	top: 0;
	bottom: 0;
}

.persistent-banner h2:after {
	display: none;
}

.show-closebtn .persistent-banner span.closebtn {
	display: block;
}

@media screen and (max-width: 1023px) {
	.persistent-banner .section-container {
		padding-top: 12.5px;
		padding-bottom: 12.5px;
	}
}

@media screen and (max-width: 767px) {
	#hamburger {
		margin-bottom: 2.5%;
	}

	.persistent-banner span.closebtn {
		right: 0;
		margin: 0 20px;
	}
}

/* Custon CSS */
.hide-banner .persistent-banner.show {
	transform: translate3d(0, 100%, 0) !important;
	display: none;
}

.persistent-module .custom-form {
	padding: 0 !important;
}

.persistent-module .custom-form .slate-container {
	max-width: 100% !important;
	margin: 0 !important;
}

.hide-cta.persistent-module .copy-container > p:last-child,
.hide-cta.persistent-module .copy-container > p:nth-last-child(2) a.btn,
.hide-img.persistent-module .body-copy > img.icon-img:first-child {
	display: none;
}

/*
========================================================

Block Quote

========================================================
*/
.quote .copy-container {
	display: flex;
}

.quote img {
	position: sticky;
	bottom: 0px;
	top: 20px;
	max-width: 20%;
	display: block;
	width: 100%;
	height: auto;
	margin-right: var(--default-column-gap);
	align-self: flex-start;
}

.quotebody p,
.quoteName {
	font-family: var(--TradeGothicCn);
	line-height: var(--line-height-cn);
}

.quote img+.quotebody {
	max-width: 34.5%;
	margin: auto 0;
}

.quoteName {
	margin-top: 20px;
	text-align: right;
}

/*
========================================================

BQ BreakPoints

========================================================
*/

@media screen and (max-width: 1023px) {
	.quote img {
		margin-left: 0 !important;
	}

	.quote img+.quotebody {
		max-width: 54%;
	}
}


@media screen and (max-width: 767px) {
	.quote img {
		max-width: 30%;
		width: 100%;
	}

	.quote img+.quotebody {
		max-width: 70%;
	}
}

/*
==========================================================

HTTML Container 

==========================================================
*/
.html-module .html-container {
	width: 100%;
}

.html-module .html-container img {
	max-width: 100%;
}