/* Pros and Cons */
.pros_and_cons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 0;
  flex-wrap: wrap;
  margin: 10px 22px;
}
.pros_and_cons h2 {
  width: 100%;
}
.pac_block {
  background-color: #ffffff;
  border: 1px solid #e8e8e1;
  box-sizing: border-box;
  border-radius: 5px;
  width: 49%;
  position: relative;
}
.pac_block.pros {
  background: linear-gradient(45deg, #fffae0, #ffffff);
}
.pac_block.cons {
  background: linear-gradient(45deg, #ffe7ee, #ffffff);
}
.pac_block::before {
  font-family: "Sportbet";
  font-size: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  position: absolute;
  z-index: 1;
  right: -10px;
  top: -23px;
  transform: rotate(5deg);
}
.pac_block.pros::before {
  content: "\e913";
  background-color: #fffae0;
  color: #ffc700;
}
.pac_block.cons::before {
  content: "\e910";
  background-color: #ffe7ee;
  color: #ff0c55;
}
.pac_item {
  padding: 0 15px;
  position: relative;
}
h3.pac_item__title {
  font-weight: 600;
  margin-bottom: 5px;
  line-height: normal;
  padding: 0;
  font-size: 15px;
  padding: 10px;
  border-radius: 10px;
  margin-right: 25px;
}
.pros h3.pac_item__title {
  background-color: #fffae0;
}
.cons h3.pac_item__title {
  background-color: #ffe7ee;
}
p.pac_item__text {
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
}
.pac_item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 50%;
  left: 7px;
  bottom: 0;
  top: 0;
  margin: auto;
  opacity: 0;
}
.pros .pac_item::before {
  background-color: #fdd71c;
}
.cons .pac_item::before {
  background-color: #ff0c55;
}
@media screen and (max-width: 1024px) {
  .pac_item {
    padding: 0 10px;
  }
  h3.pac_item__title {
    font-size: 14px;
    padding: 8px;
  }
  p.pac_item__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 650px) {
  .pros_and_cons {
    padding: 15px;
    margin: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 450px) {
  .pac_block {
    width: 100%;
  }
  .pac_block.pros {
    margin-bottom: 30px;
  }
}
