
/******************************************************************************************
	PRICING TABLE
************************************************************************/	

#ypt {
	margin: 0 auto;
	
} 

#ypt .badge_ypt {
	position: absolute;
    top: 0;
    left: 0;
    background: #e21c02;
    color: white;
    padding: 1px 35px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-45deg);
    margin-top: 18px;
    margin-left: -33px;
    font-weight: 500;
    font-size: 13px;
	
}

#ypt .star_ypt {
    position: absolute;
    top: 0;
    right: 0;
	
    color: #f4b83e;
    padding: 1px 35px;
    font-size: 14px;
    font-weight: bol;
	
    margin-top: 10px;
    margin-right: -15px;
	
    font-size: 30px;
	
}

#ypt hr {
	border: none;
    border-top: 1px solid #8a8a8a;
	width:100%;
}

#ypt_container {
    padding: 25px 50px;
    background: linear-gradient(160deg, #ffd4e1, #fff9d4);
    border-radius: 10px;
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 9px 16px 13px -5px rgba(63,63,63,0.5); 
	box-shadow: 9px 16px 13px -5px rgba(63,63,63,0.5);
}

.ypt_header {
    display: flex;
    flex-direction: column;
}

.ypt_header h2 {
	font-family: "League Spartan", Sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #403f3e;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0;
    margin: 0;
    text-align: center;
}


.ypt_header span {
	font-style: italic;
    font-family: "Open Sans", Sans-serif;
    text-transform: none;
    font-size: 16px;
    font-weight: 400;
    color: #222832;
    text-align: center;
}

.ypt_row {
    display: flex;
    flex-direction: row;
	gap: 20px;
	margin-top: 18px;
	align-items: center;
}


.ypt_icon .fa-circle-check {
    color: #249700;
    font-size: 25px;
}

.ypt_info .title {
    font-family: "League Spartan", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #403f3e;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
}

.ypt_info  span {
    font-family: "Open Sans", Sans-serif;
    text-transform: none;
    font-size: 12px;
    font-weight: 400;
    color: #222832;
    text-align: center;
}

/******************************************************************************************
	PRICE DIV
************************************************************************/	


#ypt_price_container {
    background-color: #413f3d;
    border-radius: 10px;
    color: #fff;
    padding: 10px 50px;
    margin-top: 15px;
	position: relative;
	overflow: hidden;
}

.ypt_badge_discount {
	position: absolute;
    top: -40px;
    right: -13px;
    padding: 48px 0px 0px 38px;
    background: #fe3426;
    color: white;
    width: 125px;
    height: 100px;
    border-radius: 0px 10px 0px 100px;
    display: flex;
	
    flex-direction: row;
}


.ypt_badge_discount .discount_value {
	font-size: 38px;
	
    line-height: 1;
	
}

.ypt_badge_discount .discount {
    display: flex;
    flex-direction: column;
    line-height: 1;
}



.ypt_box_price {
	
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
}

.ypt_box_sconto {
    font-family: "League Spartan", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.ypt_box_sconto::after {
	content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e74c3c;
    transform: rotate(-20deg);
}

.ypt_box_price_number {
    font-family: "League Spartan", Sans-serif;
    font-size: 55px;
    font-weight: 700;
    position: relative;
	
}

.ypt_box_month {
	font-family: "Open Sans", Sans-serif;
    text-transform: none;
    font-size: 15px;
    font-weight: 700;
    align-self: center;
	
}


.ypt_box_price_text {
    font-family: "League Spartan", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    letter-spacing: 1.2px;
    text-align: center;
    margin-top: -10px;
}

#pricing_section .footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 30px;
}

#pricing_section .footer p {
    font-style: italic;
    font-size: 15px;
}

#pricing_section .footer a {
    background-color: #e8e9e4;
    border: 2px solid #e8e9e4;
    text-transform: uppercase;
    color: var(--text);
    border-radius: 5px;
    padding: 7px 20px;
    font-size: 15px;
    font-weight: 400;
    font-family: "League Spartan", Sans-serif;
    cursor: pointer;
}

#pricing_section .footer a:hover {
	background-color: transparent;
	border:2px solid #e8e9e4;
	transition:.5s;
}


/******************************************************************************************
	DOWNLOAD BUTTON
************************************************************************/	


#ypt_button_container a {
	background-color: var(--main-color);
    color: var(--text);
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 5px 20px;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    display: inline-flex	;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 300px;
    transition: background-color 0.3s ease;
    justify-content: center;
	text-transform:uppercase;
	width:100%;
    margin-top: 15px;
}  


#ypt_button_container a:hover {
	background-color: transparent;
	border:1px solid var(--main-color);
	transition:.5s;
}