﻿
.ogPayUI_CardInput {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	font-size: 24px;
	float: left;
	z-index: 9998;
	position: relative;
}

.ogPayUI_CardIcon {
	position: relative;
	height: 42px;
}

	.ogPayUI_CardIcon i {
		position: absolute;
		left: 5px;
		/* top: 50%; */
		/* transform: translateY(-50%); */
		color: #757575;
		z-index: 9999;
		height: 42px;
		display: inline-flex;
		justify-content: space-between;
		align-items: center;
	}

	.ogPayUI_CardIcon input[type="text"] {
		padding-left: 45px;
		height: 42px;
		width: 100%;
	}

.ogPayUI_InputTextHolder {
	height: 100%;
	width: 100%;
	position: relative;
}

	.ogPayUI_InputTextHolder::before {
		content: "";
		position: absolute;
		left: 1%;
		bottom: 0px;
		height: 1.5px;
		width: 0%;
		background: #4c95c8;
		box-shadow: 0px 2px 4px 1.7px #eeb079;
		opacity: 0;
		transition-duration: 750ms, 750ms, 750ms, 750ms, 750ms, 1s;
		transition-property: width, background, box-shadow, left, opacity;
		transition-delay: 0s, 0s, 0s, 0s, 0s, 500ms;
		z-index: 9999;
	}

.ogPayUI_InputTextHolderSel {
	height: 100%;
	width: 100%;
	position: relative;
}

	.ogPayUI_InputTextHolderSel::before {
		content: "";
		position: absolute;
		left: 0%;
		bottom: 0px;
		height: 2.5px;
		width: 100%;
		background: #eeb079;
		box-shadow: 0px 2px 4px 1.7px #4c95c8;
		opacity: 1;
		transition-duration: 750ms, 750ms, 750ms, 750ms, 750ms, 1s;
		transition-property: width, background, box-shadow, left, opacity;
		transition-delay: 0s, 0s, 0s, 0s, 0s, 500ms;
		z-index: 9999;
	}

#OgPay_CardField {
	height: 44px;
}

#OgPayHeader {
	text-align: center;
	font-size: 22px;
	color: #fff;
	font-weight: 700
}

#OgPayContent {
	font-size: 18px;
	text-align: center;
}

#OgPaymentContent {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 10px;
}

.ogPaymentWindow {
	background-color: #a1a1a1;
	border-radius: 12px;
	padding: 10px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	box-shadow: 0 0 4px 2px #000000;
	outline: 2px solid #c7c7c757;
	outline-offset: -1px;
	overflow: visible;
}

.ogPaymentContent {
	background-color: #575757;
	padding: 5px 10px 15px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 5px;
	align-items: stretch;
	border-radius: 8px
}

.ogPayUI_CardDetailContainer {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	column-gap: 20px;
}

.paypal-button-container {
	border-radius: 5px;
	background-color: #FFFFFF;
	padding: 20px;
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
}

.card_container {
	border-radius: 5px;
	background-color: #FFFFFF;
	padding: 20px;
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
}

.card_field {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	font-size: 24px;
	float: left;
	z-index: 9998;
	position: relative;
}

.txtCardData {
	width: 100%;
	padding: 4px 8px;
	box-sizing: border-box;
	border-radius: 0px;
	outline: none;
	font-size: 24px;
}

	.txtCardData::placeholder {
		font-size: 24px;
		color: #575757;
		word-spacing: -3px;
	}

	.txtCardData.DataMiddle {
		text-align: center;
	}

	.InlineInputContainer {
		display: inline-flex;
		column-gap: 8px;
	}

		.InlineInputContainer div:first-of-type {
			display: inline-flex;
			flex-direction: row;
			column-gap: 5px;
		}

.OgPay_ButtonContainer {
	display: flex;
	flex-direction: row;
	padding-top: 4px;
}

.OgPay_CardIcon {
	position: relative;
	width: 100%;
}

	.OgPay_CardIcon input {
		width: 100%;
		box-sizing: border-box;
		padding-left: 8px;
		transition: padding-left .5s .75s ease-in-out;
	}

	.OgPay_CardIcon.HasData input {
		padding-left: 50px;
		transition: all .5s ease-in-out;
	}

	.OgPay_CardIcon div {
		position: absolute;
		left: 6px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 24px;
		color: #888;
		height: 24px;
		width: 38px;
		background-size: auto 24px;
		background-repeat: no-repeat;
		opacity: 0;
		transition: all .5s .25s ease-in-out;
	}

		.OgPay_CardIcon div.CardType_Visa {
			background-image: url(../images/ogpay/cardlogos/OgPayLogo_Visa.png);
			opacity: 1;
			transition: opacity .5s .25s ease-in-out;
		}

		.OgPay_CardIcon div.CardType_MasterCard {
			background-image: url(../images/ogpay/cardlogos/OgPayLogo_MasterCard.png);
			opacity: 1;
			transition: opacity .5s .25s ease-in-out;
		}

		.OgPay_CardIcon div.CardType_Amex {
			background-image: url(../images/ogpay/cardlogos/OgPayLogo_Amex.png);
			opacity: 1;
			transition: opacity .5s .25s ease-in-out;
		}

.OgPay_PayPalPowered {
	width: 100%;
	background: linear-gradient(90deg, rgba(73, 142, 201, 0) 0%, rgba(73, 142, 201, 1) 10%, rgba(73, 142, 201, 1) 49%, rgba(245, 118, 30, 1) 51%, rgba(245, 118, 30, 1) 90%, rgba(245, 118, 30, 0) 100%);
	display: flex;
	justify-content: center;
}