section#filter_con {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.1rem 0 .9rem 0;
}

.filterek {
    margin: .6rem 1rem;
    position: relative;
}

.filterek select {
    background: var(--brown_2);
    border: var(--text_1) solid 1px;
    border-radius: .7rem;
    padding: .3rem .5rem;
    font-size: .96rem;
    color: var(--text_1);
}

.kategoria select {
    min-width: 12.3rem;
}

.kategoria::before {
    content: 'KATEGÓRIA:';
    position: absolute;
    top: calc(-.6rem - 1px);
    left: 0;
    font-size: .6rem;
    color: var(--text_2);
    font-family: 'Times New Roman', Times, serif, Arial, Helvetica, sans-serif;
}

.rendez::before {
    content: 'RENDEZÉS:';
    position: absolute;
    top: calc(-.6rem - 1px);
    left: 0;
    font-size: .6rem;
    color: var(--text_2);
    font-family: 'Times New Roman', Times, serif, Arial, Helvetica, sans-serif;
}

/****************************************************************************/
/****************************************************************************/

#reactions_con {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: .7rem;
}

.in_reaction {
    width: 100%;
}

#noti_choose {
    display: flex;
    justify-content: center;
}

#noti_choose div {
    font-family: sans-serif, 'Courier New', monospace, Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

/****/

#noti_nincs {
    display: flex;
    justify-content: center;
}

#noti_nincs div {
    font-family: sans-serif, 'Courier New', monospace, Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

/****/

#noti_error {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#noti_error div {
    font-family: sans-serif, 'Courier New', monospace, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin-bottom: .4rem;
}

/****************************************************************************/
/****************************************************************************/

#items_vasar_con {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1200px;
    /* background: red; */
}

.vasar_items {
    background: var(--brown_2);
    border: var(--brown_5) solid 2px;
    border-radius: .5rem;
    font-size: 1rem;
    min-width: 11rem;
    max-width: 14rem;
    flex-grow: 1;
    font-family: sans-serif, 'Courier New', monospace, Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: var(--shadow_2) 0 0 8px;
    margin: 0 .5rem .8rem .5rem;
}

.vasar_items .item_picture {
    width: 100%;
    height: 9rem;
    background: url('../kep/példa1.jpg');
    background-position: center center;
    background-size: cover;
    border-bottom: var(--brown_5) solid 2px;
}

.vasar_items .item_text {
    width: 100%;
    padding: .3rem .6rem;
    font-size: .85rem;
    color: var(--text_1);
}

.vasar_items .item_text font {
    font-weight: bold;
}



/*********************************************************/

.nav_bottom {
    display: flex;
    justify-content: center;
    margin-top: .9rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.nav_bottom div {
    padding: .3rem;
    border-radius: .3rem;
    border: var(--brown_4) 1px solid;
    background-color: var(--brown_2);
    color: var(--brown_5);
    margin: .2rem;
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif, 'Courier New', monospace, Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.bt_nav_active {
    background-color: var(--brown_1) !important;
    cursor: default !important;
    border-width: 3px !important;
}



@media(min-width: 1200px) {
    .vasar_items {
        transition: box-shadow .1s linear;
    }

    .vasar_items:hover {
        box-shadow: rgba(54, 44, 16, 0.288) 0 0 2px;
    }
}

@media(max-width: 1200px) {
    .vasar_items {
        box-shadow: var(--shadow_2) 0 0 4px;
    }

    #items_vasar_con {
        max-width: 1020px;
    }
}

/***************************************************************************************/
/***************************************************************************************/
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--text_1);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
  .lds-ellipsis div:nth-child(1) {
      left: 8px;
      animation: lds-ellipsis1 0.6s infinite;
    }
    .lds-ellipsis div:nth-child(2) {
        left: 8px;
        animation: lds-ellipsis2 0.6s infinite;
    }
  .lds-ellipsis div:nth-child(3) {
      left: 32px;
      animation: lds-ellipsis2 0.6s infinite;
    }
    .lds-ellipsis div:nth-child(4) {
        left: 56px;
        animation: lds-ellipsis3 0.6s infinite;
    }
  @keyframes lds-ellipsis1 {
      0% {
      transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
}
  
/***************************************************************************************/
/***************************************************************************************/


