.ml-2 {
    margin-left: 8px;
}
.mt-4 {
    margin-top: 16px;
}
.w-32 {
    width: 160px;
}
.gap-x-2 {
    gap: 8px;
}
.flex {
    display: flex;
    align-items: center;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-between {
    justify-content: space-between;
}

form > div + div {
    margin-top: 8px !important;
}

input[type=radio],
input[type=checkbox] {
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

input[type=submit] {
    background: #ffc600;
    text-align: center;
    color: #000000;
    margin-left: 10px;
    border-radius: 5px;
    border: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 18px;
    cursor: pointer;
}

.cmp-form-input,
.cmp-form-select {
    margin-left: 0 !important;
    margin-top: 0 !important;
}
.cmp-form-input input[type="text"] {
    width: auto !important;
}
.cmp-form-select .select {
    width: 120px !important;
}
.cmp-form-buttons .cmp-form-button {
    margin-left: 0 !important;
}

.label {
    font-weight: 700;
    font-size: 16px;
    text-align: right;
    padding-right: 12px;
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.w-full {
    width: 100% !important;
}

#select-skg {
    display: flex;
    flex-wrap: wrap;
}
#select-skg label {
    flex-basis: 33%;
}

.interval-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


@media screen and (max-width: 767px) {
    .label {
        width: 20%;
    }
    .content {
        width: 80%;
    }
    .mobile-basis-full {
        flex-basis: 100%;
        margin-top: 8px !important;
    }
    .mobile-basis-80 {
        flex-basis: 80%;
        margin-left: 20%;
    }
    .wrap-btn {
        margin-top: 8px;
        text-align: center;
    }
    #select-skg {
        gap: 8px 0;
    }
}

@media screen and (min-width: 768px) {
    .label {
        width: 120px;
        padding-right: 32px;
    }
    /* .content {
        width: calc(100% - 120px);
    } */
    #select-skg {
        max-width: calc(100% - 120px);
        gap: 8px;
    }
    #select-skg label {
        flex-basis: 12.5%;
    }
    .basis-half {
        /* flex-basis: 50%; */
        width: auto !important;
        margin-top: 8px !important;
    }
    .md-ml-4 {
        margin-left: 16px;
    }
    .wrap-btn {
        margin-left: 110px;
        margin-top: 8px;
    }
}