* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: "Be Vietnam Pro", sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    display: block;
}

.header {
    height: 25%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 1px solid #E5E7EB;

    background: url('../img/dccl--html-css-price-table/sand-background-image@2x.png');
    background-color: #F8FAFC;
}

.header__title {
    font-size: 2rem;
    font-weight: 700;
    color: #121826;
    
    padding-bottom: 10px;
}

.header__subtitle {
    width: 30%;

    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #4D5562;
}

.main {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
}

.main__table {
    margin-bottom: 100px;
}

.prices__item {
    text-align: center;

    padding: 0px;
    padding-top: 30px;
}

.item__type {
    color: #3662E3;
    font-size: 1rem;
    font-weight: 600;
}

.item__price {
    font-size: 4rem;
    font-weight: 600;
    color: #121826;

    padding-top: 10px;
}

.item__time {
    font-size: 1rem;
    font-weight: 400;
    color: #4D5562;
}

.last-item {
    margin-bottom: 30px;
}

.main__table {
    width: 90%;
        
    display: flex;
    justify-content: center;
}

.table__table {
    margin-top: 50px;
    padding: 0px;

    border-collapse: collapse;
}

.body__row {
    border-bottom-left-radius: 10px;
}

th, td {
    padding: 12px 80px;
}

.row__header {
    width: 210px;
    height: 30px;
    padding: 2px 10px;
    
    background-color: #E5E7EB;
    border-bottom: 1px solid #4D556233;

    color: #121826;
    font-size: 1rem;
    font-weight: 600;
    text-align: start;

    white-space: nowrap;
    overflow-anchor: hidden;
    text-overflow: ellipsis;
}

.no-border {
    border: none;
}

.first {
    border-top-left-radius: 10px;
}

.last {
    border-bottom-left-radius: 10px;
}

.data__image {
    width: 20px;
    height: 20px;
}

.row__data {
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
}

.main__getStarted {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.getStarted__data {
    padding-top: 30px;
    padding-bottom: 30px;
}

.data__container {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

}

.data__text {
    width: max-content;
    color: #3662E3;
}

/*
    .popular
*/

.prices__item.popular {
    background-color: #121826;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.prices__item.popular > .item__type {
    background-color: #3662E3;
    color: white;
    border-radius: 20px;
    text-align: center;

    padding: 5px 10px;
    width: 5rem;
    margin: 0 auto;
}

.prices__item.popular > .item__price {
    color: white;
}

.prices__item.popular > .item__time {
    color: white;
}

.getStarted__data.popular {
    background-color: #E9A23B;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.row__data.popular {
    background-color: #121826;
    border: none;
    color: white;
}

.row__header > p {
    padding: auto 0;
    
    white-space: nowrap;
    overflow-anchor: hidden;
    text-overflow: ellipsis;
}

.getStarted__data.popular > .data__container > .data__text {
    color: white;
}

@media only screen and (max-width: 1024px) {
    
    .px1024 {
        display: none;
    }
}

@media only screen and (max-width: 640px) {
    .px640 {
        display: none;
    }

    .header__subtitle {
        width: 70%;
    }

    .table__table {
        table-layout: fixed;
        width: 100%;
    }

    .row__header {
        width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .row__header > p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }
}