/*
    *BUBBLE-CARD PAGE
*/
.bubble-main {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.bubble-card{
    margin-top: 3px;
    margin-left: 3px;
    padding: 16px;
    box-sizing: border-box;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(225, 227, 231);
    border-radius: 12px;
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.filter-container{
    display: flex;
    justify-content: space-between;
    width: 97.5%;
}
.bubble-filters{
    width: 33%;
    margin: 0px 4px;
    border-radius: 4px;
    border-color: #ccc;
}
#city{
    display: none;
}

.__row{
    margin-bottom: 8px;
}
.card-headline{
    text-align: center;
}
.__row-title{
    display: flex;
}
.title-img{
    margin-right: 6px;
}

.__row > p, div strong p{
    margin-bottom: 0px;
    color: #000000!important;
}
.__row > strong, .__row-title > strong{
    font-weight: 700!important;
}

.__login {
    padding-top: 14px;
}
.__login-button {
    width: 100%;
    text-align: center;
    background: #33cc33;
}
#reset-bubble-filter {
    background: #33cccc;
}

.blue_spinner {
    display: none;
    position: fixed;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    z-index: 1110;
}

.blue_spinner_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.7;
    z-index: 1100;
}

#needs_updated_notification, #availabilities_updated_notification {
    display: none;
    background-color: #33cc33;
    padding: 10px;
    margin: 5px 0;
    color: #ffffff;
}

#csv_export_bubble_vetpracneed, #csv_export_bubble_availability {
    border-radius: 3px;
    margin: 0 10px;
}

@media (min-width: 767px) and (max-width: 1208px) {
    .bubble-card{
        width: 49%;
    }
}

@media (max-width: 766px) {
    .bubble-main {
        justify-content: space-around;
    }
    .bubble-card{
        width: 100%;
    }
    .filter-container{
        display: block;
    }
    .bubble-filters{
        width: 100%;
    }
}