@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid black;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
  position: relative;
  top: 180px;
}

#role-main .container .recommended__info button:hover {
  background-color: gray !important;
  border: 1px solid;
}

/* style informacji o wirtualnym spacerze na liście ofert, w polecanych głównej stronie*/
.virtual-walk {
  position: absolute;
  left: -85px;
  width: 200px;
  text-align: center;
  transform: rotate(-45deg);
  font-size: 12px;
  z-index: 1;
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  top: -25px;
  padding-bottom: 2px;
  color: black;
}

.element {
  overflow: hidden;
}

/* style informacji o wirtualnym spacerze w najnowszych na głównej stronie*/
.virtual-walk-last {
  position: absolute;
  left: -70px;
  width: 200px;
  text-align: center;
  transform: rotate(-45deg);
  font-size: 15px;
  color: aliceblue;
  z-index: 1;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  top: -12px;
  padding-bottom: 2px;
  text-transform: uppercase;
  background-color: #09090999;
}

.recommended__item:hover .virtual-walk-last {
  z-index: 2;
  color: white;
  transform: rotate(0deg);
  background-color: transparent!important;
  font-size: 16px;
  left: -21px;
  text-align: left;
  font-weight: 700;
  transition: font-size 0.3s, color 0.3s, rotate 0.3s;
}
