<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.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 &gt; a {
    flex: 0 1 50px;
    margin: 0 1px 0 1px;
}

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

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

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

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

.applied_filters &gt; 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 &gt; .buttons {
    flex: 0 0 auto;
    display: flex;
    border-bottom: 2px solid white;
}

.advanced_search &gt; .buttons &gt; 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 &gt; .buttons &gt; a:first-child {
    flex: 1 0 auto;
    border-right: 2px solid white;
}

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

.advanced_search &gt; .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 &gt; .filter_group {
    flex: 0 1 auto;
    color: #333399;
    overflow: auto;
    display: none;
}

.advanced_search &gt; .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 &gt; div {
    margin-right: 10px;
}

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

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

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

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

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

.results &gt; .info {
    flex: 1 1 auto;
}

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

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

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

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

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

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

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

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

</pre></body></html>