/* base style */
.blog-post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    color: #999;
    font-size: 13px;
}
.blog-post-meta .glyphicon {
    margin-right: 2px;
}
/* end base style */
/* slider */
.slider-items {
    width: 100%;
    background-color: gray;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px 10px;
    overflow-x: scroll;
    cursor: pointer;
    user-select: none;
    scrollbar-width: none;
}
.slider-items::-webkit-scrollbar {
    display: none;
}
.slider-item {
    width: 220px;
    min-width: 220px;
    height: 180px;
    background-color: black;
    padding: 10px;
    overflow: hidden;
    color: #fff;
}
.slider-item:first-child {
    background-image: url('/files/img/article/css_gorizontalnaya_prokrutka/slide1.png');
    background-size: contain;
}
.slider-item:nth-child(3) {
    background-color: #5820f6;
}
.slider-item:nth-child(4) {
    background-color: #32cb5d;
}
.slider-item:nth-child(5) {
    background-color: #a56ffd;
}
/* slider end */

/* gradient 2 color*/
.article-gradient-2color-ver {
    width: 100%;
    height: 400px;
    margin-bottom: 16px;
    background: linear-gradient( to right, #dff0d8 0%, #dff0d8 50%, #31708f 50%, #31708f 100%);
}
.article-gradient-2color-hor {
    width: 100%;
    height: 400px;
    margin-bottom: 16px;
    background: linear-gradient( to top, #dff0d8 0%, #dff0d8 50%, #31708f 50%, #31708f 100%);
}
/* end gradient 2 color*/

.form-check.form-check-flex {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

/*nth-child region*/
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    justify-content: center;
}
.block {
    width: 100px;
    height: 100px;
    border: 1px solid black;
}

.grid-container.one .block:nth-child(5) {
    background-color: blue;
}

.grid-container.many .block:nth-child(3n) {
    background-color: red;
}
.grid-container.many .block:nth-child(3n-2) {
    background-color: green;
}
/* end nth-child region*/

/* bottom block */
.article-bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    align-items: center;
}
.article-bottom-rubric p {
    margin: 0;
}
.article-bottom-share {
    display: flex;
    gap: 8px;
    align-items: center;
}
.article-bottom-share .glyphicon {
    font-size: 18px;
}
@media screen and (max-width: 480px) {
    .article-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .article-bottom .ya-share2__container_mobile.ya-share2__container_size_m .ya-share2__icon {
        height: 24px;
        width: 24px;
    }
}
/* end bottom block */

.example-bw{
	width: 600px;
	max-width: 100%;
	filter: grayscale(100%);
}
.example-bw:hover {
	filter: none;
}
.youtube-frame {
	width: 100%;
	height: 480px;
}
@media screen and (max-width: 480px) {
	.youtube-frame {
		width: 100%;
		height: auto;
	}
}

.fancy-block {
	display: flex;
    justify-content: center;
    gap: 16px;
	margin-bottom: 12px;
	align-items: center;
}
@media screen and (max-width: 480px) {
	.fancy-block {
		flex-direction: column;
	}
}

.frame-sd-cheat-sheet {
    border: none;
    min-height: 750px;
}