body {
	background-color: #eceef4;
    color: #3e5561;
}

.tag-breadcrumbs {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 16px;
    padding-left: 8px;
}

.tag-holder {
	width: 85%;
	max-width: 1400px;
	margin: 0 auto;
    margin-top: 16px;
    margin-bottom: 16px;
}

@media (max-width: 800px) {
    .tag-holder {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 0px;
    }
}

/*-------Tag Details---------*/

.tag-holder .tag-details-holder {
	width: 60%;
	display: inline-block;
    vertical-align: top;      
}

@media (max-width: 800px){
    .tag-holder .tag-details-holder {
        width: 100%;
        display: block;       
    }
}

/*-------Tag Header---------*/

.tag-details-holder .tag-header-holder {
    padding-left: 8px;
    padding-right: 16px;
}

.tag-header-holder .tag-header {
    width: 100%;
    height: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding: 16px;
}

.tag-header .tag-name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 8px;
}

.tag-name .posts-count {
  font-size: 16px;
  font-weight: 500;
}

.tag-header .arrow-holder {
    width: 95%;
    display: inline-block;
    position: relative;
    margin: 0 16px;
    padding: 24px 0;
    overflow: hidden;
}

.arrow-holder .arrow-left,
.arrow-holder .arrow-right {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.arrow-holder .arrow-left {
    left: -30px;
}

.arrow-holder .arrow-right {
    right: -30px;
}

.tag-header .content-holder {
    width: 100%;
    position: relative;
}

.content-holder .slick-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.content-holder .slick-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.slick-slider {
    overflow: hidden;
}

.content-holder .scrollable-tag-holder {
    padding: 4px 16px;
    border-radius: 32px;
    display: inline-block;
    background-color: #00bfa5;
    margin-right: 4px; 
}

.scrollable-tag-holder h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    color: white;
}

@media (max-width: 800px) {
    .tag-details-holder .tag-header-holder {
        padding: 0;
    }

    .tag-header-holder .tag-header {
        border-radius: 0;
        padding: 16px 0;
    }

    .tag-header .tag-name {
        text-align: center;
    }

    .scroll-holder .content-holder {
        display: block;
        overflow: auto;
    }
}

/*-------Posts---------*/

.tag-details-holder .posts {

}

@media (max-width: 800px) {
    .tag-details-holder .posts {
        width: 100%;
        padding: 8px;
    }    
}

/*-------Gap---------*/

.tag-holder .gap {
	width: 4%;
    display: inline-block;
}

@media (max-width: 800px) {
  .tag-holder .gap {
        display: none;
    }
}

/*-------Sidebar---------*/

.tag-holder .sidebar{
	width: 36%;
	display: inline-block;
}

@media (max-width: 800px) {
    .tag-holder .sidebar {
        width: 100%;
        display: block;
}