#plans{
    margin-bottom: 100px;
}

#plans-list{
    width: calc(100% - 60px);
    padding: 0 30px;
    text-align: center;
    margin-top: 50px;
}

.plan{
    display: inline-block;
    vertical-align: top;
    border: 1px solid #737375;
    border-radius: 15px;
    width: 270px;
    background-color: #FCFCFC;
    padding: 20px 30px;
    text-align: left;
    transition: all .2s ease-in;
    margin: 25px;
}

.plan:hover{
    border: 2px solid #9747FF;
}

.plan:hover .plan-name{
    color: #9747FF;
}

.plan-name{
    font-weight: 100;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    transition: all .2s;
}

.plan-price{
    font-weight: bold;
    font-size: 45px;
    /*margin-right: 35px;*/
}

.plan-period{
    font-size: 20px;
    color: #767C7D;
    display: block;
    margin-top: 5px;
}

.plan-started{
    background-color: #F3F3F3;
    border: 2px solid #515153;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    width: 230px;
    padding: 15px 0px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease-in;
}

.plan-started:hover{
    background-color: #9747FF;
    border: 2px solid #9747FF;
    color: white;
}

.plan ul, #pay-plan-information ul{
    /*list-style-image: url('../img/icon-list.png'); */
    list-style-type: none; /* Quita los puntos predeterminados */
    padding: 0;
}

.plan ul > li, #pay-plan-information ul > li{
    font-size: 14px;
    margin: 20px 0;
    position: relative;
    padding-left: 40px;
}

.plan ul > li::before, #pay-plan-information ul > li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Ancho de la imagen */
    height: 20px; /* Alto de la imagen */
    background-image: url('../img/icon-list_other.png'); /* Ruta de la imagen */
    background-size: cover; /* Asegura que la imagen se ajuste al contenedor */
    background-repeat: no-repeat;
}

.plan-who{
    font-size: 14px;
    line-height: 22px;
}

#pay-plan-information{
    text-align: left;
}

.plan-previous-price{
    color: #767C7D;
    font-size: 18px;
    text-decoration: line-through;
}

@media only screen and (max-width: 599px) {
    .plan{
        width: calc(100% - 60px);
        padding: 20px 30px;
        margin: 5px;
    }

    .plan-price{
        font-size: 38px;
    }
}