/* License: AGPLv3 or later (http://www.gnu.org/licenses/), Copyright 2013, Martin Owens <doctormo@gmail.com> */

#shield {
  margin: 0 0 60px 0;
}

#banners {
  display: block;
  height: 360px;
  position: relative;
  background-size:100%;
}

#banners > div {
  background-color: #000000;
  background-image: url("../images/banner.svg");
  background-repeat: no-repeat;
  background-position-x: center;
  border-bottom: 1px solid #000000;
  display: block;
  height: 320px;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 20px;
  position: absolute;
  transition: opacity 0s ease 0.4s;
  width: calc(100% - 40px);
   border-radius:4px;
}
@media only screen and (max-width: 960px) {
 #banners > div {
      border-radius:0px;
}
}
#banners > div.current {
  opacity: 1;
  transition: opacity 0.4s ease 0s;
  z-index: 1;
}

#banners > div {
  background-size:100%;
}

#banners > div p {
  font-size: 18px;
  line-height: 25px;
}

#banners > div > p {
    position: absolute;
    display:inline-block;
    bottom: 72px;
    right: 20px;
    font-size: 12px;
    line-height: 1;
    background-color:rgba(0,0,0,0.75);
    border-radius:3px;
    padding:3px 6px;
}
#banners > div > p:hover {
    filter:invert(1);
}
#banners > div > p > a {
  color: #ddd;
  text-decoration:none;
}

#banners > div > p > a:active {
  color: red;
}

#banners > div > div {
  height: 250px;
  margin: 10px 30px 0px;
  max-width: 860px;
  text-align: right;
  width: calc(100% - 60px);
}

#banners > div > div > p.text {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  font-size: 18px;
  line-height: 26px;
  margin-left: auto;
  max-width: 425px;
  padding: 10px;
}

#banners a.button {
  border-color: #666666;
  display: inline-block;
}

#banners a.button img {
  float: right;
  margin: -4px -2px -4px 8px;
}

#banners > div > div > p.foot {
  font-size: 80%;
  margin-top: 5px;
}

#banners > div > div > p.foot > span {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  color: #444444;
  padding: 2px 6px;
}

#shield .tabs {
  font-size: 12px;
  line-height: 16px;
  list-style: none;
  display: table;
  table-layout: fixed;
  word-wrap: break-word;
  margin: -70px 19px -30px;
  padding-left: 0;
  position: relative;
  z-index: 2;
  filter:invert(1);
}

#shield .tabs > li {
  background-color: #111;
  border-color: #333;
  margin-left:1px;
  border-style: solid;
  border-width: 1px;
  display: table-cell;
  width: 1%;
  cursor: pointer;
}

#shield .tabs > li > a,
#shield .tabs > li > div {
  color: white;
  display: block;
  overflow: hidden;
  outline: 0;
  padding: 19px 15px 20px 60px;
  text-decoration: none;
}

#shield .tabs:not(.fixed) > li:hover,
#shield .tabs:not(.fixed) > li:focus,
#shield .tabs:not(.fixed) > li.current {
  background-color: #333333;
}
#shield .tabs.fixed li:not(.container):hover {
  background-color: #5b5b5b;
}

#shield .tabs li > a > img {
  float: left;
  margin-left: -45px;
  width: 32px;
  height: 32px;
}

#shield .tabs strong {
  display: block;
  font-size: 17px;
  font-weight: normal;
  margin: 0 0 14px -45px;
}

#shield .tabs li:first-child {
  border-radius: 4px 0 0 4px;
}

#shield .tabs li:last-child {
  border-radius: 0 4px 4px 0;
}
@media only screen and (max-width: 960px) {
  #shield > div  > div {
    height:calc( 100vw * 0.375 ) 
  }
  #shield, #shield > div,#shield > div  > div > div {
    height:calc( 100vw * 0.375 ) 
  }
  #shield > div{
    overflow:hidden;
    background-size:100%;
  }
  #shield .tabs {
    margin-top: -25px;
  }
  #shield {
    margin-bottom: 140px;
  }

  #banners > div > p {
    transform:scale(0.8);
    transform-origin:top right;
  }
}