html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }
/*
body {
  font-size: 1em;
  position: relative;
  font-family: 'Sinkin Sans', 'Helvetica', 'Roboto', sans-serif;
  line-height: 1.5;
  color: #333333; }
*/
.list-button {
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  background-color: transparent;
  font-size: 1em;
  width: 41px;
  height: 41px;
  /*background-image: linear-gradient(45deg, #583E7A, #007EC5);*/
  background-color: #583e7a;
  border-radius: 50%;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center; }
  .list-button .icon-list {
    display: block;
    width: 20px;
    height: 14px;
    background-image: url("img/icon_list.png");
    background-image: url("img/icon_list.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; }
    @media (min-resolution: 192dpi) {
      .list-button .icon-list {
        background-image: url("img/icon_list@2x.png");
        background-image: url("img/icon_list.svg"); } }

.map-ui {
  width: 100%;
  padding: 0 1rem;
  position: absolute;
  margin-top: 1em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999; }
  @media (min-width: 64em) {
    .map-ui {
      padding: 0 1.5rem;
      margin-top: 1.5rem; } }
  .map-ui .map-ui__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    transition: .3s ease-in; }
    .map-ui .map-ui__inner .list-button-container {
      width: 41px;
      height: 41px;
      margin-left: 1rem; }
  .map-ui.slide .map-ui__inner {
    transform: translateX(-260px); }

#search {
  height: 41px; }
  #search > form {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.25); }
    @media (min-width: 64em) {
      #search > form {
        width: 350px; } }
    #search > form input[type="text"], #search > form input[type="submit"] {
      font-size: .875em;
      padding: 1rem 1.5rem;
      border: 0; }
    #search > form input[type="text"] {
      width: 100%; }
    #search > form input[type="submit"] {
      text-align: center;
      color: #fff;
      /*background-image: linear-gradient(45deg, #583E7A, #007EC5);*/
      background-color: #583e7a;
      margin: 0;
      cursor: pointer;
      min-width: 103px; }

.dialog-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.3); }

#dialog {
  background-color: #fff;
  width: 80%;
  max-width: 500px;
  padding-top: 2em;
  border-radius: 10px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.25);
  position: relative;
  margin: auto;
  height: 141px; }
  #dialog header h2 {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px; }
  #dialog header button.close {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem; }
    #dialog header button.close .dialog-close {
      display: block;
      width: 30px;
      height: 30px;
      background-image: url("img/icon_close-circle.png");
      background-image: url("img/icon_close-circle.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }
      @media (min-resolution: 192dpi) {
        #dialog header button.close .dialog-close {
          background-image: url("img/icon_close-circle@2x.png");
          background-image: url("img/icon_close-circle.svg"); } }
  #dialog .content {
    text-align: center;
    padding: 2rem; }
    #dialog .content span {
      font-size: .875em;
      font-weight: 500;
      display: block;
      margin-bottom: 1.5rem; }
    #dialog .content button {
      padding: 0;
      margin: 0;
      border: 0;
      cursor: pointer;
      background-color: transparent;
      font-size: 1em;
      display: inline-block;
      background-image: linear-gradient(45deg, #583E7A, #007EC5);
      color: #fff;
      font-weight: 500;
      font-size: .875em;
      padding: .75rem 1.5rem;
      border-radius: 20px;
      transition: .3s; }
      @media (min-width: 64em) {
        #dialog .content button {
          padding: 1rem 2.25rem;
          border-radius: 30px; } }

.area-list {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background-color: #F6F6F6;
  z-index: 99999;
  padding: 1rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  visibility: hidden;
  transition: .3s ease-in; }
  .area-list #list-heading {
    text-transform: uppercase;
    font-size: 1.25em; }
  .area-list #votes-table table {
    text-align: left;
    border-collapse: collapse; }
    .area-list #votes-table table thead th {
      font-size: .75em;
      font-weight: 600;
      color: #007EC5;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      text-align: left; }
      .area-list #votes-table table thead th:not(:last-of-type) {
        border-right: 1px solid rgba(0, 0, 0, 0.05); }
      .area-list #votes-table table thead th:not(:first-of-type) {
        padding: .5rem .75rem; }
        @media (min-width: 30em) {
          .area-list #votes-table table thead th:not(:first-of-type) {
            padding: .75rem 1.25rem; } }
    .area-list #votes-table table tbody tr {
      cursor: pointer; }
      .area-list #votes-table table tbody tr td {
        font-size: .875em;
        transition: color .3s; }
        .area-list #votes-table table tbody tr td:not(:last-of-type) {
          border-right: 1px solid rgba(0, 0, 0, 0.05); }
        .area-list #votes-table table tbody tr td:not(:first-of-type) {
          padding: .5rem .75rem; }
          @media (min-width: 30em) {
            .area-list #votes-table table tbody tr td:not(:first-of-type) {
              padding: .75rem 1.25rem; } }
      .area-list #votes-table table tbody tr:not(:last-of-type) td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
      .area-list #votes-table table tbody tr:hover td {
        color: #007EC5; }
  .area-list.open {
    transform: translateX(0);
    visibility: visible; }

#voted--flag {
  position: absolute;
  /*bottom: 1rem;*/
  margin-top: -65px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  font-size: .6875em;
  color: #BF360C;
  background-color: #fff;
  padding: .875rem 1.5rem;
  border-radius: 20px; }
  @media (min-width: 64em) {
    #voted--flag {
      /*bottom: 1.5rem;*/
      margin-top: -45px; } }

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