/*-- -------------------------- -->
<---        PRICING             -->
<--- -------------------------- -*/

#prices .cs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#prices .cs-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

table {
    font-size: 16px;
    border-collapse: collapse;
    margin-bottom: 28px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
  
th {
    background-color: #FE5D37;
    color: #fff;
}
td, th {
    text-align: center;
    padding: 16px 8px;
    border: 1px solid #adadad;

}

tr:nth-child(odd) {

    background-color: #eaeaea;

}

#prices .cs-text {
    margin-bottom: 40px;
    max-width: 400px;
}

.question .button-solid {
    display: block;
}

.question {
    position: relative;
}
.question .button-solid:before {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    width: 300px;
    background: #FE5D37;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
}

.part-time {
    display: none;
}
@media only screen and (min-width: 485px) {
    .part-time {
        display: inline;
    }
}

@media only screen and (min-width: 1024px) {

    table {
        font-size: 24px;
    }

    td, th {
        text-align: left;
        padding: 32px 16px;
    
    }

    .question .button-solid:before {
        width: 800px;
    }
}