html, body {
    min-height: 100vh;
}

body {
    background-color: #fff;
    background: linear-gradient(to bottom, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), linear-gradient(to bottom, rgba(0,0,0,0.02) 50%, rgba(255,255,255,0.02) 61%, rgba(0,0,0,0.02) 73%), linear-gradient(33deg, rgba(255,255,255,0.20) 0%, rgba(0,0,0,0.20) 100%);
    background-blend-mode: normal,color-burn;
}

.hidden {
    display: none;
}

.bigger {
    font-size: 120%;
}

.smaller {
    font-size: 80%;
}

.text-center {
    text-align: center;
}

.bg-white {
    background-color: #fff;
}

.font-blue {
    color: #0070c0;
}

.font-green {
    color: rgb(24, 190, 74);
}

.font-grey {
    color: rgb(97, 97, 97);
}

.message-box {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
}

.message-box h3{
    margin: 0;
}

.message-box hr {
    margin-bottom: 0;
}

.message-box.error hr {
    border-top-color: rgb(173, 25, 20);
}

.message-box.success hr {
    border-top-color: rgb(64, 190, 102);
}

header#main {
    margin-bottom: 2em;
    background-color: #fafafa;
    padding: 1em;
}

header#main .logo {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

section {
    margin-bottom: 4em;
}

section .container{
    background-color: #fafafa;
    padding: 2em;
    min-height: 50px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
    border-radius: 5px;
}

#top-logo{
    height: auto;
    width: 50%;
}

.top-space{
    margin-top: 5%
}

.info .title {
    font-weight: 600;
}

.rating-box {
    display: flex;
    justify-content: center;
}

.rating-box .emoji-container {
    border-radius: 1em;
    margin: 0.2em;
    padding: 0.5em;
    text-align: center;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}

.rating-box .emoji-container.active {
    border-color: #0070c0;
}

.rating-box .emoji-container .icon {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
}

.rating-box .emoji-container .title {
    text-align: center;
    font-weight: 300;
    font-size: 1em;
    margin-top: 5px;
}

@media only screen and (max-width: 600px) {
    .rating-box .emoji-container .icon {
        width: 50px;
        height: 50px;
    }

    .rating-box .emoji-container .title {
        font-size: 12px;
        padding-top: 5px;
    }
    header#main {
        margin-bottom: 0;
    }
  }

.rating-box .emoji-container .icon.veryhappy { background-image: url("../img/veryhappy.svg"); }
.rating-box .emoji-container .icon.happy { background-image: url("../img/happy.svg"); }
.rating-box .emoji-container .icon.moderate { background-image: url("../img/moderate.svg"); }
.rating-box .emoji-container .icon.bad { background-image: url("../img/bad.svg"); }
.rating-box .emoji-container .icon.verybad { background-image: url("../img/verybad.svg"); }

.googlereview {
    text-align: center;
}