* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {

    font-family: "Kodchasan", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 20px;
}

.business,
.tester {
    position: relative;
    border: 2px solid #B5F1C6;
    border-radius: 10px;
    max-width: 370px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top-bar {
    position: absolute;
    top: -16px;
    border: 1px solid #008124;
    border-radius: 14px;
    padding: 5px 10px;
    background-color: white;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;

    p {
        color: #008124;
        font-size: 16px;
        text-transform: uppercase;
    }
}

.price-text,
.up-text,
.up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.up-text {

}

.discount {
    display: flex;
    flex-direction: row;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    gap: 10px;
}

.discount-number {
    text-decoration: underline;
}

.norm-price-text,
.price-container{
    display: flex;
    gap: 10px;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.price {;
    font-weight: 600;
}

.norm-price-text {
    color: grey;
}

.norm-price {
    text-decoration: line-through;
}

.middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 40px;
    ul {
        list-style-type: none;
        li {
            padding: 10px 0;
            display: flex;
            gap: 20px;
        }
    }
}

.bottom {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    button {
        padding: 16px 105px;
        border: none;
        background: #0690FF;
        color: white;
        font-weight: 600;
        font-size: 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: .2s;
        &:hover {
            background: #289AFFFF;
        }
        &:active {
            padding: 30px 120px;
        }
    }
    p {
        color: grey;
        text-align: center;
    }
    .bold-text {
        font-weight: 600;
    }
}

