/* @override 
	https://www.transmaraton.org/wp-content/themes/transmaraton/css/modules/buttons.css?* */
/* Buttons */
button {
	-webkit-appearance: none;
}

.btn {
	font-family: "montserrat", Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1em;
	white-space: nowrap;
	transition: all 0.5s cubic-bezier(.23,1,.32,1);
	border-radius: 2px;
}

.btn:hover:before,
.btn-outline:before {
	display: none;
}

.btn-primary {
	border: none;
	border-radius: 2px;
	background-color: #D73B4F;
	color: #fff;
	padding: 1.6em 3.8em 1.6em 2em;
	
	display: inline-block;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	-webkit-appearance: none;
}

.btn-primary:hover {
	background-color: #EA4359;
	color: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.01), 0 8px 8px rgba(0, 0, 0, 0.01), 0 16px 16px rgba(0, 0, 0, 0.01);
	/*transform: translateY(-2px);*/
}

.btn-primary:after {
	content: "";
	height: 1em;
	width: 23px;
	background:url('data:image/svg+xml;utf8,%3Csvg width="20" height="15" viewBox="0 0 20 15" xmlns="http://www.w3.org/2000/svg"%3E%3Cg stroke="%23fff" stroke-width="2" fill="none" fill-rule="evenodd"%3E%3Cpath d="M1.992 7.5h14.721" stroke-linecap="square"/%3E%3Cpath d="M12.222 1.222L18.5 7.5l-6.278 6.278"/%3E%3C/g%3E%3C/svg%3E') no-repeat center;
	background-size: contain;
	position: absolute;
	right: 20px;
	vertical-align: middle;
	transition: all 0.4s cubic-bezier(.23,1,.32,1);
}

.btn-primary:hover:after {
	background:url('data:image/svg+xml;utf8,%3Csvg width="20" height="15" viewBox="0 0 20 15" xmlns="http://www.w3.org/2000/svg"%3E%3Cg stroke="%23fff" stroke-width="2" fill="none" fill-rule="evenodd"%3E%3Cpath d="M1.992 7.5h14.721" stroke-linecap="square"/%3E%3Cpath d="M12.222 1.222L18.5 7.5l-6.278 6.278"/%3E%3C/g%3E%3C/svg%3E') no-repeat center;
	/*transform: translateY(-45%);*/
	right: 16px;
}

.btn-outline {
	border: 2px solid #fff;
	color: #fff;
	padding: 1.2em 3.5em 1.2em 2em;
	position: relative;
	/*background-color: #fff;*/
	
}

.btn-outline:hover {
	border: 2px solid #fff;
	background-color: #fff;
	color: #D73B4F;
	padding: 1.2em 3.5em 1.2em 2em;
	position: relative;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1), 0 46px 46px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.btn-outline:after {
	content: "";
	background:url('data:image/svg+xml;utf8,%3Csvg width="20" height="15" viewBox="0 0 20 15" xmlns="http://www.w3.org/2000/svg"%3E%3Cg stroke="%23fff" stroke-width="2" fill="none" fill-rule="evenodd"%3E%3Cpath d="M1.992 7.5h14.721" stroke-linecap="square"/%3E%3Cpath d="M12.222 1.222L18.5 7.5l-6.278 6.278"/%3E%3C/g%3E%3C/svg%3E') no-repeat center;
	position: absolute;
	right: 16px;
	top: 50%;
	height: 1em;
	width: 23px;
	transform: translateY(-45%);
	transition: all 0.4s cubic-bezier(.23,1,.32,1)
	/*left: 0;*/
}

.btn-outline:hover:after {
	content: "";
	background:url('data:image/svg+xml;utf8,%3Csvg width="20" height="15" viewBox="0 0 20 15" xmlns="http://www.w3.org/2000/svg"%3E%3Cg stroke="%23D73B4F" stroke-width="2" fill="none" fill-rule="evenodd"%3E%3Cpath d="M1.992 7.5h14.721" stroke-linecap="square"/%3E%3Cpath d="M12.222 1.222L18.5 7.5l-6.278 6.278"/%3E%3C/g%3E%3C/svg%3E') no-repeat center;
	right: 12px;
}

.link-arrow {
	position: relative;
	/*color: #FCC76B;*/
	font-size: 16px;
	transition: all 0.25s ease-in;
}

.link-arrow:after {
	content: "";
	height: 1em;
	width: 23px;
	background:url(../images/arrow.svg) no-repeat center;
	background-size: contain;
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
	transform: translateX(0px);
	transition: all 0.25s cubic-bezier(.23,1,.32,1);
}

.link-arrow:hover {
	color: #FCC76B;
	/*color: red;*/
}

.link-arrow:hover:after {
	transform: translateX(10px);
}

.nf-field-element .btn-primary {
	width: 100%;
	display: block;
	margin-top: 26px;
}

.btn-no-arrow {
	padding: 1.2em 2em;
}

.btn-no-arrow:after {
	display: none;
}

.featherlight .featherlight-close-icon {
    position: absolute;
    z-index: 9999;
    top: 20px;
    right: 20px;
    line-height: 36px;
    width: 36px;
    cursor: pointer;
    text-align: center;
	font-family: Arial,sans-serif;
	font-weight: bold;
	font-size: 24px;
	background: #D73B4F;
    color: #fff;
    border: 0;
	padding: 0;
	border-radius: 100px;
}

@media (max-width: 992px) {

}

@media (max-width: 770px) {
	.btn-primary {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.btn {
		font-size: 13px;
	}
	.btn-primary {
		font-size: 14px;
	}
}