*{
    background-color: #FCFCFC;
    box-sizing: border-box;
    font-family: "Lato";
    font-size: 1rem;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

:focus{
  outline: none;
}

/* unvisited link */
a:link {
    color: #1E1E1E;
    text-decoration: none;
  }
  
/* visited link */
a:visited {
  color: #1E1E1E;
  text-decoration: none;
}


/* mouse over link */
a:hover {
  color: #1E1E1E;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #1E1E1E;
  text-decoration: none;
}

a:focus{
  text-decoration: none;
}
  
h1{
  font-size: 1.5rem;
  font-weight: lighter;
}

h2{
  font-size: 1.313rem;
  font-weight: lighter;
}

h3{
  font-size: 1.125rem;
  font-weight: lighter;
}

.btn{
  display: inline-block;
  width: 100px;
  text-align: center;
  background-color: #E14B4B;
  font-size: 0.875rem;
  font-weight: normal;
  color: #fcfcfcfc !important;
  padding: 9px 0 10px 0;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

.btn:active{
  background-color: #C94343;
}

.btn-ghost{
  width: 80px;
  text-align: center;
  font-size: 0.875rem;
  padding: 9px 0 10px 0;
  color: #E14B4B !important;
  border: #E14B4B 1px solid;
  border-radius: 4px;
  display: inline-block;
  margin: 2px 0px;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost:active{
  background: #E14B4B;
  color: #fcfcfc !important;
}

.btn-plain, .btn-plain:hover{  
  color: #E14B4B;
  font-weight: bold;
  display: inline-block;
  width: 100px;
  padding: 9px 0;
  text-align: center;
}

.btn-plain:active{
  color: #C94343 !important;
  background-color: #e4e4e4;
  border-radius: 4px;

}

.btn-disabled{
  width: 100px;
    text-align: center;
    font-size: 0.875rem;
    padding: 9px 0 10px 0;
    color: #b3b3b3 !important;
    border: #b3b3b3 1px solid;
    border-radius: 4px;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
      -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.selectable {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
      -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
  
  .float-right{
    float: right;
  }
  
  .vertical-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
  }
  
  #top-header{
    background-color: #E14B4B;
    height: 36px;
  }
  
  .logo-oneline{
    background-color: transparent;
    height: 138.888%;
    margin-top: -4px;
    display: inline-block;
  }
  
  .menu-icon{
    background-color: transparent;
    display: inline-block;
    margin: 8px 12px;
    position: absolute;
    right: 0px;
  }

  .grid-container{
    display: grid;
    grid-gap: 0 0;
    grid-template-columns: 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% ;
    
  }
           
  .col-mid{
    grid-column: 6 / 8;
  }

  .col-mid-large{
    grid-column: 5 / 9;
  }

@media (max-width: 1439px){

  .grid-container{
    display: grid;
    grid-gap: 0 0;
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10% ;
  }

  .col-mid{
    grid-column: 5 / 7;
  }

  .col-mid-large{
    grid-column: 4 / 8;
  }
}

@media (max-width: 1080px){

  .grid-container{
    display: grid;
    grid-gap: 0 0;
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10% ;
  }

  .col-mid{
    grid-column: 3 / 9;
  }

  .col-mid-large{
    grid-column: 2 / 10;
  }
}