@charset "UTF-8";
/* CSS Document */

.motorway-container {
  margin-left: 30px;
  z-index: 0;
  position: relative;
  text-align: center;
}
.motorway-post {
  position: absolute;
  top: -20px;
  width: 50px;
  height: 100%;
  background: rgb(150,150,150,1);
  background: linear-gradient(90deg, rgba(181,181,181,1) 5%, rgba(207,207,207,1) 25%, rgba(207,207,207,1) 75%, rgba(181,181,181,1) 95%);
}

.motorway-post-v2 {
  position: relative;
  z-index: 0;
  width: 50px;
  background: rgb(150,150,150,1);
  background: linear-gradient(90deg, rgba(181,181,181,1) 5%, rgba(207,207,207,1) 25%, rgba(207,207,207,1) 75%, rgba(181,181,181,1) 95%);
}

.motorway-sign {
  z-index: 1;
  position: relative;
  background: rgb(18,72,154);
background: linear-gradient(322deg, rgba(18,72,154,1) 0%, rgba(22,86,183,1) 100%);
  border: 12px solid #F7F8F9;
  outline: 0px solid #1656b7;
  border-radius: 20px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  font-size: 18px;
  font-family: 'Helvetica', 'Arial';
  line-height: 22px;
  letter-spacing: 0.2px;
  color: white;
  text-align: left;
}

.motorway-number {
  display: inline-block;
  position: relative;
  background: black;
  border: 1.5px solid white;
  border-radius: 5px;
  padding:8px;
  color: white;
  font-size: 25px;
  margin-bottom: 12px;
  font-weight: bold;
}

@media only screen and (max-width: 800px) {
  .motorway-sign {
    width: 60%;
    font-size: 15px;
    line-height: 18px;
}

.motorway-post-v2 {
  width: 40px;
}
