/* button styles start */
.btn-btn {
  display: inline-flex;
  border: 2px solid #196A64;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 1.3vw, 20px);
  gap: 1rem;
  background: #196A64;
  padding: 4px 4px 4px 24px;
  font-family: 'MonaSansCondencedBold', Arial;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 400ms ease;
  align-items: center;
  justify-content: space-between;
}
.btn-btn-normal {                  /*no icon*/
  height: 3.375rem;
  padding: 8px 24px 8px 24px;
  font-size: 1.3rem;
  justify-content: center;
}
.btn-btn-normal-icon {
  height: 3.375rem;
  max-width: 3.5rem;
  padding: 8px 8px 8px 36px;
  font-size: 1.3rem;
}
.btn-btn-lg {                  /*no icon*/
  height: 4.75rem;
  padding: 8px 24px 8px 24px;
  font-size: 2rem;
  justify-content: center;
}
.btn-btn-lg-icon {
  height: 4.75rem;
  max-width: 4.75rem;
  padding: 8px 8px 8px 36px;
  font-size: 2rem;
}

.btn-btn .button-icon {
  background: #196A64;
  background: transparent;
  display: flex;
/*  width: 36px;
  height: 36px;*/
  border-radius: 9px;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}

.btn-btn:hover {
  background: transparent;
  color: #101123;
}

.btn-btn:hover .button-icon {
  background: #101123;
}

.btn-btn .button-icon svg {
  width: 16px;
  height: 16px;
  /*  color: #fff;*/
  transition: 0.3s;
  transform: rotate(0deg);
}
.btn-btn-lg .button-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.btn-btn:hover .button-icon svg {
  /*  color: #fff;*/
  transform: rotate(45deg);
}

.btn-arr {
  padding: 16px;
  width: 3.375rem;
  height: 3.375rem;
}

.btn-btn:hover .button-icon {
  background: transparent;
}

.btn-arr-slider-right .button-icon svg {
  transition: 0.3s;
  transform: rotate(45deg);
}

.btn-arr-slider-left .button-icon svg {
  transition: 0.3s;
  transform: rotate(-135deg);
}

.btn-arr-slider-left:hover .button-icon svg {
  transition: 0.3s;
  transform: rotate(-135deg);
}

/* button styles end */
/* button colors*/
.button-green {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-green:hover {
  background: #0f3230;
  color: #fff;
  border: 2px solid #0f3230;
}

.button-dark-green {
  background: #0f3230;
  color: #fff;
  border: 2px solid #0f3230;
}

.button-dark-green:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-light-green {
  background: #2C8C85;
  color: #fff;
  border: 2px solid #2C8C85;
}

.button-light-green:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.button-light:hover {
  background: #ffffff;
  color: #0E2B60;
  border: 2px solid #ffffff;
}
.button-voting {
  background: linear-gradient(90deg,rgba(226, 3, 255, 0.78) 0%, rgba(255, 52, 66, 1) 100%);
  color: #ffffff;
  border: 2px solid #fff;
}

.button-voting:hover {
  background: #ffffff;
  color: #0E2B60;
  border: 2px solid #ffffff;
}

.button-blue {
  background: #0E2B60;
  color: #fff;
  border: 2px solid #0E2B60;
}

.button-blue:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-white {
  background: #fff;
  color: #252529;
  border: 2px solid transparent;
}

.button-white:hover {
  background: linear-gradient(90deg,rgba(226, 3, 255, 0.78) 0%, rgba(255, 52, 66, 1) 100%);
  color: #fff;
  border: 2px solid transparent;
}
.button-inline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.button-inline:hover {
  background: #5d47ed;
  background: linear-gradient(90deg,rgba(93, 71, 237, 1) 0%, rgba(228, 52, 255, 1) 100%);
  color: #fff;
  border: 2px solid #fff;

}


.button-empty {
  background: transparent;
  color: #252529;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
}
.button-empty span {
    border-bottom: 2px solid;
}
.button-empty .button-icon {
  border-bottom: none;
}
.button-empty:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

@media (max-width: 992px) {
  .btn-btn-lg {
    font-size: 1.2rem;
  }
}





/* button colors end*/




.icon-link1 {
  display: inline-flex;
  min-width: 3rem;
  height: 3rem;
  color: white;
  transition: color 0.3s ease;
}
/*
.icon-link:hover {
  color: #7289da;
}

.icon-link.steam:hover {
  color: #fff;
}
.icon-link.discord:hover {
  color: #fff;
}
*/
svg.icon {
  width: 100%;
  height: 100%;
}
