body {
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    overflow: hidden;
}

.container-fluid,
.row {
    height: 100%;
    padding: 0;
}

h3, h4 {
    margin: 0.5em 0;
}

h3 {
    font-size: 24px;
    margin: 0;
    padding: 10px 30px;
    color: white;
}

h4{
    font-size: 20px;
}

/*Filters*/
.filter-wrapper {
    padding: 0;
    background: #7386D5;
}

.filter-header {
    margin: 0;
    background: #6d7fcc;
}

i {
    float: right;
    padding: 0 10px;
}

h4:hover {
    cursor: pointer;
}

.filters {
    padding-left: 10px;
}

.filters-type,
.filters-mood,
.filters-rating,
.filters-price,
.filters-time {
    padding: 1px 7px 1px 17px;
    background: #6d7fcc;
    margin: 20px 30px;
    border-radius: 4px;
}

.filters label {
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-right: 25px;
}

.filters .title {
    padding-left: 25px;
    margin-bottom: 0.5rem;
}

.clear {
    position: relative;
    left: 40px;
    border: none;
    border-radius: 4px;
    padding: 7px 15px;
    background: #6d7fcc;
    color: white;
}

.clear:hover {
    cursor: pointer;
    background: #FFF;
    color: #6d7fcc;
    box-shadow: 5px 4px 13px -3px rgba(0,0,0,0.48);
}

.clear:focus {
    outline: none;
}

/*Map*/
.map_wrapper {
    padding: 0;
}

#mapid {
    height: 100%;
}

/*Custom Checkboxes*/
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0px;
    height: 20px;
    width: 20px;
    background-color: #FFF;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a color background */
.checkbox_container input:checked ~ .checkmark {
    background-color: #FFF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #6d7fcc;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
