.stockits__list{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.stockits__list .stockits__list-item{
	width: calc(14.2% - 20px);
	margin: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	transition: box-shadow	0.3s;
}
.stockits__list .stockits__list-item:hover{
	 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px){
	.stockits__list .stockits__list-item{
		width: calc(33% - 20px);
	}
}

@media screen and (max-width: 560px){
	.stockits__list .stockits__list-item{
		width: calc(50% - 20px);
	}
}
.warning-text {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border: 3px solid #ff4ebb;
    padding: 15px;
    left:0;
    right:0;
    font-size: 12px;
    color: #000;
    /*top:0;*/
    /*bottom:0;*/
    margin: auto;
}
.warning-text p {
    margin-bottom: 0!important;
}
.warning-text.active {
    display: block;
}
.hide {
    display: none;
}

.loader {
    display: block;
    position: absolute;
    background: #fc0500;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
}