body,
h1 {
    font-family: "Raleway", sans-serif
}

body,
html {
    height: 100%
}

.bgimg {
    background-color: rgba(0, 0, 0, 1) !important;
    background-image: url('images/nuke-background.jpg');
    min-height: 100%;
    background-position: center;
    background-size: cover;

}

.whole {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.logo {
    padding-top: 16px;
}

button {
    width: 150px;
}

#route-name {
    font-size: 3.5vw;
    margin-top: 10px;
}

#route-container {
    background-color: #fefefe;
    color: #000;
    opacity: 0.5;
}


#route-image {
    max-width: 100%;
    height: auto;
    margin-top: 32px;
    min-width: 320px;
}

#route-new {
    border-radius: 4px;
    background-color: MediumSeaGreen;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 5px;
    width: 190px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

#route-new:active {
    background-color: red;
}


#route-new span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

#route-new span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

#route-new:hover {
    background-color: red;
}
#route-new:hover span {
    padding-right: 25px;
}

#route-new:hover span:after {
    opacity: 1;
    right: 0;
}


/* simulate "Calculating Route..."

/* Standard (Mozilla) */
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.blink {
  animation: blink 600ms infinite;
}

/* Chrome & Safari */
@-webkit-keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


/* disable "Calculating Route..."

/* Standard (Mozilla) */
@keyframes noblink {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

.noblink {
  animation: noblink 600ms infinite;
}

/* Chrome & Safari */
@-webkit-keyframes noblink {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

.blink {
  -webkit-animation: blink 600ms infinite;
}
