/* -------------------------------------------------------------- */
/* Utilities
-------------------------------------------------------------- */
.clear {
    clear: both;
}

.bold {
    font-size: 14px;
}

.center {
    text-align: center;
}

.center_b {
    margin: 0 auto;
}

.block {
    display: inline-block;
}

/* main.css has .block { display: inline-block; margin-left: -6px; } this might be an issue. using main.css style */
.block {
    display: inline-block;
}

.block-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.block-flex .block {
    flex: 1;
}

.block-flex .block img {
    width: 100%;
    height: auto;
}

.margin {
    margin-right: 6em;
}

.midasi {
    font-size: 32px;
    font-weight: lighter;
    margin-bottom: 20px;
    line-height: 1.5;
}

@media only screen and (max-width: 900px) {
    .midasi {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .komidasi {
        font-size: 18px;
        border-left-width: 5px;
        padding-left: 8px;
        margin-bottom: 15px;
    }
}

.komidasi {
    color: #daa520;
    border-left: 10px solid #daa520;
    padding-left: 10px;
    font-size: 24px;
    margin-bottom: 20px;
}

.tape {
    display: inline-block;
    background: linear-gradient(transparent 60%, #f5deb3 0%);
}

.orange {
    margin-right: 1em;
}

/* Re-declaring clear to be safe as it appeared multiple times */
.clear {
    clear: both;
}

/* -------------------------------------------------------------- */

/* Margin Utilities */
.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}