/* COUNTRIES LIST */
.countries-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #e8e8e1;
}
.cl-item {
  width: 50%;
  display: flex;
  margin-bottom: 20px;
}
.cl-item img {
  margin: auto 0;
  margin-right: 7px;
}
.cl-item a {
  margin: auto 0;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #7f7f7f;
}
.cl-item a:hover {
  color: #303030;
}
.show-countries {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #d2d2ca;
  padding: 12px 0;
}
.show-countries:hover {
  color: #7f7f7f;
}
.show-countries::after {
  font-family: "Sportbet";
  font-weight: normal;
  content: "\e900";
  -moz-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin-left: 5px;
}
.show-countries.active::after {
  content: "\e903";
}
@media screen and (max-width: 768px) {
  .show-countries {
    margin-top: auto;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) and (min-width: 551px) {
  .cl-item {
    width: 100%;
  }
}
