.evc-widget{
	position:relative;
    width: 100%;
    display: flex;
	color:white;
    flex-direction: column;
    align-items: center;
	background-color: #2292a7;
	min-height:88px;
	justify-content : space-between;
	padding-right: 10px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
	cursor : pointer;
	transition: background-color 0.2s ease-in;
}

.evc-widget:hover
{
	background-color:#0e8298;
}

.evc-widget.selected:hover{
	background-color: #2292a7;
}

.payment-widgets .evc-widget.selected{
	border-bottom: 1px solid #fdb656;
    border-left: 1px solid #fdb656;
    border-right: 1px solid #fdb656;
    border-top: 1px solid #fdb656;
}

.evc-widget.selected.selected-top{
	box-shadow: 0px -10px 0px #fdb656;
	border-bottom: 1px solid #fdb656;
    border-left: 1px solid #fdb656;
    border-right: 1px solid #fdb656;
    border-top: 2px solid white;
}
.evc-widget.selected.selected-left{
	box-shadow: -10px 0px 0px #fdb656;
	border-bottom: 1px solid #fdb656;
    border-left: 2px solid white;
    border-right: 1px solid #fdb656;
    border-top: 1px solid #fdb656;
}
.evc-widget.selected.selected-right{
	box-shadow: 10px 0px 0px #fdb656;
	border-bottom: 1px solid #fdb656;
    border-left: 1px solid #fdb656;
    border-right: 2px solid white;
    border-top: 1px solid #fdb656;
}
.evc-widget.selected.selected-bottom{
	box-shadow: 0px 10px 0px #fdb656;
	border-bottom: 2px solid white;
    border-left: 1px solid #fdb656;
    border-right: 1px solid #fdb656;
    border-top: 1px solid #fdb656;
}  

.evc-widget .widget-body{
    width: 100%;
	height : 80%;
	cursor : pointer;
}
.evc-widget .widget-footer{
    width: 100%;
	height : 20%;
	border-top : 2px solid white;
	font-size: 0.7em;
	padding-top: 3px;
    padding-left: 3px;
}

/*
[evc-module="payment"] .payment-widgets div[class^="widget-btn-"]{
	border : 1px solid #00008b;
	width: 70%;
	padding : 8px;
	border-radius: 4px 4px 0px 0px;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	cursor: pointer;
	color:#00008b;
}


[evc-module="payment"] .payment-widgets div.widget-btn-visit{
	border-radius: 4px 4px 4px 4px;
}

[evc-module="payment"] .payment-widgets .widget-group .sub-amount{
	width: 70%;
    text-align: center;
    border-right: 1px solid #00008b;
	border-left: 1px solid #00008b;
	border-bottom: 1px solid #00008b;
	background-color: #00008b;
	color:white;
	border-radius: 0px 0px 4px 4px;
}

[evc-module="payment"] .payment-widgets div[class^="widget-btn-"]:hover{
	background-color: #6495ed;
	color:white;
}

[evc-module="payment"] .payment-widgets div[class^="widget-btn-"].selected{
	background-color: #6495ed;
	color:white;
}

[evc-module="payment"] .payment-widgets div[class^="widget-btn-"].selected:hover{
	background-color: #6495ed;
	color:white;
}


[evc-module="payment"] .payment-widgets div[class^="widget-btn-"].disabled{
	background-color: #969696;
	color:white;
}

[evc-module="payment"] .payment-widgets div[class^="widget-btn-"].disabled:hover{
	background-color: #969696;
	color:white;
}*/