html {
    height: 100%;
}

body {
    background: #EF434F;
    background-image: url("./media/bg.png");
    color: #ffffff;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: center;
    height: 100%;
}

.justify-center {
    justify-content: center;
}

.plain-text {
    padding: 3rem;
    max-width: 740px;
    width: 100%;
    align-self: center;
    background-color: #EF434F;
    border-radius: 1.5rem;
}

.logo {
    width: 200px;
}

#message {
    max-width: 360px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 35px;
    width: 100%;
    height: 100%;
    margin: auto;
    justify-content: center;
}

#message h2 {
    color: #ffa100;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 8px;
}

#message h1 {
    font-size: 22px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 16px;
}

#message p {
    line-height: 140%;
    margin: 16px 0 24px;
    font-size: 14px;
}

.options .primary {
    display: block;
    text-align: center;
    background: #ffffff;
    text-decoration: none;
    color: #EF434F;
    padding: 16px;
    border-radius: 200px;
}

.options .secondary {
    display: block;
    text-align: center;
    background: transparent;
    text-decoration: none;
    color: #ffffff;
    padding: 16px;
    border-radius: 200px;
    border: 2px solid #ffffff;
}

@media (max-width: 600px) {

    body,
    #message {
        margin-top: 0;
        background: #EF434F;
        box-shadow: none;
    }
}

.header {
    width: 100%;
    text-align: center;
}

.options {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 15px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    opacity: 0.5;
    text-align: center;
    margin-bottom: 35px;
}

.footer a {
    text-decoration: none;
    color: inherit;
    display: contents;
}

.nps,
.hv-100 {
    width: 100%;
    height: 100%;
}

.pesquisa {
    width: 100%;
    height: 100%;
    max-width: 950px;
    background: #FFFFFF;
    height: fit-content;
    min-height: 700px;
    border-radius: 20px;
    margin: auto;
}

.no-border {
    border-radius: 0 !important;
    border: none !important;
}

.options .primary.bg-opacity {
    background: transparent;
    color: #FFFFFF;
}

i.icon-leading {
    margin-right: 10px;
}

.top-bar {
    display: flex;
    flex-direction: row;
    row-gap: 15px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.top-bar .trailing-options {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.top-bar ul {
    display: inherit;
    list-style-type: none;
    padding: inherit;
    margin: inherit;
    cursor: pointer;
    user-select: none;
}

.top-bar .tab.selected {
    background: white !important;
    color: #EF434F !important;
    font-weight: 800;
}

.top-bar .tab.ativa {
    font-weight: 900;
    background: rgba(255, 255, 255, 0.2);
}

.no-scrollbar {
    scrollbar-width: none;
}