.widget-prices-2{
    padding:100px 20px;
}
.widget-prices-2 .container{
    overflow:visible;
}
.widget-prices-2 .ui-title{
    margin: 0px auto;
    max-width: 400px;
    text-align: center;

    transform: translateY(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-prices-2 .ui-title[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-prices-2 ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style:none;
    margin:80px 50px 0px;
    overflow:visible;
}
.widget-prices-2 ul li{
    width: 33.33%;
    padding:30px;
    background: #fff;
    box-sizing: border-box;
    text-align:center;
    box-shadow: 0px 0px 20px 0px rgb(85 139 251 / 10%);
    -webkit-box-shadow: 0px 0px 20px 0px rgb(85 139 251 / 10%);
    -moz-box-shadow: 0px 0px 20px 0px rgba(85,139,251,0.1);
    
    transform: translateY(100px);
	opacity: 0;
	transition: 1.5s;
	position:relative;
	overflow:hidden;
}
.widget-prices-2 ul li.highlight{
    background: var(--background-03);
	padding:60px 30px;
    z-index: 1;
}
.widget-prices-2 ul li[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.8s;
}
.widget-prices-2 ul li:nth-child(2)[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-prices-2 ul li:nth-child(2){
    /*padding:60px 30px;
    z-index: 1;*/
}
.widget-prices-2 ul li .ui-discount{
    background: #1a9b56;
    position: absolute;
    width: 189px;
    top: 25px;
    left: -45px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 110%;
    padding: 5px 52px;
    transform: rotate(-45deg);
}
.widget-prices-2 ul li .ui-discount i{
    font-style: normal;
}
.widget-prices-2 ul li .ui-title{
    font-size:26px;
}
.widget-prices-2 ul li .ui-title span{
    color:var(--color-01);
}
.widget-prices-2 ul li .el-licences{
    display:block;
    line-height: 100%;
    font-weight: 400;
    color:var(--color-01);
    margin-top:15px;
}
.widget-prices-2 ul li ul{
    display: block;
    margin:40px 0px;    
    font-size:14px;
}
.widget-prices-2 ul li ul li,
.widget-prices-2 ul li ul li:nth-child(2){
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    width: auto;
    padding: 5px 0px;
    transform: none;
	opacity: initial;
	transition: none;
}
.widget-prices-2 ul li .el-price{
    display:block;
    font-size:45px;
    font-weight: 600;
    line-height: 100%;
}
.widget-prices-2 ul li .el-price .decimals,
.widget-prices-2 ul li .el-price small{
    font-size:50%;
    font-weight: 500;
}
.widget-prices-2 ul li .el-price .decimals{
	display:none;
}
.widget-prices-2 ul li .el-price i{
    display: block;
    font-size: 40%;
    font-style: normal;
    font-weight: 100;
    text-decoration: line-through;
    opacity: 0.6;
}
.widget-prices-2 ul li .el-legend{
    display:block;
    font-size:12px;
    line-height: 150%;
    margin-top:20px;
    color:#707070;
}
.widget-prices-2 ul li .ui-button{
    width: 100%;
    margin-top:15px;
}


@media all and (max-width: 1024px){
	.widget-prices-2 ul{
        margin:80px 0px 0px;
    }
}
@media all and (max-width: 768px){
	.widget-prices-2 ul li{
        width: 75%;
    }
    /*.widget-prices-2 ul li:nth-child(2){
        width: calc(75% + 60px);
    }*/
	.widget-prices-2 ul li.highlight{
        width: calc(75% + 60px);
    }
}
@media all and (max-width: 600px){
	.widget-prices-2 ul li{
        width: 90%;
    }
    /*.widget-prices-2 ul li:nth-child(2){
        width: 98%;
    }*/
	.widget-prices-2 ul li.highlight{
        width: 98%;
    }
}