/* Copyright 2018 pyttpytt2@gmail.com */

* {
    font-size: 55px;
    text-size-adjust: none;
}

.textarea {
    font-family: inherit;
    resize: none;
}

.edge_margin {
    margin: 12px;
}

.fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
.header {
    height: 138px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E60000;
    padding: 0px;
    margin: 0px;
    border-style: none;
    border-width: 0px;
}
.header_content {
    font-family: "Arial";
    font-size: 75px;
    font-weight: normal;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.header_button {
    border: none;
    background-color: inherit;
    padding: 35px;
    color: inherit;
    cursor: pointer;
    display: inline-block;
}

.likes_bar {
    position: fixed;
    top: 137px;
    left: 0px;
    width: 100%;
    height: 92px;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 1;
    padding: 0px;
    margin: 0px;
    border-style: none;
    border-width: 0px;
}
.likes {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #C00000;
    font-family: "Arial";
    font-size: 55px;
    font-weight: bold;
    color: #FFFFFF;
}

.likes_edge {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: -1px;
    margin-left: 0px;
    padding: 0px;
    border-style: none;
    border-width: 0px;
}

.distance_div {
    position: fixed;
    top: 138px;
    left: 0px;
    z-index: -1;
    max-height: 999999px;
}
.distance_div2 {
    display: flex;
    flex-direction: column;
}
.distance {
    font-family: "Arial";
    font-size: 103px;
    font-weight: bold;
    color: #D0D0D0;
}
.bearing_tip {
    font-family: "Arial";
    font-size: 39px;
    font-weight: bold;
    color: #D0D0D0;
    min-width: 230px;
}

.arrow {
    position: fixed;
    top: 138px;
    left: 0px;
    width: 100%;
    height: calc(100% - 120px);
    z-index: -2;
    background-color: #FFFFFF;
}

.message_div {
    position: fixed;
    top: 138px;
    left: 0px;
    width: 100%;
    height: calc(100% - 120px);
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
.message_div2 {
    padding-left: 12px;
    padding-right: 12px
    display: flex;
    justify-content: center;
    max-height: 999999px;
}
.message {
    white-space: pre-wrap;
}
.vote {
    justify-content: center;
}
.vote_button {
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 6px;
    margin-right: 6px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3;
    padding-top: 5%;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #FFFFFF;
    margin: auto;
    border: 1px solid #888;
    width: 90%;
    max-height: 999999px;
}
