a {
    text-decoration: none;
}

.flex-position {
    /*height: 100%;*/
    width: 100%;
    flex: 1;
    margin: 5px;
}

img {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
}

.card {
    display: inline-flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    border: 2px solid green;
    border-radius: 15px;
    padding: 10px;
    width: calc(50% - 5px);
    transition: transform .3s;
    overflow: hidden;
    margin-bottom: 5px;
    margin-right: 5px;
    cursor: pointer;
}

#results {
    margin-top: 20px;
}

.col-recipe {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.row-recipe {
    width: 100%;;
}

.card button {
    z-index: 100;;
}

.card:hover {
    /* cursor: pointer; */
    transform: scale(0.95);
}

#wrapper {
    max-width: 1800px;
    margin: 20px auto 0 auto;
    padding-right: 0px;
}

.title_favorite {
    font-size: 20px;
}

.favorite {
    float: right;
    line-height: 18px !important;
}

.favorite:hover {
    font-weight: bold !important;
}

#title_favorite {
    font-size: 18px;
}

#tags {
    text-align: left;
    font-size: 20px;
}

#next {
    position: relative;
    width: auto;
    float: right;
    margin-bottom: 3px;
}

#previous {
    margin-bottom: 3px;
}

#searchDiv {
    width: 100%;
    margin-bottom: 5px;
}

#searchDiv button {
    background: #62a9f5;
    color: #fff;
}

.col {
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 1.5rem;
}



#filter_col {
    /*border: 1px solid;*/
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 1.5rem;
    flex-shrink: unset;
    margin-bottom: 5px;
}

#filter_label {
    margin-left: 5px;
    cursor: pointer;  
    -webkit-user-select: none; 
    -ms-user-select: none;
    user-select: none;
    background-color: white;
    padding: 6px;
    border: solid 1px #666;
    border-radius: 6px;
}

.fa-filter {
    margin-right: 5px;
}

.dropdown-menu {
    margin-top: 4px;
}

.dropdown-menu li {
    margin-left: 10px;
}

#site_title {
    text-align: center;
    margin-top: 3px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 479px) {
    .card {
        width: 100%;
    }
}