/* ####### START: CSS RESET ####### */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ####### END: CSS RESET ####### */

/* ####### START: GLOBAL ####### */

body {
    background-color: #F8FAFC;
    position: relative;
    font-family: sans-serif;
    color: #3c3c3b;
    line-height: 1.2em;
    margin-bottom: 40px;
}

strong {
    font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
}

button, a {
    color: #005670;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover {
    color: #E3000F;
}

.button {
    margin-top: 15px;
}

.hide {
    display: none;
}

.center-center {
    margin: 0 auto;
/*
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
*/
}

.logo {
    background: 100% center url(/assets/img/logo.svg) no-repeat;
    width: 250px;
    height: 70px;
}

.box {
    border-radius: 5px;
    padding: 25px;
    background-color: #fff;
    max-width: 500px;

    -webkit-box-shadow: 0 0 14px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 14px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 14px 2px rgba(0, 0, 0, 0.1);
}

.box .logo {
    margin: 0 auto 25px;
}

.box .title {
    margin-bottom: 25px;
}

.box .title h1 {
    font-size: 30px;
    color: #E3000F;
    text-align: center;
}

.box .title h1 span {
    color: #3c3c3b;
}

ul.choose {
    margin: 20px 0;
}

ul.choose:last-child {
    margin-bottom: 0;
}

.button,
ul.choose li {
    display: block;
    padding: 20px;
    background-color: #dcdcdc;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

ul.choose li.hide {
    display: none;
}

ul.choose li.selected {
    cursor: default;
}

.button:hover,
ul.choose li.selected,
ul.choose li:hover {
    background-color: #E3000F;
    color: #fff;
}

ul.choose li + li {
    margin-top: 15px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #f8fafc;
}

footer .nav li {
    display: inline;
    padding: 0 15px;
}

footer a {
    color: #9a9a9a;
}

@media (max-width: 767px) {
    .box {
        border-radius: 0;
        max-width: 100%;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        -webkit-transform: none;
    }
}

button {
    cursor: pointer;
}

.wrap-input-button {
    display: flex;
    grid-column: 2;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.wrap-input-button input[type=text] {
    flex-grow: 1;
    font-size: 20px;
    padding: 10px;
    border: 2px solid #e3000f;
    border-right: 0;
    border-radius: 0;
}

.wrap-input-button input:active,
.wrap-input-button input:focus {
    outline: none !important;
}

.wrap-input-button button {
    border: 0;
    border-radius: 0;
    background-color: #e3000f;
    padding: 0 20px;
    color: #fff;
    font-weight: bold;
}

.wrap-input-button button:hover {
    padding-left: 30px;
}

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

p {
    line-height: 1.5em;
}

/* ####### END: GLOBAL ####### */

.quote.box .content {
    text-align: center;
}