﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
	white-space: normal;
	text-align: center;
	word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
	font-size: 14px;
}
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.border-top {
	border-top: 1px solid #e5e5e5;
}
.border-bottom {
	border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

button.accept-policy {
	font-size: 1rem;
	line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
	position: relative;
	min-height: 100%;
}

body {
	/* Margin bottom by footer height */
	margin-bottom: 60px;
}
.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	white-space: nowrap;
	/* Set the fixed height of the footer here */
	height: 60px;
	line-height: 60px; /* Vertically center the text there */
}

/*------Strip card element------------*/

.MyCardElement {
	height: 40px;
	padding: 10px 12px;
	width: 100%;
	color: #32325d;
	background-color: white;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	/* box-shadow: 0 1px 3px 0 #e6ebf1;
	-webkit-transition: box-shadow 150ms ease;
	transition: box-shadow 150ms ease; */
}

.MyCardElement--focus {
	box-shadow: 0 1px 3px 0 #cfd7df;
}

.MyCardElement--invalid {
	border-color: #fa755a;
}

.MyCardElement--webkit-autofill {
	background-color: #fefde5 !important;
}

/*-----------End------------*/

/*-----------button css--------------*/

.confirm-payment {
	border-radius: 4px;
	border: none;
	outline: none;
	color: #fff;
	background: #32325d;
	white-space: nowrap;
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 14px;
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-decoration: none;
	-webkit-transition: all 150ms ease;
	transition: all 150ms ease;
	float: left;
	margin-top: 28px;
	width: 152px;
}

.confirm-payment:hover {
	transform: translateY(-1px);
	box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
	background-color: #43458b;
}

.confirm-payment.payment-processing,
.confirm-payment.payment-processing:hover {
	background-color: #d3d3d3;
}

.confirm-payment.payment-succeeeded,
.confirm-payment.payment-succeeeded:hover {
	background-color: #4bb543;
}

/************************end of button css-------------------------------*/

/************************payment form*-------------------------------------*/
#paymentForm label {
	width: 100%;
}

#paymentForm legend {
	font-weight: 600;
	font-size: 18px;
}

#paymentForm label {
	margin-top: 10px;
	display: block;
}

#paymentForm fieldset ~ label {
	font-size: 18px;
}

#paymentForm.fade-exit {
	opacity: 1;
}

#paymentForm.fade-exit-active {
	opacity: 0;
	transform: translateY(100px);
	transition: opacity 600ms, transform 600ms;
	transition-delay: 400ms;
}

#paymentComplete {
	background-color: #4bb543;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: 40px;
	border-radius: 4px;
}

#paymentComplete h2 {
	font-size: 28px;
	font-weight: 600;
}

#paymentComplete.fade-enter {
	opacity: 0;
	transform: scale(0.9);
}

#paymentComplete.fade-enter-active {
	opacity: 1;
	transform: translateX(0);
	transition: opacity 400ms, transform 400ms;
}
/****************************end of payment form*/


.outstanding-payment-link{
	width:100%;
}

.outstanding-payer{
	font-weight:bold;
	font-size: 18px;
}


#GiftAidAddress{
	white-space:pre;
}



#BrowserPaymentWrapper{
	margin-bottom:1.75rem;
}

#BrowserPaymentWrapper + p{
	font-weight:bold;
} 