#easy-filter-radio {
  position: relative;
}

#easy-filter-radio {
  margin: 0 auto;
}

#easy-filter-radio .col-12 {
  text-align: center;
  padding: 40px 0;
}

.games_text {
  position: relative;
}

.games_text_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col-md-3 {
  width: 20%;
  margin: 6px;
}

.alert {
  margin: 0 auto;
}

.alert img {
  width: 100%;
  height: auto;
}

.lead {
  font-size: 1.5rem;
  font-weight: 300;
}

.container {
  margin: 150px auto;
  max-width: 960px;
}

.btn {
  width: 35%;
  display: inline-block;
  margin: 14px;
  padding: 16px;
  color: #fff;
  cursor: pointer;
  position: relative;
  background-color: #000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.btn:nth-child(1)::before {
  content: "";
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  left: -2px;
  top: -10px;
  border: 4px solid #9c0d3c;
  background: url(../images/game_icon_1.jpg) no-repeat center center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.btn:nth-child(2)::before {
  content: "";
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  left: -2px;
  top: -10px;
  border: 4px solid #9c0d3c;
  background: url(../images/game_icon_2.jpg) no-repeat center center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.btn:nth-child(3)::before {
  content: "";
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  left: -2px;
  top: -10px;
  border: 4px solid #9c0d3c;
  background: url(../images/game_icon_3.jpg) no-repeat center center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.btn:nth-child(4)::before {
  content: "";
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  left: -2px;
  top: -10px;
  border: 4px solid #9c0d3c;
  background: url(../images/game_icon_4.jpg) no-repeat center center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

[data-filter] {
  display: inline-block;
  background: #04aa6d;
  color: white;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  margin-bottom: 1rem;
}

[data-filter]+[data-filter] {
  margin-left: 5px;
}

[data-tags] {
  width: 250px;
  text-align: center;
  line-height: 100px;
  display: inline-block;
  background: #4b5563;
  color: #fff;
  margin: 1rem 1rem 1rem 0;
  border-radius: 5px;
}

.btn-group-toggle>.btn input[type="radio"],
.btn-group-toggle>.btn input[type="checkbox"],
.btn-group-toggle>.btn-group>.btn input[type="radio"],
.btn-group-toggle>.btn-group>.btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  .btn {
    width: 80%;
  }

  .col-md-3 {
    width: 40%;
  }
}

@media screen and (max-width: 255px) {
  .btn::before {
    width: 0;
    height: 0;
  }
}