@import url(https://rsms.me/inter/inter-ui.css);

:root {
    --main-color: #000;
    --highlight-color: #d6517a;
    --background-color: #d7d5d8
}

html {
    font-size: 100%
}

body {
    background: var(--background-color);
    color: var(--main-color);
    font-family: sans-serif;
    font-weight: regular;
    font-family: Inter UI, sans-serif;
    letter-spacing: -1;
    padding: 20px;
    line-height: 1.5
}

body,
h1 {
    font-size: 2rem
}

h1 {
    font-weight: 400;
    margin: 0;
    padding: 0 10vw 40px 0;
    max-width: 800px
}

.SearchBar {
    padding: 0 0 20px;
    font-size: 2rem
}

input {
    font-size: 2rem;
    text-align: left;
    background: transparent;
    color: var(--main-color);
    border: none;
    border-bottom: 2px solid var(--main-color)
}

input:focus,
textarea:focus {
    outline: none
}

::-webkit-input-placeholder {
    color: #bbb
}

:-ms-input-placeholder,
::-ms-input-placeholder {
    color: #bbb
}

::placeholder {
    color: #bbb
}

.listItem {
    text-align: left;
    padding: 4px 25px 7px;
    background-color: var(--background-color);
    border-radius: 50px;
    border: 2px solid var(--main-color);
    display: inline-block;
    margin: 0 10px 10px 0;
    transform-origin: 50% 50%;
    -webkit-transition: background-color .7s ease, -webkit-transform .7s ease;
    transition: background-color .7s ease, -webkit-transform .7s ease;
    -o-transition: transform .7s ease, background-color .7s ease;
    transition: transform .7s ease, background-color .7s ease;
    transition: transform .7s ease, background-color .7s ease, -webkit-transform .7s ease;
    text-decoration: none;
    text-align: center;
    color: inherit
}

.listItem,
.listItem:hover {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%
}

.listItem:hover {
    background-color: var(--main-color);
    color: var(--background-color);
    transform-origin: 50% 50%;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: background-color .3s ease, -webkit-transform .3s ease;
    transition: background-color .3s ease, -webkit-transform .3s ease;
    -o-transition: transform .3s ease, background-color .3s ease;
    transition: transform .3s ease, background-color .3s ease;
    transition: transform .3s ease, background-color .3s ease, -webkit-transform .3s ease
}

a {
    display: inline-block;
    color: var(--main-color);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition: color .2s ease, background-color .2s ease, -webkit-transform .3s ease;
    transition: color .2s ease, background-color .2s ease, -webkit-transform .3s ease;
    -o-transition: transform .3s ease, color .2s ease, background-color .2s ease;
    transition: transform .3s ease, color .2s ease, background-color .2s ease;
    transition: transform .3s ease, color .2s ease, background-color .2s ease, -webkit-transform .3s ease;
    position: relative;
    z-index: 1
}

a:hover {
    cursor: pointer;
    -webkit-transition: color .2s ease, -webkit-transform .3s ease;
    transition: color .2s ease, -webkit-transform .3s ease;
    -o-transition: transform .3s ease, color .2s ease;
    transition: transform .3s ease, color .2s ease;
    transition: transform .3s ease, color .2s ease, -webkit-transform .3s ease;
    z-index: 3
}

#questions {
    background-color: var(--background-color);
    width: 80px;
    height: 80px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: var(--main-color);
    cursor: pointer;
    border-radius: 200px;
    border: 2px solid var(--main-color);
    z-index: 5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

#questions,
#questions:hover {
    -webkit-transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
    transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
    -o-transition: transform .3s ease, box-shadow .3s ease, color .3s ease, background-color .3s ease;
    transition: transform .3s ease, box-shadow .3s ease, color .3s ease, background-color .3s ease;
    transition: transform .3s ease, box-shadow .3s ease, color .3s ease, background-color .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease
}

#questions:hover {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: var(--main-color);
    color: var(--background-color)
}

.popup {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-color);
    opacity: .8;
    z-index: 2
}

.popup,
.popup_inner {
    position: fixed;
    margin: auto
}

.popup_inner {
    padding: 20px 30vw 20px 20px;
    max-width: 700px;
    border: 2px solid var(--main-color);
    z-index: 3;
    left: 60px;
    right: 60px;
    top: 60px;
    bottom: 60px;
    background: var(--background-color);
    overflow: scroll
}

ul {
    list-style-type: none;
    padding: 0 0 0 15px;
    margin: 0;
    font-size: 2rem;
    line-height: 1
}

label {
    font-size: 1.3rem;
    line-height: .5;
    display: inline
}

p {
    padding: 5px 0 50px;
    margin: 0;
    line-height: 1.5
}

#outro {
    padding-top: 100px
}

.fb_iframe_widget {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    padding-right: 10px
}

@media (max-width: 640px) {
    .popup_inner {
        left: 20px;
        right: 20px;
        top: 20px;
        bottom: 20px;
        padding: 10px 20px 10px 10px
    }

    html {
        font-size: 60%
    }
}

/*# sourceMappingURL=main.08961728.css.map*/