body {
    font-family: "Poppins", sans-serif;
    background-color: #EFF0EB;
}

[v-cloak] {
    display: none !important;
}

#api-message-container {
    position: fixed;
    z-index: 50;
    width: 100%;
    text-align: center;
    top: 15px;
    cursor: default;
}

#await {
    height: 100%;
    width: 100%;
    color: transparent;
    z-index: 60;
    position: fixed;
    cursor: wait;
    display: none;
}

.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ced4da;
    outline: 0;
    height: 24px;
    line-height: 2.9rem;
    width: 100%;
    color: inherit;
}

.select-dropdown option {
    color: #43494e;
}

.select-dropdown option[disabled] {
    color: #a5a5a5;
}

.view-full {
    opacity: 1;
}

.view-half {
    opacity: 0.5;
}

.view-none {
    opacity: 0;
}

.wrapper {
    display: flex;
    width: 100%;
}

.noselect {
    user-select: none;
}

.collapse {
    display: block;
    max-height: 0px;
    overflow: hidden;
}

.collapse.show {
    max-height: fit-content;
    overflow: visible;
}

.is-clickable {
    cursor: pointer;
}

.toggle {
    font-size: 1.1em;
}

.toggle::after {
    display: none;
}

.toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    margin-right: 0.3em;
    vertical-align: 0.055em;
    content: " ";
    border-left: 0.3em solid;
    border-top: 0.3em solid transparent;
    border-right: 0;
    font-size: 1rem;
    border-bottom: 0.3em solid transparent;
}

.toggle.expanded::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: " ";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    font-size: 1rem;
    border-left: 0.3em solid transparent;
}

.fade {
    opacity: 1;
    animation: fadein 0.3s linear;
}

.fade.hidden {
    opacity: 0;
    animation: fadeout 0.3s linear;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.display-none {
    display: none;
}

.field.is-horizontal .control.has-input-color {
    flex-grow: 1.3;
}

.field.is-horizontal .control.has-input-date {
    flex-grow: 0.576;
}

.button[disable] {
    pointer-events: none;
}

.tabs:not(:last-child) {
    margin-bottom: 0em;
    margin-top: 1.3em;
}

.leaflet-control {
    margin-top: 5px;
}

.field-label {
    padding: 0.5em;
}

.is-disable {
    pointer-events: none;
    opacity: .65;
}


.file-label.file-error{
  border: solid red 2px;
}

.selected-tr{
  mix-blend-mode: multiply;
}

.delete.minimize::before{
    width: 0;
}

.delete.minimize::after {
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
    top: 65%;
    height: 45%;
}

.small-input{
  max-width: 85px;
}