@font-face {
    font-family: 'Exo Regular';
    src: url(/fonts/Exo-Regular.ttf);
}
@font-face {
    font-family: 'Exo Bold';
    src: url(/fonts/Exo-SemiBold.ttf);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Exo Regular';
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-size: calc(14px + 0.0vw);
}

input, select {
    padding: 6px 4px;
    font-size: inherit;
    outline-color: #3E8E41;
}

textarea {
    padding: 6px;
    resize: none;
    font-size: inherit;
    outline-color: #3E8E41;
}

a {
    text-decoration: none;
    color: #11011d;
    font-size: inherit;
}

a:hover {
    color: #3E8E41;
}

ul {
    list-style: none;
}

button {
    font-size: inherit;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background-color: #3E8E41;
}

table th {
    color: white;
}

table th,
table td {
    padding: 8px;
}

table,
th,
td {
    border: solid 1px #ddd;
}

table tbody {
    background-color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.myButton {
    padding: 7px 18px;
    outline: none;
    background-color: white;
    border: solid 1px #3E8E41;
    color: #11011d;
    cursor: pointer;
}

.myButton:hover,
.myButton.aktif {
    background-color: #3E8E41;
    color: white;
}

.myButton:disabled {
    background-color: #59715a;
    color: white;
    border-color: #59715a;
}

.myLink {
    background: transparent;
    color: #3E8E41;
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.myLink:disabled {
    color: #333;
}

.flex-row {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.hb-1 {
    border-top: none;
}
.hb-2 {
    border-bottom: none;
}
.hb-3 {
    border-left: none;
}
.hb-4 {
    border-right: none;
}