
.bolder {
    font-weight: bolder;
}

.section_title {
    font-size: large;
    border-bottom: 1px solid blue;
    margin-bottom: 5px;
}

.quick_filters {
    display: flex;
    justify-content: space-around;
}

.quick_filters > a {
    flex: 0 1 50px;
    margin: 0 1px 0 1px;
}

.quick_filters > a > img {
    max-width: 100%;
    border-radius: 50%;
}

.quick_filters > a > img.selected {
    border: 5px solid green;
}

.quick_filters > a > img:hover {
    border: 5px solid yellow;
}

.applied_filters {
    display: flex;
    flex-wrap: wrap;
}

.applied_filters > div {
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: #d9e2ec;
}



.advance_filter_panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 225px;
    z-index: 1001;
    background-color: white;
    border-right: 1px solid #333399;
    overflow: auto;
}

.advanced_search {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advanced_search > .buttons {
    flex: 0 0 auto;
    display: flex;
    border-bottom: 2px solid white;
}

.advanced_search > .buttons > a {
    background-color: #333399;
    height: 30px;
    line-height: 30px;
    color: white;
    font-size: large;
    font-weight: bold;
    text-align: center;
	border-radius: 10px;
	margin: 5px;
}

.advanced_search > .buttons > a:first-child {
    flex: 1 0 auto;
    border-right: 2px solid white;
}

.advanced_search > .buttons > a:last-child {
    flex: 0 0 30px;
}

.advanced_search > .filter_title {
    flex: 0 0 20px;
    line-height: 20px;
    text-align: center;
    background-color: #3399FF;
    color: #333399;
    border-bottom: 1px solid white;
    font-weight: bold;
    cursor: pointer;
}

.advanced_search > .filter_group {
    flex: 0 1 auto;
    color: #333399;
    overflow: auto;
    display: none;
}

.advanced_search > .filter_group.countries {
    display: block;
}

.result {
    display: none;
}

.results {
    border-radius: 10px;
    background-color: #d9e2ec;
    padding: 10px;
    padding-right: 0px;
    margin-bottom: 5px;
    display: flex;
    position: relative;
}

.results > div {
    margin-right: 10px;
}

.results > .evaluated {
    flex: 0 0 55px;
    display: flex;
}

.results > .evaluated > img {
    align-self: center;
    margin: 0 auto 0 auto;
}

.results > .screenshot {
    /*flex: 0 0 120px;*/
    flex-grow: 0;
    flex-shrink: 0;
    width: 120px;
    align-self: center;
}

.results > .screenshot > img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 0 auto;
    transition: transform .2s;
    border-radius: 15px;
}

.results > .screenshot > img:hover {
    transform: scale(1.5);
}

.results > .info {
    flex: 1 1 auto;
}

.results > .info:hover {
    background-color: #d9e2ec;
}

.results > div {
    margin-bottom: 5px;
}

.results > .info > .ratings,
.results > .info > .evaluated {
    display: none;
}

.results > .info > .casino_title {
    font: bold 20px "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;
}

.results > .ratings {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    flex: 0 0 110px;
}

@media (max-width:900px){
    .results > .ratings {
        display: none;
    }
    .results > .info > .ratings {
        display: block;
    }
}

@media (max-width:800px){
    .results > .evaluated {
        /*display: none;*/
        position: absolute;
        top: 5px;
        left: 5px;
    }
    .results > .info > .evaluated {
        display: block;
    }
}

@media (max-width:600px){
    .results {
        flex-direction: column;
    }
}

