p { margin: 0; }

.primary-button {
  display: inline-block;
  border: 2px solid #b80000;
  background-color: transparent;
  color: #b80000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color .35s, color .35s;
}
.primary-button:hover {
  background-color: #b80000;
  color: #fff;
}

.participate {
  padding: 88px 0;
  padding-top: 44px;
}
.participate-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.flex{
  display: flex !important;
}
.participate-item {
  background: #fff;
  box-shadow: 0 8px 24px #0000001a;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 1;
}
.participate-item_qr {
  min-width: 150px;
  min-height: 150px;
  width: 150px;
  height: 150px;
}
.participate-item_data {
  width: 100%;
  height: 170px;
}
.participate-item_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 10px;
}
.participate-item_amounts {
  display: flex;
  align-items: center;
  gap: 24px;
}
.participate-item_address {
  margin: 15px 0 10px;
  transition: color 2s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 350px;
}
.participate-item_amounts span {
  font-weight: 600;
  white-space: nowrap;
  display: block;
  margin-top: 10px;
}
.participate-item_footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.participate-item_button {
  font-size: 14px;
  padding: 10px 18px;
}
.participate-item_waiting {
  font-size: 14px;
}
@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
.participate-item_waiting:after {
  content: "";
  display: inline-block;
  width: 1em;
  text-align: left;
  animation: dots 2s linear infinite;
}
.participate-item_selector {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown:nth-child(1) {
  min-width: 203px;
}
.dropdown {
  width: 100%;
  position: relative;
  user-select: none;
}
.dropdown-selected {
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  box-shadow: 0 4px 12px #0000000d;
  overflow: auto;
  padding: 8px 10px 8px 16px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  box-sizing: border-box;
}
.dropdown:nth-child(2) {
  min-width: 155px;
  max-width: 155px;
  width: 100%;
}
.dropdown.hide {
  display: none;
}
.participate-item_address {
  margin: 15px 0 10px;
  transition: color 2s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 350px;
}

.participate-item_qr.empty {
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 4px 12px #0000000d;
}
.participate-item_qr {
  min-width: 150px;
  min-height: 150px;
  width: 150px;
  height: 150px;
}
.dropdown-content {
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  box-shadow: 0 4px 12px #0000000d;
  width: 100%;
  position: absolute;
  margin-top: 8px;
  z-index: 99;
  overflow: auto;
  height: 200px;
  flex-direction: column;
}
.dropdown-content2{
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  box-shadow: 0 4px 12px #0000000d;
  width: 100%;
  position: absolute;
  margin-top: 44px;
  z-index: 99;
  overflow: auto;
  flex-direction: column;
}
.dropdown-item {
  background: transparent;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color .2s;
  width: 100%;
  gap: 8px;
  cursor: default;
  box-sizing: border-box;
}
.dropdown-item span{
  white-space: nowrap;
}
.dropdown-item:hover {
  background-color: #f4f4f4;
}

.participate-item_address.copied {
  color: #108840;
  transition: none;
}
.dropdown .name {
  font-size: 16px;
}
.dropdown .name2 {
  font-size: 16px;
}
.dropdown .slug {
  color: #00000080;
  font-size: 16px;
}
.dropdown-needed-btn, .dropdown-needed-btn2{
  user-select: none;
}
.flex{
  display: flex !important;
}
.arrow, .arrow2{
  transition: 0.1s all;
  transform: rotate(0deg);
}
.rotate{
  transform: rotate(180deg);
}
#img-tochange{
  background: rgb(255, 255, 255);
  vertical-align: middle;
  width: 100%;
}
.dropdown-selected{
  height: 42px !important;
  overflow: hidden;
}
#content-to-change{
  display: flex;
  flex-direction: row;
  align-items: center;
}
#content-to-change .name{
  display: flex;
  margin-left: 7px;
  margin-top: 1px;
}
#content-to-change .slug{
  display: flex;
  margin-left: 7px;
  margin-top: 2px;
}

.dropdown-item:hover {
  background-color: #f4f4f4;
}

.dropdown-item{
  border: 0;
}


@media (max-width: 1240px) {
  .participate-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1240px) {
  .participate {
    padding: 75px 0;
  }
}
@media (max-width: 1240px) {
  .section-content {
    max-width: 700px;
  }
}
@media screen and (max-width: 700px) {
  .fallow{
    display: none !important;
  }
  .participate-item {
    width: 80vw;
    min-height: 100px;
    box-sizing: border-box;
  }
  .participate-item_selector{
    flex-direction: column;
  }
}