.dl-manuals-container {
	position: relative;
	margin: 0 auto;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	-o-transform: translateZ(0) scale(1.0, 1.0);
}

.dl-manuals-container > * {
	max-width: 55em;
	margin-left: auto;
	margin-right: auto;
}

.dl-manuals-container .dl-heading {
	margin-top: 2em;
	margin-bottom: 1em;
	text-align: center;
	text-transform: uppercase;
	font: 0.85em/1.5 MuseoSans, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.launcher-container {
    display: flex;
	margin: 0px 5% 20px 5%;
	flex-wrap: wrap;
}

.launcher-container a {
	display:block;
	width:100%;
	/*height:93px;*/
	background-position:0px 0px;
	margin-bottom:5px;
}

.launcher-container .dl-heading {
	margin-top: 2em;
	margin-bottom: 1em;
	text-align: center;
	text-transform: uppercase;
	font: 0.85em/1.5 MuseoSans, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.launcher-child {
    flex: 1;
    /*border: 1px solid white;*/
}  

.launcher-child:first-child {
    margin-right: 20px;
	min-width: 75%;
}

.launcher-flip {
  opacity: 1;
  outline: 0;
  color: #fff;
  width: 100%;
  line-height: 40px;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: Arial,Helvetica,sans-serif;
  text-transform: uppercase;
}
.launcher-flip:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.launcher-flip:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
.launcher-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #adadaf;
  display: block;
  line-height: 40px;
  transition: 0.5s;
  position: absolute;
  background: #323237;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
}
.launcher-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #adadaf;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  border: 1px #242424 solid;
  background: #141414;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
}

.realmlist-file-image {
	width:681px; height:53px;
	background:url(../images/realmlist-screenshot.jpg) no-repeat;
	box-shadow:inset 0 0 0 2px #323237, inset 0 0 15px rgba(0,0,0,.5);
	margin:5px 0 10px 17px;
}

.realmlist-file-image-bfa {
	width:719px; height:52px;
	background:url(../images/realmlist-bfa.jpg) no-repeat;
	box-shadow:inset 0 0 0 2px #323237, inset 0 0 15px rgba(0,0,0,.5);
	margin:5px 0 10px 17px;
}

.button-container {
    display: flex;
	flex-wrap: wrap;
	margin-bottom: 5%;
    margin-left: auto;
    margin-right: auto;
	justify-content: center;
}

.button-container a {
	width: 33%;
    margin: 2em 2.5%;
	background-position:0px 0px;
	margin-bottom:5px;
}

@media (max-width: 1180px)
{
.button-container a {
	display:block;
	width:100% !important;
}

.animated-button1 a {
	display:block;
	width:100% !important;
}
}

.animated-button1 {
  background: linear-gradient(-30deg, #141414 50%, #141414 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #adadaf;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #323237;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#323237));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #323237);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#323237));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #323237);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#323237));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #323237);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#323237));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #323237);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}