// Base Divider class
.divider {
    display: flex;

    &:before,
    &:after {
        content: "";
        flex: 1;
    }
}

// Base line
.line {
    align-items: center;
    margin: 1em -1em;

    &:before,
    &:after {
        height: 1px;
        margin: 0 1em;
    }
}

.one-line {
    &:before,
    &:after {
        background: black;
    }
}

.bordermenu {
    border-color: #D5E4DE;
}

.menuitem {
    background-color: #fffff;
}

.menuitem:hover {
    background-color: #D5E4DE;
}

.staticcolor {
    background-color: #D5E4DE;
}

.bg-zwierzeca {
    background-color: #F9D7DA;
}

.bg-color1 {
    background-color: #ffc800;
}

.bg-ekonomika {
    background-color: #ee2d2d;
}

.text-ekonomika {
    color: #ee2d2d !important;
}

.text-wydarzenia {
    color: #eaa017 !important;
}

.bg-wydarzenia {
    background-color: #eaa017 !important;
}

.acf-button.disabled {
    pointer-events: none;
}

.divcard {
    transition: all 0.3s ease;
}

.divcard:hover {
    transform: scale(1.1);
}

.acf-loading,
.acf-spinner {
    height: 20px;
    width: 20px;
    vertical-align: text-top;
    background: transparent url(/wp-admin/images/spinner.gif) no-repeat 50% 50%;
    display: none;
}

.stickynav {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    width: 100vw;
    background: yellow;
}