@charset "utf-8";
/* CSS Document */

.feed-contaner {
	display: flex;
	flex-direction: column;
	/*gap: 10px;*/
	max-height: 95vh;
	overflow: hidden;
	height:auto;
	position: relative;
	padding-bottom: 0;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}

.feed-contaner .feedblock {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.feed-contaner .list-item-glass {
  padding: 30px 25px 50px;
  display: flex;
  height: 100%;
  
  border: 1px solid rgba(119, 163, 11, 0.2);
  
  text-shadow: 0 0 5px rgb(0, 0, 0);
  flex-flow: column;
  justify-content: space-between;
  background: url("../img/led8.png") repeat-x bottom center;
  border-radius: 4px;
  box-shadow: 10px 0px 100px 10px rgba(62, 108, 36, 0.3) inset;
}

.feed-contaner .list-item-glass .list-item-img {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.feed-text {
  display: flex;
  font-size: 18px;
  line-height: 23px;
  font-family: var(--font-paragraph);
  padding-top: 30px;
  font-weight: 500;
	text-shadow: 0 0 10px rgb(0, 0, 0);
	gap: 20px;
	text-align: left;
}

.feedblock .overlay-badge {
  position: relative;
  display: flex;
  max-width: 120px;
  margin: -20px auto 20px;
}


.feedloaderbox {
  display: block;
  position: absolute;
  width: 150px;
  left: 50%;
  transform: translate(-50%,0);
  top: 51px;
}

.feedloader {
  width: 0;
  height: 10px;
  margin: 0;
  display: inline-block;
  position: relative;
  background: linear-gradient(270deg, rgb(198, 255, 157) 0%, rgb(150, 251, 74) 100px);
  /*animation: animFw 10s linear infinite;*/
  box-shadow: 0 0 15px rgb(104, 255, 0);
  border-radius: 6px;
}

.feedloader.counting {
	animation: animFw 300s linear 1;
}

.feedloader:after, .feedloader:before {
        content: '';
        width: 10px;
        height: 1px;
        background: #fff;
        position: absolute;
        top: 9px;
        right: -2px;
        opacity: 0;
        transform: rotate(-45deg)  translateX(0px);
        animation: coli1 0.3s linear infinite;
}

.feedloader:before {
        top: -4px;
        transform: rotate(45deg);
        animation: coli2 0.3s linear infinite;
}


@media only screen and (max-width: 575px) {
	
	.feed-contaner .list-item-glass {
		padding: 30px 20px 80px;
		justify-content: center;
	}
	
	.feed-text {
		font-size: 16px;
		line-height: 22px;
		flex-direction: column;
	}
	
}