/* html elements from imported content */
.post-single-content p.subhead{
	font-size: 20px;
    color: #0b72ae;
    line-height: 30px !important;
}

.post-single-content .carousel-indicators{
	display: none !important;
}

.post-single-content .carousel-inner .slick-dots {
    list-style: none;
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-single-content .carousel-inner .slick-dots li {
    margin: 0 5px;
    height: 24px;
    width: 24px;
    padding: 2px;
    border: 1px #fff solid;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-single-content .carousel-inner .slick-dots li button {
    font-size: 0px;
    border: 0px;
    background: none;
    height: 14px;
    width: 14px;
    border-radius: 100px;
    display: block;
    cursor: pointer;
    outline: none;
}

.post-single-content .carousel-inner .slick-dots li.slick-active button {
    background: #e50119;
    border-radius: 100px;
}

.quick-bytes-wrapper {
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 65%);
    -moz-box-shadow: 0 0 10px rgba(0,0,0, .65);
    box-shadow: 0 0 10px rgb(0 0 0 / 65%);
}

.quick-bytes-wrapper .quick-bytes-inner {
	padding: 20px;
}

.quick-bytes-wrapper .quick-bytes-heading{
	font-size: 20px;
    position: relative;
    overflow: hidden;
    text-align: left;
    color: #EA2128 !important;
}

.quick-bytes-wrapper .quick-bytes-heading:before{
	display: inline-block;
    content: "";
    height: 4px;
    background: #EA2128;
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: 7px;
    margin-left: 120px;
}

.quick-bytes-wrapper .quick-bytes-item{
	display: flex;
	margin-bottom: 20px;
}

.quick-bytes-wrapper .quick-bytes-item:last-child{
	margin-bottom: 0;
}

.quick-bytes-wrapper .quick-bytes-item .item-num{
	font-size: 15px;
	font-weight: bold;
	color: #EA2128;
	min-width: 30px;
}
/* General lightbox - START  */

.lightbox-overlay {
    position: fixed;
    background: rgb(0 0 0 / 40%);
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
}

.lightbox-wrapper {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 100;
}

.lightbox-inner {
    max-width: 600px;
    position: relative;
    margin: auto;
    height: auto;
    max-height: 80vh;
    padding: 30px;
    display: flex;
    z-index: 10;
    background: #fff;
    overflow: auto;
    border-radius: 15px;
}

.lightbox-inner.modal-video-embed {
    max-width: 95%;
    padding: 35px;
    background: transparent;
}

.lightbox-inner .close {
    /* background-color: #EA2128; */
    height: 60px;
    width: 50px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
}

.lightbox-inner .close:after,
.lightbox-inner .close:before {
    content: '';
    margin: 0px;
    padding: 0px;
    border: none;
    background: #EA2128;
    height: 3px;
    width: 20px;
    position: absolute;
    top: 20px;
    right: 11px;
    border-radius: 10px;
    transition: all 0.3s;
    transform: rotate(45deg);
}

.lightbox-inner .close:before {
    transform: rotate(-45deg);
}

.lightbox-inner h2 {
    margin: 0px;
    margin-top: 0;
    color: #808285;
    font-size: 28px;
}

.lightbox-inner p {
    font-size: 20px;
    line-height: 32px;
    color: #808285;
    margin-bottom: 0;
}


/* General lightbox - END  */


/* Archive Box - END  */

.archive-box-wrapper .archive-years {
    display: flex;
}

.archive-box-wrapper .archive-years .archive-year {
    padding: 0 7px;
    color: #888;
    cursor: pointer;
	border-right: 1px solid #e7e3e3;
}

.archive-box-wrapper .archive-years .archive-year:first-child {
	padding-left: 0;
}

.archive-box-wrapper .archive-years .archive-year:last-child {
	padding-right: 0;
	border-right: none;
}

.archive-box-wrapper .archive-years .archive-year.current,
.archive-box-wrapper .archive-years .archive-year:hover {
    color: #EA2128;
}

.archive-box-wrapper .archive-months {
    display: flex;
    flex-wrap: wrap;
	margin-top: 12px;
}

.archive-box-wrapper .archive-months .archive-month {
    cursor: pointer;
    border-radius: 10px;
    border: none !important;
    background: #E6E7E8;
    color: #939598 !important;
    font-weight: 300;
    padding: 10px 15px;
    margin: 0 5px 5px 0;
}

.archive-box-wrapper .archive-months .archive-month.current,
.archive-box-wrapper .archive-months .archive-month:hover {
    background-color: #EA2128;
    color: #fff !important;
}


/* Archive Box - END  */

.single .post-likes a {
    position: relative;
}

.single .post-likes a.inactive {
    cursor: text;
}

.single .post-likes a img {
    width: 28px;
    height: 28px;
}

.single .post-likes a span.count {
    position: absolute;
    bottom: 0px;
    left: 15px;
    font-size: 11px;
    background: #ea2128;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 0 5px;
}