* {
    box-sizing: border-box;
}

body {
    background-color: #f1f1f1;
}

#regForm {
    background-color: #ffffff;
    margin: 0px auto;
    font-family: Raleway;
    padding: 40px;
    width: 70%;
    min-width: 300px;
}

h1 {
    text-align: center;
}

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: Raleway;
    border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

button {
    background-color: #c2150e;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

#prevBtn {
    background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #be160d


    ;
}
:root{
    --g-color1: #ffd7d7;
    --g-color2: #fff    ;
}
.pricingTable{
    background: linear-gradient(to left bottom,var(--g-color1),var(--g-color2));
    font-family: 'Poppins', sans-serif;
    padding: 10px 0 35px;
    border-radius: 50px;
    box-shadow: 0 0 15px -2px rgba(0,0,0,0.2);
}
.pricingTable .pricingTable-header{
    color: #fff;
    text-align: left;
    padding: 0 0 0 35px;
    margin: 0 0 25px;
}
.pricingTable .title{
    color: var(--g-color1);
    background-color: #be160d;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 10px 10px 30px;
    margin: 0 0 25px;
    border-radius: 50px 0 0 50px;
}
.pricingTable .price-value{
    text-align: center;
    display: inline-block;
}
.pricingTable .price-value .currency{
    font-size: 10px;
    line-height: 23px;
    vertical-align: top;
    display: inline-block;
}
.pricingTable .price-value .amount{
    font-size: 40px;
    font-weight: 500;
    line-height: 58px;
    display: inline-block;
}
.pricingTable .duration{
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    display: block;
}
.pricingTable .pricing-content{
    text-align: left;
    padding: 0 15px 0 35px;
    margin: 0 0 25px;
    list-style: none;
    display: inline-block;
}
.pricingTable .pricing-content li{
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 35px;
    letter-spacing: 0.5px;
    padding: 0 15px 0 40px;
    margin: 0 0 10px;
    position: relative;
}
.pricingTable .pricing-content li:last-child{ margin: 0; }
.pricingTable .pricing-content li:before{
    content: "\f00c";
    color: #fff;
    background-color: rgba(255,255,255,0.2);
    font-family: "Font Awesome 5 free";
    font-size: 17px;
    font-weight: 900;
    text-align: center;
    line-height: 31px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
}
.pricingTable .pricing-content li.disable:before{
    content: "\f00d";
    color: rgba(255,255,255,0.6);
}
.pricingTable .pricingTable-signup a{
    color: var(--g-color2);
    background-color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding: 5px 18px;
    margin: 0 35px;
    border-radius: 50px;
    display: block;
    transition: all 0.3s;
}
.pricingTable .pricingTable-signup a:hover{
    color: var(--g-color1);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.pricingTable.green{
    --g-color1: #98C944;
    --g-color2: #E8CC88;
}
.pricingTable.blue{
    --g-color1: #54B2E5;
    --g-color2: #F67AA6;
}
@media only screen and (max-width: 990px){
    .pricingTable{ margin: 0 0 40px; }
}
