/********************************************************************
LIST PAYMENT
********************************************************************/
.list-group.list-payment{
	max-height: 400px;
	overflow-y: auto;
    margin-bottom: 1rem;
}

.list-group.list-payment .list-type {
	text-align: center;
	font-weight: bold;
	background-color: #F4F4F4;
	padding-top: .8rem;
	padding-bottom: .8rem;
	*font-size: .8rem;
	font-size: inherit;
}

.list-group.list-payment .list-group-item{
	padding: 0px;
}

.list-group.list-payment .list-group-item input{
	position: absolute;
	opacity: 0;
}

.list-group.list-payment .list-group-item label{
	padding: 0 15px 0 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 50px;
	margin: 0;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
}

.list-group.list-payment .list-group-item label:hover {
	cursor: pointer;
	background-color: #f3f3f3;
}

.list-group.list-payment .list-group-item input:checked + label {
	background-color: #e3e3e3;
}

.list-group.list-payment .list-group-item label .list-payment__item-img {
	width: 70px;
	margin-right: 15px;
}

.list-group.list-payment .list-group-item label .list-payment__item-img img{
	max-width: 70px;
	max-height: 50px;
}

.list-group.list-payment .list-group-item label .list-payment__item-label {
	*font-size: .8rem;
	font-size: inherit;
}

/* Payment Button */
.payment-button {
	position: relative;
	margin: 0;
	margin-bottom: 1rem;
	text-decoration: none;
	*font-size: .8rem;
	font-size: inherit;
	
	background-color: #fff;
	border: 1px solid #ced4da;
	border-color: #a2a2a2;
	border-radius: .3rem;
	width: 100%;
	
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
}

.payment-button .payment-button_wrapper > .payment-button__input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	top: 100%;
}

.payment-button:not(.selected) {
	
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 15px 0 15px;
	height: 50px;
	color: #495057;
}

.payment-button .payment-button_icon {
	position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    background: url(https://api.iconify.design/el-chevron-down.svg) no-repeat right 0 center/8px 10px;
    width: 9px;
    height: 9px;
}

.payment-button .list-group-item{
	padding: 0px;
	width: 100%;
	border: 0;
	background-color: transparent;
	overflow: hidden;
}

.payment-button .list-group-item input{
	position: absolute;
	opacity: 0;
}

.payment-button .list-group-item label{
	padding: 0 15px 0 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 50px;
	margin: 0;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
}

.payment-button .list-group-item input:checked + label {
	background-color: #fff;
}

.payment-button .list-group-item label .list-payment__item-img {
	width: 70px;
	margin-right: 15px;
}

.payment-button .list-group-item label .list-payment__item-img img{
	max-width: 70px;
	max-height: 50px;
}

.payment-button .list-group-item label .list-payment__item-label {
	*font-size: .8rem;
	font-size: inherit;
}

.payment-button:hover,
.payment-button .list-group-item label:hover,
.payment-button .list-group-item input:checked + label:hover {
	text-decoration: none;
	color: #495057;
	background-color: #f3f3f3;
	cursor: pointer;
}

/* Modal */
#modal_payment_method .modal-header {
	padding: 0;
	border: 0;
}

#modal_payment_method .modal-header .close {
	position: absolute;
	float: none;
	right: 0;
	top: 0;
	/* padding: 0; */
	margin: 0;
	padding: .4rem;
	margin-left: auto;
	z-index: 2;
	box-shadow: none;
	outline: 0;
}

#modal_payment_method .modal-body {
	padding: 0;
}

#modal_payment_method .modal-body .list-group.list-payment {
	margin-bottom: 0;
	max-height: none;
	overflow: unset;
}