/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2024 | 10:24:27 */
/* linee laterali VERDE */
.btn-custom-v a {
	transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.btn-custom-v a {
	position:relative;
	/*border: none !important;*/
}

.btn-custom-v a::before {
	content: "";
    position: absolute;
	bottom: -6px;
    left: 10px;
	
	background: #7FB388;
	width: calc( 100% + 2px );
    height: 1px;

	transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.btn-custom-v a::after {
	content: "";
    position: absolute;
	top: 10px;
    right: -6px;
	
	background: #7FB388;
	width: 1px;
    height: calc( 100% + 2px );

	transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.btn-custom-v a:hover::before {
	width: 0px;
}

.btn-custom-v a:hover::after {
	height: 0px;
}

.btn-custom-v a:hover {
	background-color: transparent !important;
}

/* Media query */
@media screen and (max-width: 1440px) {
	.card-prog .btn-custom-v {
		position: absolute;
    	bottom: 2em;
    	right: 2em;
	}

	.card-prog .btn-custom-v {
		bottom: 1em;
		right: 1em;
	}
}

@media screen and (max-width: 414px) {
	.card-prog .btn-custom-v {
		position: initial;
		width: 100% !important;
	}
}
