.epg-days {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
margin-bottom: 10px;
flex-wrap: nowrap;
gap: 10px;
}
.epg-day {
color: grey;
font-weight: bold;
font-size: 16px;
text-decoration: underline;
cursor: pointer;
text-transform: capitalize;
}
.epg-day.active {
color: #f07e26
}
.epg-day::after {
content: "";
border-left: 3px solid grey;
height: 1px;
margin-left: 10px;
position: relative;
top: 2px;
}
.epg-day:last-child::after {
display: none;
}
.epg-items {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
flex-wrap: wrap;
font-family: 'Roboto Condensed', sans-serif;
}
.epg-item {
margin: 3px 0;
width: 100%;
height: 150px;
background: #dddddd;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: flex-start;
padding: 10px;
gap: 20px;
}
.epg-item .epg-start {
width: 60px;
text-align: center;
}
.epg-item .epg-start .epg-logo {
width: 50px;
height: 100%;
filter: invert(1);
border: inherit;
margin: inherit;
}
.epg-item .epg-start .epg-time {
font-size: 17px;
font-weight: 900;
}
.epg-item .epg-start .epg-time.now {
color: #f07e26;
}
.epg-item .epg-thumb {
width: 90px;
}
.epg-item .epg-thumb img {
width: 90px;
height: 100%;
object-fit: cover;
border-radius: 5px;
margin-bottom: inherit;
}
.epg-item .epg-content {
width: calc(100% - 180px - 90px - 60px);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 10px;
}
.epg-item .epg-content .epg-title {
font-weight: bold;
font-size: 18px;
color: #222222;
}
.epg-item .epg-content .epg-description {
font-size: 14px;
color: #222222;
width: 65%;
line-height: 1.3; overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 5; -webkit-box-orient: vertical;
white-space: normal;
}
.epg-item .epg-time-col {
width: 180px;
display: flex;
flex-direction: column;
align-content: flex-end;
align-items: flex-end;
justify-content: flex-start;
flex-wrap: nowrap;
}
.epg-item .epg-time-col .epg-tag-now {
font-size: 25px;
font-weight: bold;
text-align: center;
width: 100%;
line-height: 12px;
margin-top: 14px;
color: #f07e26;
}
.epg-item .epg-time-col .epg-tag-next {
font-size: 25px;
font-weight: 700;
text-align: center;
width: 100%;
line-height: 12px;
margin-top: 14px;
color: #484747;
}
.epg-item .epg-time-col .epg-tag-time {
font-size: 44px;
font-weight: 900;
text-align: center;
width: 100%;
}
.epg-item .epg-time-col .epg-tag-time.early {
color: grey;
margin-top: 25px;
}
.epg-item .dnone {
display: none;
}
@media (max-width: 1200px) {
.epg-item .epg-content .epg-description {
width: 100%;
-webkit-line-clamp: 3;
}
}
@media (max-width: 600px) {
.epg-days { gap: 5px;
}
.epg-days .epg-day{
font-size: 13px;
}
.epg-days .epg-day::after {
display: none;
}
}
@media (max-width: 560px) {
.epg-item .epg-content {
width: calc(100% - 180px - 60px)
}
.epg-item .epg-time-col {
display: none;
}
}
@media (max-width: 450px) {
.epg-item{
gap: 10px;
}
.epg-item .epg-content {
width: calc(100% - 131px - 30px)
}
.epg-item .epg-content .epg-title{
line-height: 1.1; overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; -webkit-box-orient: vertical;
white-space: normal;
} }