/* egames */
svg {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  transform: rotateY(-180deg) rotateZ(-90deg);
}
.egames-select .nice-select{
  margin-bottom: 5px;
}
.egames-group-name{
  background: linear-gradient(to bottom, #15a476 0%,#086d4d 100%);
  font-size: 18px;
}
.egames-list-games{
    display: block;
    padding: 2px 0;
}
.single-egames{
    float: left;
    width: 33.3%;
    margin-bottom: 10px;
}
.box-egames{
    margin: 0 2px;
    color: #fff;
    font-size: 12px;
    border: none;
    overflow: hidden;
    position: relative;
}
.game-egames{
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}
.egames-img-wrap{
    position: relative;
    padding: 0px;
    background-color: #000;
    width: 100%;
    /* min-height: 70px; */
    height: calc(125vw / 4);
}
.egames-img-wrap img:before { 
  content: "";
  color: #fff;
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background-color: #000;
}
.egames-img-wrap img{
  display: block;
  height: 100%;
  width: 100%;
}
.tournament-icon, .badge-game{
    z-index: 1;
    width: 30%;
    height: auto;
    position: absolute;
    padding: 5px;
}
.tournament-icon svg{
    fill: #fff;
    position: unset;
    transform: unset;
    width: 40px;
    height: 40px;
}
.new-icon {
  z-index: 1;
  width: 30%;
  height: auto;
  right: 0;
  position: absolute;
  /*transform: rotateY(0deg) rotateZ(90deg);*/
}
.new-icon svg{
  fill: #fff;
  position: unset;
  transform: unset;
}
.egames-title{
    background: linear-gradient(to bottom, #15a476 0%,#086d4d 100%);
    padding: 3px 2px;
    color: #fff;
    font-size: 2.25vw;
    text-align: center;
}
.long-title {
  overflow: hidden;
  position: relative;
}
.long-title div{
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  -moz-transform:translateX(100%);
  -webkit-transform:translateX(100%);  
  transform:translateX(100%);
  -moz-animation: scroll-left 15s linear infinite;
  -webkit-animation: scroll-left 15s linear infinite;
  animation: scroll-left 15s linear infinite;
}
@-moz-keyframes scroll-left {
  0%   { -moz-transform: translateX(100%); }
  100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
  0%   { -webkit-transform: translateX(100%); }
  100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
  0%   { 
    -moz-transform: translateX(100%); 
    -webkit-transform: translateX(100%); 
    transform: translateX(100%);     
  }
  100% { 
    -moz-transform: translateX(-100%); 
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); 
  }
}

.dd-egames ul{
  width: 100%;
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.dd-egames ul > li > a{
  padding: 10px 20px;
}
.dd-egames ul > li:nth-child(odd){
  background: #333;
}
.dd-games button:focus{
  border-color: unset;
  outline: unset !important;
}
/*End egames*/