* {
    box-sizing: border-box;
}

.tarif-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tarif-card {
	width:33%;
    position: relative;
    max-width: 290px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
    padding: 40px 15px 20px;
    margin: 15px;
}

.tarif-card.select {
	padding: 50px 25px 30px;
    margin: 5px;
	max-width: 310px;
    background: #FFFFEF;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.2);
}

.tarif-card-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    padding-bottom: 20px;
}

.tarif-old-price {
    font-weight: 450;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: line-through;
    color: #F30505;
    padding-bottom: 10px;
}

.tarif-new-price {
    font-weight: 450;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    padding-bottom: 20px;
}

.tarif-btn {
    background: #FFEA00;
    border-radius: 3px;
    font-weight: 450;
    font-size: 14px;
    line-height: 17px;
    color: #2C2F33 !important;
    display: inline-block;
    padding: 9px 35px;
    margin-top: 20px;
	text-decoration:none;
}

.good {
    position: absolute;
    width: 100px;
    top: 17px;
    left: -25px;
    text-align: center;
    font-weight: 450;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    background: #DB0F0F;
    transform: rotate(-45deg);
}

.new {
    background: #F4FFE7; width:100%;
}

.new {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    border: none;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.2);
    padding: 35px 100px;
    margin: 15px;
    text-align: left;
}

.new .tarif-card-title {
    padding: 0;
}

.new .tarif-btn {
    background: transparent;
    border-radius: 30px;
    padding: 9px 35px;
    margin-top: 0;
    margin-left: 20px;
    border: 1px solid #000000;
}

.new .good {
    background: #50DB0F;
}

@media(max-width: 991px) {
    .new {
        padding: 45px 20px;
    }
}

@media(max-width: 767px) {
	
.tarif-card {
	width:100%;
}
    .new {
        max-width: 290px;
        text-align: center;
    }

    .new .tarif-btn {
        margin-top: 20px;
        margin-left: 0;
    }

    .right {
        margin: 0 auto;
    }
}


.i {display:inline-block; width:26px; height:26px; text-align:center; border-radius:13px; border:#6C6C6C 1px solid; background-color:#FFC; font-weight:bold; cursor:pointer; }