.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 40%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px;
    background-color: white;
    list-style: none;
}

.searchresultscon{
    margin-top: 1%;
    margin-bottom: 3%;
    height: 100%;
    background-color: aliceblue;
}

.tabtext {
    color: white;
    font-size: large;
}

.nav-tabs .nav-item{
    margin-bottom: 0;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 10px;
    grid-auto-rows: 100px;
    grid-template-areas: 
        "c b b b b b a a"
        "c b b b b b a a"
        "c b b b b b a a"
        "c b b b b b a a";
    align-items: start;
}

.events{
    grid-area: b;
}

.questions{
    grid-area: a;
}

.filters{
    grid-area: c;
}

hr.newLine{
    border-top: 1px dotted black;
}

* {
    box-sizing: border-box;
}
    
.column {
    float: left;
    padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
    content: "";
    clear: both;
    display: table;
}
.thumb{
    width:200px;
    transition: width 0.8s;
}

.thumb:hover {
    transition-delay: 0.5s;
    width:420px;
}

.thumb1, .thumb2{
    float: left;
    min-width: 250px;
    min-height: 150px;
    width:250px;
    height: 150px;
    transition: width 0.8s;
}

.thumb2:hover {
    cursor: pointer;
}

.filters{
    padding-left:2%; 
    height:100%;
}

#clear-filters{
    margin: 5px; 
    padding: 5px; 
    border: 2px solid rgb(59, 105, 148);
}

#filter-button{
    margin-top:10px; 
    border:2px solid rgb(59, 105, 148);
}

#search-button{
    margin-left:1%;
    border:2px solid rgb(59, 105, 148);
}

#searchResult-form{
    width:100%;
    padding:1% 0 1% 40%; 
    position:fixed;
    display:flex; 
    background-color:aliceblue; 
    margin:0;
}

.card:hover{
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}

.white{
    color: white;
}

.card .badge{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 50%;
    background: rgb(246, 250, 3);
    color: black;
}

.boxshadow{
    box-shadow: 0 0 10px 3px rgb(128, 189, 189), 0 0 10px 5px rgb(197, 193, 128);
}

.form-check{
    padding-left: 0;
}

.italic{
    font-style: italic;
}

.red{
    color: red;
}

.round{
    border-radius: 30px;
}
