.uu-quick-links-tab-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}
.uu-quick-links-tab {
  box-sizing: border-box;
  position: relative;
  margin: 0px auto;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  z-index: 992;
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
}

.uu-quick-links-tab.fullscreen-active {
  max-width: 100%;
}

.uu-quick-links-tab.fullscreen-active a {
  border-radius: 0px !important;
}

.uu-quick-links-tab-wrapper.qlt-offset-bottom, .uu-quick-links-tab-wrapper.qlt-offset-top {
  height: 0px;
}

.uu-quick-links-tab-wrapper.qlt-offset-bottom .uu-quick-links-tab {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
}

.uu-quick-links-tab-wrapper.qlt-offset-top .uu-quick-links-tab {
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
}
.uu-quick-links-tab a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
  flex: 1 1 auto;
  box-sizing: border-box;
  background-color: #be0000;
  text-align: center;
  color: #ffffff;
  padding: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
}
.uu-quick-links-tab a:first-child {
  border-radius: 8px 0px 0px 8px;
}
.uu-quick-links-tab a:last-child {
  border-radius: 0px 8px 8px 0px;
}

.uu-quick-links-tab a:hover {
  color: #FFFFFF;
  background: #930000;
  text-decoration: none;
}
.uu-quick-links-tab a:visited {
  color: #FFFFFF;
  text-decoration: none;
}

.uu-quick-links-tab.red a {
  background-color: #be0000;
}

.uu-quick-links-tab.red a:hover {
  background: #930000;
}


.uu-quick-links-tab a img {
  justify-self: flex-start;
  flex: 0 1 auto;
  text-align: center;
  margin:  0px auto 10px auto;
  display: block;
  transition: all 0.3s ease;
}
.uu-quick-links-tab a:hover img {
  transform: translateY(-5px);
}
.uu-quick-links-tab a span {
  flex: 0 0 32px;
  display: block;
  max-width: 150px;
  margin: 0px auto;
}

@media only screen and (max-width: 940px) {
  .uu-quick-links-tab a {
    padding: 20px;
    font-size: 12px;
    flex: 1 1 50%;
  }
  .uu-quick-links-tab a:first-child {
    border-radius: 0px !important;
  }
  .uu-quick-links-tab a:last-child {
    border-radius: 0px !important;
  }
  .uu-quick-links-tab-wrapper{
    position: static;
  }
  .uu-quick-links-tab-wrapper.qlt-offset-bottom .uu-quick-links-tab {
    top:0px;
    bottom: unset;
    position: static;
  }
  .uu-quick-links-tab-wrapper.qlt-offset-top .uu-quick-links-tab {
    top:0px;
    bottom: unset;
    position: static;
  }
  .uu-quick-links-tab-wrapper.qlt-offset-bottom, .uu-quick-links-tab-wrapper.qlt-offset-top {
    height: auto;
  }
}