.r-rankCv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 335px;
  width: fit-content;
  margin: 6px auto 15px;
  padding: 0 60px;
  height: 95px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #ff0000 0%, #e30000 100%);
  box-sizing: border-box;
  box-shadow:
    0px 2px 6px 0px #48484866,
    inset 0px 0px 10px 0px #b2470066;
  animation: Doki2 2s ease infinite;
}

#ranking a.r-rankCv {
  color: #fff;
}

.r-rankCv:hover {
  color: #fff;
}

.r-rankCv::before {
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #be0000 0%, #fa4242 100%);
  box-shadow: 0px 0px 4px 0px #ad000026;
}

.r-rankCv::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  right: 31px;
  transform: translateY(-50%) rotate(-45deg);
}

@keyframes Doki2 {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}

.r-rankCv__sub {
  position: relative;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  color: #f10101;
}

.r-rankCv__sub::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: -15px;
  transform: rotate(-45deg);
  width: 12px;
  height: 2px;
  background: #f10101;
}

.r-rankCv__sub::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -15px;
  transform: rotate(45deg);
  width: 12px;
  height: 2px;
  background: #f10101;
}

.r-rankCv__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 23px;
  margin: 0 auto 20px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 2.14px 2.14px 4.27px 0px #ad0000;
  background: #fff;
}

.recoCv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 266px;
  height: 86px;
  padding-left: 20px;
  border: 2px solid #fe8700;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(0deg, #ff3000 0%, #ff7900 100%);
}

.recoCv::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 2px solid #ff9900;
  border-radius: 50%;
  background: #ffff99;
}

.recoCv::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 31px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #ff3200;
  border-width: 8px 0px 8px 10px;
}

