:root {
    --font: "manrope";
    --black: #000;
    --white: #fff;
    --green: #708573;
}

.border {
    border: 1px solid #000;
}

body {
    font-family: "Manrope", sans-serif;
    margin: 0;
}



.poweredby {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.poweredby img {
    height: 8px;
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.regular {
    font-weight: 400;
}

.f12 {
    font-size: 12px;
    line-height: 12px;
}

.f14 {
    font-size: 14px;
    line-height: 14px;
}

.f16 {
    font-size: 16px;
    line-height: 16px;
}

.f33 {
    font-size: 33px;
    line-height: 33px;
}

.e02-container {
    max-width: 260px;
    min-height: 125px;
    /* border: 1px solid #000; */
    padding: 0px;
    background-color: transparent;
    color: #fff;
}

.e01-container {
    max-width: 370px;
    min-height: 370px;
}

.bottom-data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dbl-col {
    display: flex;
}

.top {
    align-items: flex-start;
}

.bottom {
    align-items: flex-end;
}

.text-space {
    margin-right: 5px;
}

.col-space {
    display: flex;
    justify-content: space-between;
}

.right {
    text-align: right;
}

.row {
    display: flex;
    flex-direction: row;
}

.row-5 {
    margin-bottom: 5px;
}

.row-10 {
    margin-bottom: 10px;
}

.row-15 {
    margin-bottom: 15px;
}

.row-20 {
    margin-bottom: 20px;
}

.row-30 {
    margin-bottom: 30px;
}

.e01-row {
    height: 185px;
}

.e01-col {
    width: 185px;
}

.row-data {
    height: 125px;
    margin: 30px 20px;
}

.price-cell {
    border-right: 1px solid #000;
    margin-right: 0;
}

.top-row {
    background-color: #fff;
}

.e01-bottom-row {
    background-color: var(--green);
    height: 287.5px;
    border-bottom: 1px solid var(--green);
}

.cell {
    width: 185px;
    height: 95.5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cell-data {
    margin-left: 20px;
    color: #fff;
}

.col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.e01-leftcell {
    border-right: 1px #fff solid;
}

.e01-bottomcell {
    border-top: 1px solid #fff;
}

.note {
    font-size: 10px;
    color: #fff;
}

.note a {
    text-decoration: none;
    color: #fff;
}

hr {
    display: none;
}


@media screen and (max-width: 380px) {
    .col {
        flex-direction: column;
    }

    .e01-row {
        height: 370px;
    }

    .e01-row {
        height: auto;
    }

    .row {
        flex-direction: column;
    }

    .price-cell {
        border-right: 0px solid ;
    }

    hr {
        display: block;
        background-color: #000;
        height: 0.1px;
    }

    .cell {
        width: 100%;
    }

    .e01-col {
        width: 100%;
    }

    .line {
        border-top: 1px solid #fff
    }
}