#DLCMenu {
  display: none;
  width: 1200px;
  height: 800px;
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Lato', sans-serif;
  background: #212025;
  padding: 20px;
  box-sizing: border-box;
}

@keyframes containerEntrance {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #18364F;
  box-sizing: border-box;
  animation: containerEntrance 0.2s;
}

#dlcContainer {
  overflow-y: auto;
  position: initial;
}

#header {
  height: 104px;
  width: 100%;
  color: white;
  padding: 20px 20px 0 20px;
}

#dlcList {
  padding: 20px 20px 0 20px;
}

@keyframes dlcItemEntrance {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dlcItemContainer {
  position: relative;
  transition: all 0.2s ease-out;
  transform: translate3d(0, 0, 0); /* acceleration */
}

.dlcItemContainer:hover {
  transform: scale(1.02) translate3d(0, 0, 0);
}
.dlcItemContainer:hover .dlcItemBackground {
  opacity: 0.3;
}

.dlcItemBackground {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.1;
  transition: all 0.2s ease-out;
}

.dlcItem {
  background: transparent;
  padding: 20px;
  margin-bottom: 10px;
  display: flex;
  opacity: 0;
  color: white;
}

.dlcItem * {
  cursor: default;
}

.dlcItemEntering {
  animation: dlcItemEntrance 0.2s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

.dlcImageContainer {
  position: relative;
}

.dlcBandeau {
  position: absolute;
  top: -31px;
  left: -12px;
  transform: rotateZ(-135deg);
  width: 1px;
	height: 40px;
	border: 1px solid orange;
	border-color: transparent transparent transparent orange;
	border-width: 25px;
}

.dlcBandeauText {
  position: absolute;
  transform: rotateZ(-45deg);
  top: 16px;
  left: 4px;
  font-weight: bold;
  color: white;
}

.dlcContent {
  padding: 20px;
  padding-top: 0;
  flex-grow: 1;
  position: relative;
}

.dlcBuyContainer {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #000;
  padding: 2px;
}

.dlcImage {
  width: 250px;
  height: 150px;
}

.dlcPrice {
  color: white;
  display: inline-block;
  padding: 5px;
}

.dlcBuyButton {
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  text-decoration: none !important;
  color: #D2E885 !important;
  background: rgba(121,153,5,1);
  background: -webkit-linear-gradient( top, rgba(121,153,5,1) 5%, rgba(83,105,4,1) 95%);
  background: linear-gradient( to bottom, rgba(121,153,5,1) 5%, rgba(83,105,4,1) 95%);
}

.dlcDescription {
  font-size: 13px;
  margin-top: 15px;
}

#dlcClose {
  position: absolute;
  right: 40px;
  background: rgba(0, 0, 0, 0.69);
  border: 0;
  padding: 10px 20px;
  color: #eee;
  font-weight: bold;
  cursor: pointer;
}

#dlcClose:hover {
  background: #000;
}
