/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.selectCardImageList{
	display: grid; 
	grid-template-columns: auto auto auto;
	gap: 10px;
}
.selectCardImage {
	position: relative; 
	border-radius: 10px;
	overflow: hidden; 
	background: #1d463e; 
	margin-bottom: 20px;

}
body .selectCardImage label{
	display: block;
	position: relative;
	margin:0 !important;
}
.selectCardImage label.selectedImage:after{
	content:'';
	position: absolute;
	background: #1d463ed6;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.selectCardImage label.selectedImage:before{
	content:'';
	position: absolute;
	background:url(../images/check-mark.png) no-repeat;
	top: 50%;
	left: 50%; 
	z-index: 1;
    transform: translate(-50%, -50%);
    height: 40px;
    width: 40px;
    background-size: contain;
}

.popUpImage{
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #1d463ed6;
	padding: 5px;
	height: 20px;
	width: 20px;
	border-radius: 5px;
	display: none;
}
.selectCardImage:hover .popUpImage{
	display: flex;
}
.selectCardImage img{
	width: 100%;
}
body .selectCardImage input{
	width: 100% !important;
	position: absolute !important;
	height: 100% !important;
	left: 0;
	top: 0;
	opacity: 0;
}
.selectCardFromInput{ 
	margin-bottom: 15px;
}
.selectCardFromInput label{
	display: block;
}
.selectCardFromInput input,.selectCardFromInput textarea {
	display: block;
    padding: 6px;
    margin-bottom: 4px; 
    width: 100%; 
    outline: none;
    font-family: inherit;
    font-size: inherit;
}
.sendrsCard{
	font-family: inherit;
    font-size: inherit;
    padding: 6px;
    margin-bottom: 4px;
    border: none;
}
.rs-card-success{
    background: #fff;
    padding: 10px 20px;
    border-left: 4px solid #4bb543;
    margin-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}
.rs-card-error{
    background: #fff;
    padding: 10px 20px;
    border-left: 4px solid #ff3535;
    margin-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}
@media only screen and (max-width: 600px) {
	.selectCardImageList{ 
		grid-template-columns: auto auto; 
	}
}