.quests-page .quests {
  gap: 20px;
  margin-top: 35px;
}

.quests-page .quest {
  width: calc(50% - 10px);
  background: #15252e;
  border: 1px solid #223642;
  flex-direction: column;
  padding: 40px;
  font-size: 16px;
}

.quests-page .quest span {
  font-size: 16px;
}

.quests-page .quest-info-block {
  width: 100%;
  flex-direction: column;
  margin-bottom: 40px;
}

.quests-page .quest-info-block:last-of-type {
  margin-bottom: 30px;
}

.quests-page .quest h4 {
  text-transform: uppercase;
  color: #02eae7;
  margin-bottom: 25px;
}

.quests-page .quest-description {
  margin-bottom: 20px;
}

.quests-page .requirements-info {
  width: 100%;
}

.quests-page .requirement-info-top {
  margin-bottom: 15px;
}

.quests-page .requirement-info-bottom {
  flex-wrap: nowrap;
  align-items: flex-end;
}

.quests-page .percentage {
  margin-left: 30px;
  color: #02eae7;
  font-size: 16px;
}

.quests-page .abil {
  width: 100%;
  background: #0f2d31;
  border: 2px solid #0f171e;
  padding: 0;
}

.quests-page .abil .bar {
  height: 8px;
  background: #566a7a;
	background: linear-gradient(90deg, rgb(39 118 173) 0%, rgb(3 16 24 / 100%) 100%);
	opacity: 1.3;
	transition: all ease-in-out 0.3s;
}
.need-to-activate .bar {
  animation: 3s barWidth;
}

.abil .bar {
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, rgb(39 118 173), rgb(3 16 24 / 100%));
}

@keyframes barWidth {
  0% {
      width: 0;
  }
  100% {
      width: 100%;
  }
}

/* Item Quest */

.item-quest{
  display: table;
  margin:  50px auto;
  max-width: 909px;
  text-align: center;
}
@media only screen and (min-width : 1260px) {
  .item-quest{
      max-width: 1212px !important;
  }
}

.item-quest .group {
  width: 287px;
  height: 174px;
  background: url('../images/item-quest/bg.webp');
  margin: 15px 8px;
  position: relative;
  display: inline-block;
}

.item-quest .pagination>li {
  display: inline-block !important;
}

.item-quest .items {
  position: absolute;
  top: 57px;
  left: 10px;
}
.item-quest .item {
  float: left;
  width: 45px;
  height: 45px;
  margin-left: 7px;
  position: relative;
}

.item-quest .item >img{
  width: 45px;
  height: 45px;
  opacity: 0.4;
}

.item-quest .item .border{
  background: url("images/item-quest/item_border.png");
  position: absolute;
  left: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
}

.item-quest .add{
  display: table;
  padding: 2px 8px 3px 8px;
  font-size: 14px;
  position: absolute;
  top: 25px;
  left: 20px;
}
.item-quest .add:before{
  background-color: #2BD964;
  opacity: 1.0;
}

.item-quest .clear{
  display: table;
  padding: 2px 8px 3px 8px;
  font-size: 13px;
  position: absolute;
  bottom: 18px;
  right: 20px;
  cursor: pointer;
}
.item-quest .clear:hover:before{
  background-color: #2BD964;
  opacity: 1.0;
}

.item-quest .item:hover .add:before{
  border: solid 2px #FFF;
}

.item-quest .items > .button{
  cursor: pointer;
}
.item-quest .items > .button:hover img{
  opacity: 1.0;
}

.item-quest .items > .active >img{
  opacity: 0.55;
}
.item-quest .item.active .border {
  background: url("images/item-quest/item_border_.png");
}
.item-quest .item.active {
  background-color: #225b3e;
}
.item-quest .group .title{

  text-align: center;
  margin-top: 12px;
}.item-quest .group > i{
   position: absolute;
  top: 15px;
  right: 25px;
}

.item-quest .buff{
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: 11px;
}
.item-quest .bonus{
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 11px;
  color: #2BD864;
  opacity: 0.4;
}
.item-quest .level{
  position: absolute;
  font-size: 16px;
  text-align: center;
  top: 12px;
  width: 100%;
}
.tooltip-inner {
  max-width: 550px;
}
