Borda em degrade

Insira o código no campo CSS personalizado do widget ou container:

				
					selector {
 border: 5px solid;
 border-image: linear-gradient(100deg,#549D3B, #BAA503) 1;
}
				
			
				
					selector {
 border: 5px solid;
 border-image: linear-gradient(100deg,#549D3B, #BAA503) 1;
 border-left:0px;
 border-bottom:0px;
 border-right:0px;
}
				
			
				
					selector {
 border: 5px solid;
 border-image: linear-gradient(100deg, transparent, #549D3B, transparent) 1;
 border-left:0px;
 border-bottom:0px;
 border-right:0px;
}
				
			
				
					selector::after,
selector::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: trasparent;
    z-index: 1;
    border-radius: 20px;
}
selector::before{
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(100deg,#549D3B, #BAA503);
    z-index: 0;
}
				
			
				
					/* Box feature */
selector:before {
    content: "";
    width: 50px;
    height:4px;
    position: absolute;
    top: -2px;
    left: 25px;
    z-index: 2;
    background-image: linear-gradient(to right,#B5FFF2, #01FFD1);
    box-shadow: 0 0 5px 2px #01FFD175, 0 0 15px 0px #DDFEF85C;
}