.kodetimen-form {
    width: 100%;
}

.kodetimen-form .kodetimen-form__map {
    height: 500px;
    width: 100%;
    margin-top: 12px;
    transition: display, 0.2s ease;
}

.kodetimen-form .kodetimen-form__map:empty {
    display: none;
}

.kodetimen-form .kodetimen-form__button {
    margin-top: 24px;
    padding: 12px 36px;
}

.kodetimen-form input.kodetimen-form__input, .kodetimen-form select.kodetimen-form__input{
    height: 36px;
    width: 100%;
    padding: 6px 12px;
    background-color: white;
    border: 1px solid #b3b3b3;
    border-radius: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    margin: 0;
}

.kodetimen-form .kodetimen-form__input--vishidden{
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.kodetimen-form .kodetimen-form__checkboxgroup{
    display: block;
}

.kodetimen-form .kodetimen-form__checkbox {
    display: inline-block;
    margin-top: 6px;
    margin-right: 18px;
}

.kodetimen-form .kodetimen-form__checkbox-input {
    color: rgba(51,51,51,.87);
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    transition: color .2s ease,border-color .2s ease;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.kodetimen-form .kodetimen-form__checkbox-input:hover,
.kodetimen-form .kodetimen-form__checkbox-nativeinput:focus + .kodetimen-form__checkbox-input {
    border: 1px solid black;
}

.kodetimen-form__checkbox-label {
    display: inline-block;
    padding-left: 6px;
    vertical-align: middle;
}

.kodetimen-form .kodetimen-form__checkbox-input {
    position: relative;
    color: rgba(51,51,51,.87);
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    transition: color .2s ease,border-color .2s ease;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.kodetimen-form .kodetimen-form__checkbox-nativeinput:checked + .kodetimen-form__checkbox-input:after {
    display: block;
    position: absolute;
    content: '';
    left: 8px;
    top: 2px;
    width: 7px;
    height: 13px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.kodetimen-form .kodetimen-form__checkbox-nativeinput:checked ~ .kodetimen-form__checkbox-label {
    font-weight: bold;
    color: black;
}

select.kodetimen-form__input {
    background-image: linear-gradient(45deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%);
    background-position: calc(100% - 17px) calc(1em - 2px), calc(100% - 10px) calc(1em - 2px), 100% 0;
    background-size: 7px 7px, 7px 7px, 2.5em 2.5em;
    background-repeat: no-repeat;
}

.kodetimen-form__field--hidden {
    display: none
}

.kodetimen-form__field + .kodetimen-form__field {
    margin-top: 12px;
}

.kodetimen-form__fieldset + .kodetimen-form__fieldset {
    margin-top: 36px;
}

.kodetimen-form__legend {
    margin-bottom: 12px;
    font-size: 18px;
}

.kodetimen-form__success {
    background-color: rgba(15, 190, 124, 0.5);
    padding: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.kodetimen-form__success a {
    text-decoration: underline;
    color: black;
}

.kodetimen-form__errormessage:before {
    content: '!';
    font-size: 16px;
    border: 1px solid red;
    color: red;
    border-radius: 100%;
    width: 1rem;
    height: 1rem;
    display: inline-block;
    text-align: center;
    padding-bottom: 6px;
    margin-right: 5px;
    padding-right: 3px;
    padding-left: 3px;
    vertical-align: top;
}

.kodetimen-form__errormessage {
    color: red;
}

.kodetimen-form__helptext {
    background-color: #9e96c8;
    color: white;
    padding: 12px;
}

.kodetimen-list {
    margin-top: 24px;
    margin-bottom: 24px;
}

.kodetimen-item__title {
    font-weight: bold;
    color: #9e96c8;
}

.kodetimen-item + .kodetimen-item {
    margin-top: 12px;
}
