/*Public CSS*/
.itnt-ticker-holder img{
	width:100%;
	height:auto;
}
.itnt-ticker-holder a{
	border-bottom:none;
	box-shadow:none!important;
}
.itnt-thumbnail-overlay{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity:0;
	background-color:rgba(0,0,0,0.2);
	transition:0.5s;
	z-index:999;
}

.itnt-ticker-loading {
    text-align: center;
    padding: 10px 0;
}

.itnt-ticker-holder .itnt-feed-title{
		display:flex;
		align-items: center;
		text-overflow: ellipsis;
	    overflow: hidden;
		color:#444;
		margin-bottom:0;
}
.itnt-ticker-holder .itnt-feed-title  a{
	margin: 0;
	display: inline;
	font-size: 14px;
	font-weight: 300;
	text-transform: none;
	color: #f7f7f7;
	text-decoration: none!important;

	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;

	transition: all 0.3s;
}
.itnt-feed-title .itnt-meta-date{
	display:inline-block;
	font-size:12px;
	color:#fff;
	margin-left: 5px;
	text-transform: uppercase;
}
.itnt-meta-date span {
    background-color: #343434;
	padding: 2px 10px 3px;
	border-radius: 40px;
}

/**************ticker***********/
.itnt-ticker-holder{
	position: relative;
    display: inline-block;
    width: 100%;
}
.itnt-ticker-holder.itnt-fix-place{
	position: fixed;
    display: inline-block;
    width: 100%;
    max-width:100%;	
	left:0;
	z-index:9999;
}

.itnt-ticker-holder.itnt-fix-place.itnt-bottom-place{
	 bottom: 0;
}

.itnt-ticker-body {
	position: relative;
	width: 100%;
	display: table;
	background-color: #777;
}

.itnt-ticker-heading {
	position: relative;
	background-color: #444;
	color: #fff;
	height: 50px;
	width: 150px;
	padding: 0 15px;
	font-size:13px;
	cursor: pointer;
	display: table-cell;
	vertical-align: middle;
}
/*heading style*/
.itnt-heading-icon{
	display:inline-block;
	margin-right:10px;
	
}
.itnt-heading-title{
	display:inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
}
.itnt-heading-title span {
    display: inline-block;
}
/*loading*/
.itnt-ticker-loading {
	display:table-cell;
	max-width:1px;
	padding-left: 30px; 
	padding-right: 15px;
	text-align:center;
	vertical-align:middle;
}
.itnt-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0 -5%;
    overflow: hidden;
}

.itnt-dot-floating {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #f7f7f7;
    color: #9880ff;
    animation: dotFloating 3s infinite cubic-bezier(0.15, 0.6, 0.9, 0.1);
}

.itnt-dot-floating::before, .itnt-dot-floating::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

.itnt-dot-floating::before {
    left: -12px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #f7f7f7;
    color: #f7f7f7;
    animation: dotFloatingBefore 3s infinite ease-in-out;
}

.itnt-dot-floating::after {
    left: -24px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #f7f7f7;
    color: #f7f7f7;
    animation: dotFloatingAfter 3s infinite cubic-bezier(0.4, 0, 1, 1);
}

@keyframes dotFloating {
    0% {
        left: calc(-50% - 5px);
    }
    75% {
        left: calc(50% + 105px);
    }
    100% {
        left: calc(50% + 105px);
    }
}

@keyframes dotFloatingBefore {
    0% {
        left: -50px;
    }
    50% {
        left: -12px;
    }
    75% {
        left: -50px;
    }
    100% {
        left: -50px;
    }
}

@keyframes dotFloatingAfter {
    0% {
        left: -100px;
    }
    50% {
        left: -24px;
    }
    75% {
        left: -100px;
    }
    100% {
        left: -100px;
    }
}
/*end loading*/
.itnt-ticker-content-cnt{
	display: table-cell;
	padding-left: 30px;
	padding-right: 15px;
	color: #fff;
	vertical-align: middle;
	text-align: left;
	max-width:1px;
	overflow:hidden;
	direction: ltr;
}
.itnt-ticker-show-nav .itnt-ticker-content-cnt{
	padding-right:70px;
}
.itnt-ticker-body.itnt-timer-enable{
	padding-left: 60px;
}
.itnt-ticker-body.itnt-timer-enable .itnt-time-cnt{
	display:block;	
}
.itnt-time-cnt {
	display:none;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	line-height: 50px;
	height: 100%;
	background-color: #333;
	color: #fff;
	font-size:15px;
	font-weight:bold;
	direction: ltr;
}
.itnt-hour-cnt, .itnt-min-cnt {
	display: inline-block;
}
		
.itnt-ticker-thumb {
    display:inline-block;
    width: 30px;
    height: auto;
	margin-right: 5px;
	vertical-align: baseline;
}
.itnt-ticker-thumb img{
	width:30px!important;
	height:auto!important;
	vertical-align:top;
}
.itnt-ticker-thumb.itnt-circle-img img{
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
}


/*share style*/
.itnt-ticker-body .itnt-ticker-share {
    display: inline-block;
    position: relative;
    cursor:pointer;
	margin-right: 5px;
}
.itnt-ticker-body .itnt-ticker-share i.fa-share-alt {
    width: 15px;
    height: 25px;
    background-color: transparent;
    color: #f7f7f7;
    line-height: 25px;
    text-align: center;
    font-size: 15px;
}
.itnt-ticker-body .itnt-social-icons {
    position: absolute;
    top: 0;
    right: -4px;
    z-index:999;
    line-height: 25px;
    opacity:0;
    visibility:hidden;
    background-color: #fff;
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -moz-transform: translateX(110%);
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
}
.itnt-ticker-body .itnt-social-icons i {
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    color: #444;
}
.itnt-ticker-body .itnt-ticker-share:hover .itnt-social-icons{
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity:1;
    visibility:visible;
}
.itnt-ticker-feeds {
    margin-left: 5px;
    overflow: hidden;
    display: block;
    white-space: nowrap;
}


/************** Templates *********************/
/*Templates*/
.itnt-template-1 .itnt-logo {
	position: absolute;
	left: 0;
	top: 0;
	width: 130px;
	height: 130px;
	background-color: #777;
}
.itnt-template-1 .ticker-slider-holder .bx-viewport,
.itnt-template-1.itnt-ticker-holder .itnt-feed-title,
.itnt-template-1 .itnt-slider-wrapper{
	height: 50px!important;
	max-height: 50px!important;
}
.itnt-template-1 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.itnt-template-1.itnt-ticker-holder.show_logo {
	height: 180px;
}
.itnt-template-1.itnt-ticker-holder{
	height: 50px;
}
.itnt-template-1 .itnt-heading-title{
	max-width: 150px;
	line-height: 50px;
}
.itnt-template-1 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 50px;
	vertical-align: top;
}
.itnt-template-1 .itnt-ticker-main-body .itnt-ticker-body {
	position: absolute;
	bottom: 0;
	left: 0;
}
.itnt-template-1 .itnt-time-cnt {
	font-size: 13px;
}

.itnt-template-1 .itnt-ticker-content-cnt {
	padding-left: 80px!important;
	padding-right: 20px;
}
.itnt-template-1 .itnt-hide-nav .itnt-ticker-content-cnt{
	padding-left: 20px!important;
}

.marquee-effect.itnt-template-1 .itnt-ticker-content-cnt{
	padding-left: 20px!important;
}

.itnt-template-1 .bx-controls-direction{
	position: absolute;
	top: 0;
	left: -80px;
	outline: 0;
	height: 50px;
	width: 70px;
	background-color: #969696;
}
.itnt-template-1 .ticker-slider-holder .bx-controls-direction a{
	background-color: transparent;
}
.itnt-template-1 .ticker-slider-holder .bx-prev {
    right: 37px;
    line-height: 24px;
}
.itnt-template-1 .ticker-slider-holder .bx-next {
    right: 11px;
    line-height: 24px;
}


/*templte 2*/
.itnt-template-2.itnt-ticker-holder {
	height: 130px!important;
}
.itnt-template-2 .ticker-slider-holder .bx-viewport,
.itnt-template-2.itnt-ticker-holder .itnt-feed-title,
.itnt-template-2 .itnt-slider-wrapper {
	height: 50px!important;
	max-height: 50px!important;
}
.itnt-template-2 .itnt-ticker-main-body{
	margin-left: 130px;
}
.itnt-template-2.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}
.itnt-template-2 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100% - 130px);
	height: 50px;
	bottom: 0;
}
.itnt-template-2.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100%;
}
.itnt-template-2 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 130px;
	line-height: 50px;
	height: 130px;
	background-color: #fff;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
}
.itnt-template-2 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-2 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 90px;
}
.itnt-template-2 .itnt-time-cnt{
	width: 90px;
	line-height: 50px;
	font-size: 17px;
}
.itnt-template-2 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 80px;
	height: 80px;
	left: 0;
	top: -80px;
	right: 0;
	width: auto;
	font-size: 40px;
}

.itnt-template-2 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 80px;
	vertical-align: top;
}
.itnt-template-2 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 150px;
	padding-left: 10px;
}

.itnt-template-2 .itnt-ticker-heading {
	padding: 0 130px 0 15px;
}
.itnt-ticker-content-cnt  {
	overflow: visible;
}

.itnt-template-2 .itnt-ticker-body:before {
	content: '';
	position: absolute;
	top: -80px;
	right: 35px;
	width: 70px;
	height: 130px;
	background-color: #fd6363;
	-webkit-transform: skewX(160deg);
	-moz-transform: skewX(160deg);
	transform: skewX(160deg);
	z-index: 1;
}
.itnt-template-2 .itnt-ticker-body:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	border-style: solid;
	border-width: 0 0 160px 75px;
	border-color: transparent transparent #fff transparent;
}
.itnt-template-2 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: auto;
	height: auto;
	z-index: 9999;
	background-color: transparent;
}
.itnt-template-2 .ticker-slider-holder .bx-prev {
	right: -76px;
	top: 2px;
}
.itnt-template-2 .ticker-slider-holder .bx-next {
	right: -100px;
	top: -58px!important;
}
.itnt-template-2 .ticker-slider-holder .bx-prev i,
.itnt-template-2 .ticker-slider-holder .bx-next i{
	font-size: 30px;
}

/*Template 3*/
.itnt-template-3.itnt-ticker-holder {
	height: 140px!important;
}
.itnt-template-3 .ticker-slider-holder .bx-viewport,
.itnt-template-3.itnt-ticker-holder .itnt-feed-title,
.itnt-template-3 .itnt-slider-wrapper{
	height: 50px!important;
	max-height: 50px!important;
}
.itnt-template-3 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-3.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}
.itnt-template-3 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100% - 80px);
	height: 50px;
	bottom: 0;
	transform: translate(-80px, -10px);
}
.itnt-template-3.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100%;
	transform: translate(0, -10px);
}

.itnt-template-3 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 140px;
	height: 140px;
	background-color: #fff;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 50%;
	z-index: 9;
}
.itnt-template-3 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.itnt-template-3 .itnt-ticker-body.itnt-timer-enable .itnt-ticker-content-cnt {
	padding-left: 135px;
}
.itnt-template-3.hide_logo .itnt-ticker-body.itnt-timer-enable .itnt-ticker-content-cnt {
	padding-left: 90px;
}
.itnt-template-3 .itnt-time-cnt{
	width: 180px;
	line-height: 50px;
	font-size: 17px;
	padding-left: 40px;
}
.itnt-template-3.hide_logo .itnt-time-cnt {
	width: 130px;
	padding-left: 0;
}
.itnt-template-3 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 70px;
	height: 70px;
	left: 0;
	top: -70px;
	right: 0;
	width: auto;
	font-size: 40px;
}
.itnt-template-3 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 70px;
	vertical-align: top;
}
.itnt-template-3 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 150px;
}
.itnt-template-3.hide_logo .itnt-ticker-content-cnt {
	padding-left: 20px;
}
.itnt-template-3 .itnt-ticker-heading {
	padding: 0 130px 0 80px;
}
.itnt-template-3.hide_logo .itnt-ticker-heading{
	padding: 0 130px 0 20px;
}
.itnt-template-3 .itnt-ticker-content-cnt  {
	overflow: visible;
	padding-left: 80px;
}

.itnt-template-3 .itnt-ticker-body:before {
	content: '';
	position: absolute;
	top: -70px;
	right: 22px;
	width: 65px;
	height: 120px;
	background-color: #fd6363;
	-webkit-transform: skewX(160deg);
	-moz-transform: skewX(160deg);
	transform: skewX(160deg);
	z-index: 1;
}
.itnt-template-3 .itnt-ticker-body:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	border-style: solid;
	border-width: 0 0 120px 50px;
	border-color: transparent transparent #fff transparent;
}
.itnt-template-3 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: auto;
	height: auto;
	z-index: 9999;
	background-color: transparent;
}
.itnt-template-3 .ticker-slider-holder .bx-prev {
	right: -94px;
	top: 2px;
}
.itnt-template-3 .ticker-slider-holder .bx-next {
	right: -115px;
	top: -48px!important;
}

.itnt-template-3 .ticker-slider-holder .bx-prev i,
.itnt-template-3 .ticker-slider-holder .bx-next i{
	font-size: 30px;
}


/*templte 4*/
.itnt-template-4.itnt-ticker-holder {
	height: 135px!important;
}
.itnt-template-4 .ticker-slider-holder .bx-viewport,
.itnt-template-4.itnt-ticker-holder .itnt-feed-title,
.itnt-template-4 .itnt-slider-wrapper {
	height: 40px!important;
	max-height: 40px!important;
}
.itnt-template-4 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-4.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}
.itnt-template-4 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100% - 140px);
	height: 40px;
	top: 15px;
	left: 135px;
}
.itnt-template-4.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100%;
	left: 0;
}
.itnt-template-4 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 140px;
	height: 140px;
	background-color: #777;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0 30px;
	z-index: 9;
}
.itnt-template-4 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-4 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 90px;
}
.itnt-template-4 .itnt-time-cnt{
	width: 90px;
	line-height: 40px;
	font-size: 17px;
}
.itnt-template-4 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 80px;
	height: 80px;
	left: 0;
	top: 40px;
	right: 0;
	width: auto;
	font-size: 30px;
}
.itnt-template-4 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 80px;
	vertical-align: top;
}
.itnt-template-4 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 100px;
	padding-left: 10px;
}

.itnt-template-4 .itnt-ticker-heading {
	padding: 0 130px 0 15px;
}
.itnt-template-4 .itnt-ticker-content-cnt  {
	overflow: visible;
	padding-left: 10px;
}
.itnt-template-4 .itnt-ticker-content-cnt.itnt-marquee{
	padding-left: 20px;
}

.itnt-template-4 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: 0;
	right: -100px;
	width: 80px;
	height: 40px;
	background-color: #000;
}
.itnt-template-4 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: auto;
	height: auto;
	z-index: 9999;
	background-color: transparent;
}
.itnt-template-4 .ticker-slider-holder .bx-prev {
	right: 49px;
	margin-top: -10px!important;
}
.itnt-template-4 .ticker-slider-holder .bx-next {
	right: 18px;
	margin-top: -10px!important;
}

.itnt-template-4 .ticker-slider-holder .bx-prev i,
.itnt-template-4 .ticker-slider-holder .bx-next i{
	font-size: 20px;
}



/*templte 5*/
.itnt-template-5.itnt-ticker-holder {
	height: 130px!important;
}
.itnt-template-5 .ticker-slider-holder .bx-viewport,
.itnt-template-5.itnt-ticker-holder .itnt-feed-title,
.itnt-template-5 .itnt-slider-wrapper {
	height: 40px!important;
	max-height: 40px!important;
}
.itnt-template-5 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-5.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}

.itnt-template-5 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100% - 180px);
	height: 40px;
	top: 15px;
	left: 154px;
}
.itnt-template-5.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100%;
	left: 0;
}
.itnt-template-5 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 180px;
	height: 130px;
	background-color: #777;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0;
	z-index: 9;
	-webkit-transform: skewX(160deg);
	-moz-transform: skewX(160deg);
	transform: skewX(160deg);
}
.itnt-template-5 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) skewX(20deg);
}
.itnt-template-5 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 120px;
}
.itnt-template-5 .itnt-time-cnt{
	width: 120px;
	line-height: 40px;
	font-size: 17px;
	padding-left: 30px;
}
.itnt-template-5.hide_logo .itnt-time-cnt{
	padding-left: 0;
}
.itnt-template-5 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 70px;
	height: 70px;
	left: 0;
	top: 40px;
	right: 0;
	width: auto;
	font-size: 40px;
}
.itnt-template-5 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 70px;
	vertical-align: top;
}
.itnt-template-5 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 70px;
	padding-left: 10px;
}

.itnt-template-5 .itnt-ticker-heading {
	padding: 0 130px 0 40px;
}
.itnt-template-5.hide_logo .itnt-ticker-heading {
	padding: 0 130px 0 20px;
}
.itnt-template-5 .itnt-ticker-content-cnt  {
	padding-left: 10px;
	padding-right: 50px;
	overflow: visible;
}
.itnt-template-5 .itnt-timer-disable .itnt-ticker-content-cnt{
	padding-left: 50px;
}
.itnt-template-5.hide_logo .itnt-timer-disable .itnt-ticker-content-cnt{
	padding-left: 20px;
}
.itnt-template-5 .itnt-ticker-content-cnt.itnt-marquee{
	padding-right: 50px!important;
}
.itnt-template-5 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: 45px;
	right: -76px;
	width: 80px;
	height: 60px;
}
.itnt-template-5 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: auto;
	height: auto;
	z-index: 9999;
	background-color: transparent;
}
.itnt-template-5 .ticker-slider-holder .bx-prev {
	right: 50px;
	top: 35px;
}
.itnt-template-5 .ticker-slider-holder .bx-next {
	right: 34px;
	top: 5px!important;
}

.itnt-template-5 .ticker-slider-holder .bx-prev i,
.itnt-template-5 .ticker-slider-holder .bx-next i{
	font-size: 20px;
}

.itnt-template-5 .itnt-ticker-heading:after {
	content: '';
	position: absolute;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 55px;
	border-color: transparent transparent #fff transparent;
}

.itnt-template-5 .itnt-ticker-content-cnt:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 40px 40px 0;
	border-color: transparent #fff transparent transparent;
}

.itnt-template-5 .itnt-ticker-heading:before {
	content: '';
	position: absolute;
	top: 0;
	right: 18px;
	width: 49px;
	height: 70px;
	background-color: #fd6363;
	-webkit-transform: skewX(151deg);
	-moz-transform: skewX(151deg);
	transform: skewX(151deg);
	z-index: 1;
}



/*templte 6*/
.itnt-template-6.itnt-ticker-holder {
    height: 130px!important;
}
.itnt-template-6 .ticker-slider-holder .bx-viewport,
.itnt-template-6.itnt-ticker-holder .itnt-feed-title,
.itnt-template-6 .itnt-slider-wrapper {
	height: 80px!important;
	max-height: 80px!important;
}
.itnt-template-6 .itnt-ticker-main-body{
    margin-left: 160px;
}
.itnt-template-6.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}

.itnt-template-6 .itnt-ticker-main-body .itnt-ticker-body{
    position: absolute;
    width: calc(100% - 175px);
    height: 80px;
    bottom: 0;
    left: 185px;
    border-radius: 0 60px 60px 0;
}

.itnt-template-6.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100%;
	left: 0;
}


.itnt-template-6 .itnt-logo {
    text-align: center;
    position: absolute;
    top: 0;
    left: 52px;
    width: 133px;
    height: 130px;
    background-color: #777;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    direction: ltr;
    border-radius: 0;
    z-index: 9;
    -moz-transform: skewX(160deg);
}
.itnt-template-6 .itnt-logo:before {
    content: '';
    position: absolute;
    top: 0;
    left: -65px;
    width: 130px;
    height: 130px;
    background-color: #777;
    border-radius: 50%;
}

.itnt-template-6 .itnt-logo:after {
    content: '';
    position: absolute;
    right: -75px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 130px 75px 0 0;
    border-color: #777777 transparent transparent transparent;
}

.itnt-template-6 .itnt-logo img {
    width: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.itnt-template-6 .itnt-ticker-body.itnt-timer-enable {
    padding-left: 80px;
}
.itnt-template-6 .itnt-time-cnt{
    width: 80px;
    line-height: 80px;
    font-size: 17px;
    left: 103px;
    -webkit-transform: skewX(154deg);
    -moz-transform: skewX(154deg);
    transform: skewX(151deg);
}
.itnt-template-6 .itnt-ticker-heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: -37px;
    width: 40px;
    height: 114px;
    background-color: #444444;
    -webkit-transform: skewX(154deg);
    -moz-transform: skewX(154deg);
    transform: skewX(151deg);
    z-index: 1;
}
.itnt-template-6 .itnt-ticker-heading {
    position: absolute;
    display: inline-block;
    line-height: 35px;
    height: 35px;
    left: 0;
    top: -35px;
    right: 0;
    width: auto;
    max-width: 400px;
    font-size: 20px;
    border-radius: 0 50px 50px 0;
}
.itnt-template-6 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 35px;
	vertical-align: top;
}
.itnt-template-6 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
    padding-right: 125px;
    padding-left: 130px;
}
.itnt-template-6 .itnt-hide-nav .itnt-ticker-content-cnt {
	padding-right: 30px;
	padding-left: 130px;
}

.itnt-template-6 .itnt-ticker-heading {
    padding: 0 30px 0 35px;
    margin-left: 110px;
}
.itnt-template-6 .itnt-time-cnt div {
    -webkit-transform: skewX(154deg);
    -moz-transform: skewX(154deg);
    transform: skewX(205deg);
}
.itnt-template-6 .itnt-ticker-content-cnt  {
	padding-left: 130px!important;
	overflow: visible;
}
.itnt-template-6 .itnt-ticker-content-cnt.itnt-marquee{
	padding-left: 130px!important;
}
.itnt-template-6 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: 50%;
	right: -76px;
	margin-top: -17px;
}
.itnt-template-6 .ticker-slider-holder .bx-controls-direction a{
    margin-top: 0;
    outline: 0;
    width: 35px;
    height: 35px;
    z-index: 9999;
    background-color: #333333;
    line-height: 35px;
    border-radius: 50%;
}
.itnt-template-6 .ticker-slider-holder .bx-prev {
    right: 20px;
    top: 0;
}
.itnt-template-6 .ticker-slider-holder .bx-next {
    right: -25px;
    top: 0!important;
}

.itnt-template-6 .ticker-slider-holder .bx-prev i,
.itnt-template-6 .ticker-slider-holder .bx-next i{
    font-size: 17px;
    line-height: 35px;
}



/*templte 7*/
.itnt-template-7.itnt-ticker-holder {
	height: 130px!important;
}
.itnt-template-7 .ticker-slider-holder .bx-viewport,
.itnt-template-7.itnt-ticker-holder .itnt-feed-title,
.itnt-template-7 .itnt-slider-wrapper {
	height: 80px!important;
	max-height: 80px!important;
}
.itnt-template-7 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-7.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}
.itnt-template-7 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100% - 36px);
	height: 80px;
	bottom: 0;
	left: 37px;
	border-radius: 10px 10px 0 0;
}
.itnt-template-7.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100% ;
	left: 0;
}
.itnt-template-7 .itnt-logo {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 80px;
	background-color: #777;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0;
	z-index: 9;
	-moz-transform: skewX(160deg);
}
.itnt-template-7 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-7 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 80px;
}
.itnt-template-7 .itnt-time-cnt{
	width: 80px;
	line-height: 80px;
	font-size: 17px;
	left: 96px;
	-webkit-transform: skewX(154deg);
	-moz-transform: skewX(154deg);
	transform: skewX(151deg);
}
.itnt-template-7 .itnt-ticker-heading:before {
	content: '';
	position: absolute;
	top: 0;
	left: -75px;
	width: 75px;
	height: 130px;
	background-color: #444444;
	-webkit-transform: skewX(154deg);
	-moz-transform: skewX(154deg);
	transform: skewX(151deg);
	z-index: 1;
}
.itnt-template-7 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 50px;
	height: 50px;
	left: 0;
	top: -50px;
	right: 0;
	width: auto;
	max-width: 400px;
	font-size: 20px;
	border-radius: 0 10px 0 0;
}
.itnt-template-7 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 50px;
	vertical-align: top;
}
.itnt-template-7 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 125px;
	padding-left: 130px;
}

.itnt-template-7 .itnt-ticker-heading {
	padding: 0 30px 0 35px;
	margin-left: 110px;
}
.itnt-template-7 .itnt-time-cnt div {
	-webkit-transform: skewX(154deg);
	-moz-transform: skewX(154deg);
	transform: skewX(205deg);
}
.itnt-template-7 .itnt-ticker-content-cnt  {
	padding-left: 120px;
	overflow: visible;
}

.itnt-template-7 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: 0;
	right: -125px;
	width: 85px;
	height: 80px;
	background-color:#000;
	border-radius: 0 10px 0 0;
}
.itnt-template-7 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: 35px;
	height: 35px;
	z-index: 9999;
	background-color: transparent;
	line-height: 35px;
	border-radius: 50%;
}
.itnt-template-7 .ticker-slider-holder .bx-prev {
	right: 40px;
	top: 50%;
	margin-top: -17px!important;
}
.itnt-template-7 .ticker-slider-holder .bx-next {
	right: 10px;
	top: 50%;
	margin-top: -17px!important;
}

.itnt-template-7 .ticker-slider-holder .bx-prev i,
.itnt-template-7 .ticker-slider-holder .bx-next i{
	font-size: 17px;
	line-height: 35px;
}


/*templte 8*/
.itnt-template-8.itnt-ticker-holder {
	height: 160px!important;
}
.itnt-template-8 .ticker-slider-holder .bx-viewport,
.itnt-template-8.itnt-ticker-holder .itnt-feed-title,
.itnt-template-8 .itnt-slider-wrapper {
	height: 80px!important;
	max-height: 80px!important;
}
.itnt-template-8 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-8.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}
.itnt-template-8 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100% - 80px);
	height: 80px;
	bottom: 0;
	left: 80px;
	border-radius: 0;
}
.itnt-template-8.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100% ;
	left: 0;
}
.itnt-template-8 .itnt-logo {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 80px;
	background-color: #777;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0;
	z-index: 9;
	-moz-transform: skewX(160deg);
}
.itnt-template-8 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-8 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 80px;
}
.itnt-template-8 .itnt-time-cnt{
	width: 80px;
	line-height: 80px;
	font-size: 17px;
	left: 0;
}

.itnt-template-8 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 80px;
	height: 80px;
	left: 0;
	top: -80px;
	right: 0;
	width: auto;
	font-size: 43px;
	border-radius: 0;
}
.itnt-template-8 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 80px;
	vertical-align: top;
}
.itnt-template-8 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 15px;
	padding-left: 10px;
}

.itnt-template-8 .itnt-ticker-heading {
	padding: 0 100px 0 20px;
	background-color: transparent;
	color: #000;
}
.itnt-template-8 .itnt-hide-nav .itnt-ticker-heading {
	padding: 0 20px 0 20px;
}
.itnt-template-8 .itnt-ticker-content-cnt  {
	padding-left: 20px;
	overflow: visible;
}

.itnt-template-8 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: -40px;
	right: -15px;
	width: 85px;
	height: 40px;
	background-color: #000;
}
.itnt-template-8 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: 35px;
	height: 35px;
	z-index: 9999;
	background-color: transparent;
	line-height: 35px;
	border-radius: 50%;
}
.itnt-template-8 .ticker-slider-holder .bx-prev {
	right: 40px;
	top: 50%;
	margin-top: -17px!important;
}
.itnt-template-8 .ticker-slider-holder .bx-next {
	right: 10px;
	top: 50%;
	margin-top: -17px!important;
}

.itnt-template-8 .ticker-slider-holder .bx-prev i,
.itnt-template-8 .ticker-slider-holder .bx-next i{
	font-size: 17px;
	line-height: 35px;
}


/*templte 9*/
.itnt-template-9.itnt-ticker-holder {
	height: 130px!important;
}
.itnt-template-9 .ticker-slider-holder .bx-viewport,
.itnt-template-9.itnt-ticker-holder .itnt-feed-title,
.itnt-template-9 .itnt-slider-wrapper {
	height: 50px!important;
	max-height: 50px!important;
}
.itnt-template-9 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-9 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100%);
	height: 50px;
	bottom: 0;
	left: 0;
	border-radius: 0;
}
.itnt-template-9 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background-color: #777;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0;
	z-index: 9;
	-moz-transform: skewX(160deg);
}
.itnt-template-9 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-9 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 0;
}
.itnt-template-9 .itnt-time-cnt{
	width: 80px;
	line-height: 50px;
	font-size: 17px;
	left: 0;
}

.itnt-template-9 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 80px;
	height: 80px;
	left: 0;
	top: -80px;
	right: 0;
	width: auto;
	font-size: 43px;
	border-radius: 0;
}
.itnt-template-9 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 80px;
	vertical-align: top;
}
.itnt-template-9 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 95px;
	padding-left: 20px;
}
.itnt-template-9 .itnt-timer-enable .itnt-ticker-content-cnt {
	padding-left: 90px;
}
.itnt-template-9 .itnt-ticker-heading {
	padding: 0 100px 0 20px;
}
.itnt-template-9.hide_logo .itnt-ticker-heading {
	padding: 0 20px 0 20px;
}
.itnt-template-9 .itnt-ticker-content-cnt  {
	padding-left: 20px;
	overflow: visible;
}
.itnt-template-9 .itnt-ticker-content-cnt.itnt-marquee{
	padding-right: 20px!important;

}
.itnt-template-9 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: 0;
	right: -95px;
	width: 80px;
	height: 50px;
	background-color: #000;
}
.itnt-template-9 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: 35px;
	height: 35px;
	z-index: 9999;
	background-color: transparent;
	line-height: 35px;
	border-radius: 50%;
}
.itnt-template-9 .ticker-slider-holder .bx-prev {
	right: 40px;
	top: 50%;
	margin-top: -17px!important;
}
.itnt-template-9 .ticker-slider-holder .bx-next {
	right: 5px;
	top: 50%;
	margin-top: -17px!important;
}

.itnt-template-9 .ticker-slider-holder .bx-prev i,
.itnt-template-9 .ticker-slider-holder .bx-next i{
	font-size: 17px;
	line-height: 35px;
}


/*templte 10*/
.itnt-template-10.itnt-ticker-holder {
	height: 110px!important;
}
.itnt-template-10 .ticker-slider-holder .bx-viewport,
.itnt-template-10.itnt-ticker-holder .itnt-feed-title,
.itnt-template-10 .itnt-slider-wrapper {
	height: 70px!important;
	max-height: 70px!important;
}
.itnt-template-10 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-10.hide_logo .itnt-ticker-main-body{
	margin-left: 0;
}
.itnt-template-10 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100% - 120px);
	height: 70px;
	top: 0;
	left: 120px;
	border-radius: 0;
}
.itnt-template-10.hide_logo .itnt-ticker-main-body .itnt-ticker-body{
	width: 100%;
	left: 0;
}
.itnt-template-10 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 110px;
	height: 110px;
	background-color: #777;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0;
	z-index: 9;
	-moz-transform: skewX(160deg);
}
.itnt-template-10 .itnt-logo img {
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-10 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 0;
}
.itnt-template-10 .itnt-time-cnt{
	width: 80px;
	line-height: 70px;
	font-size: 17px;
	right: 0;
	left: auto;
}

.itnt-template-10 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 40px;
	height: 40px;
	left: 0;
	bottom: -40px;
	right: 0;
	width: auto;
	max-width: 400px;
	font-size: 18px;
	border-radius: 0;
}
.itnt-template-10 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 40px;
	vertical-align: top;
}
.itnt-template-10 .itnt-ticker-content-cnt {
	padding-right: 95px;
	padding-left: 10px;
}
.itnt-template-10 .itnt-timer-disable .itnt-ticker-content-cnt {
	padding-right: 20px!important;
}
.itnt-template-10 .itnt-timer-enable .itnt-ticker-content-cnt.itnt-marquee {
	padding-right: 95px!important;
}
.itnt-template-10 .itnt-ticker-content-cnt.itnt-marquee {
	padding-left: 20px!important;
}
.itnt-template-10 .itnt-ticker-heading {
	padding: 0 100px 0 20px;
}

.itnt-template-10 .itnt-ticker-content-cnt  {
	overflow: visible;
}

.itnt-template-10 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: 70px;
	left: 390px;
	width: 80px;
	height: 40px;
	background-color: #000;
}
.itnt-template-10 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: 35px;
	height: 35px;
	z-index: 9999;
	background-color: transparent;
	line-height: 35px;
	border-radius: 50%;
}
.itnt-template-10 .ticker-slider-holder .bx-prev {
	right: 40px;
	top: 50%;
	margin-top: -17px!important;
}
.itnt-template-10 .ticker-slider-holder .bx-next {
	right: 5px;
	top: 50%;
	margin-top: -17px!important;
}

.itnt-template-10 .ticker-slider-holder .bx-prev i,
.itnt-template-10 .ticker-slider-holder .bx-next i{
	font-size: 17px;
	line-height: 35px;
}


/*templte 11*/
.itnt-template-11.itnt-ticker-holder {
	height: 130px!important;
}
.itnt-template-11 .ticker-slider-holder .bx-viewport,
.itnt-template-11.itnt-ticker-holder .itnt-feed-title,
.itnt-template-11 .itnt-slider-wrapper {
	height: 50px!important;
	max-height: 50px!important;
}
.itnt-template-11 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-11 .itnt-timer-disable .itnt-ticker-main-body{
	margin-left: 0;
}
.itnt-template-11 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100%);
	height: 50px;
	bottom: 0;
	left: 0;
	border-radius: 0;
}

.itnt-template-11 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 250px;
	height: 80px;
	background-color: #777;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0;
	z-index: 9;
	-moz-transform: skewX(160deg);
}
.itnt-template-11 .itnt-logo img {
	width: auto;
	max-height: 60px;
    max-width: 220px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-11 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 0;
}
.itnt-template-11 .itnt-time-cnt{
	width: 250px;
	line-height: 50px;
	font-size: 17px;
	left: 0;
}

.itnt-template-11 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 80px;
	height: 80px;
	left: 0;
	top: -80px;
	right: 0;
	width: auto;
	font-size: 43px;
	border-radius: 0;
}
.itnt-template-11 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 80px;
	vertical-align: top;
}
.itnt-template-11 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 95px;
}
.itnt-template-11 .itnt-timer-enable .itnt-ticker-content-cnt {
	padding-left: 270px;
}
.itnt-template-11 .itnt-timer-disable .itnt-ticker-content-cnt {
	padding-left: 20px;
}
.itnt-template-11 .itnt-ticker-heading {
	padding: 0 100px 0 270px;
}
.itnt-template-11.hide_logo  .itnt-ticker-heading {
	padding: 0 20px 0 20px;
}
.itnt-template-11 .itnt-ticker-content-cnt  {
	padding-left: 20px;
	overflow: visible;
}
.itnt-template-11 .itnt-ticker-content-cnt.itnt-marquee {
	padding-right: 20px!important;
}
.itnt-template-11 .itnt-timer-disable .itnt-ticker-content-cnt.itnt-marquee {
	padding-left: 20px!important;
}
.itnt-template-11 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top: 0;
	right: -95px;
	width: 80px;
	height: 50px;
	background-color: #000;
}
.itnt-template-11 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: 35px;
	height: 35px;
	z-index: 9999;
	background-color: transparent;
	line-height: 35px;
	border-radius: 50%;
}
.itnt-template-11 .ticker-slider-holder .bx-prev {
	right: 40px;
	top: 50%;
	margin-top: -17px!important;
}
.itnt-template-11 .ticker-slider-holder .bx-next {
	right: 5px;
	top: 50%;
	margin-top: -17px!important;
}

.itnt-template-11 .ticker-slider-holder .bx-prev i,
.itnt-template-11 .ticker-slider-holder .bx-next i{
	font-size: 17px;
	line-height: 35px;
}




/*templte 12*/
.itnt-template-12.itnt-ticker-holder {
	height: 160px!important;
}
.itnt-template-12 .ticker-slider-holder .bx-viewport,
.itnt-template-12.itnt-ticker-holder .itnt-feed-title,
.itnt-template-12 .itnt-slider-wrapper {
	height: 110px!important;
	max-height: 110px!important;
}
.itnt-template-12 .itnt-ticker-main-body{
	margin-left: 160px;
}
.itnt-template-12 .itnt-ticker-main-body .itnt-ticker-body{
	position: absolute;
	width: calc(100%);
	height: 110px;
	bottom: 0;
	left: 0;
	border-radius: 0;
}
.itnt-template-12 .itnt-logo {
	text-align: center;
	position: absolute;
	top: 50px;
	left: 0;
	width: 250px;
	height: 60px;
	background-color: #1f1f1f;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	direction: ltr;
	border-radius: 0;
	z-index: 9;
	-moz-transform: skewX(160deg);
}

.itnt-template-12 .itnt-logo img {
	width: auto;
	max-height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.itnt-template-12 .itnt-ticker-body.itnt-timer-enable {
	padding-left: 0;
}
.itnt-template-12 .itnt-time-cnt{
	width: 250px;
	line-height: 50px;
	font-size: 17px;
	left: 0;
	bottom: 0;
	top: auto;
	height: 50px;
}

.itnt-template-12 .itnt-ticker-heading {
	position: absolute;
	display: inline-block;
	line-height: 50px;
	height: 50px;
	left: 0;
	top: -50px;
	right: 0;
	width: 100%;
	max-width: 400px;
	font-size: 25px;
	border-radius: 0;
}
.itnt-template-12 .itnt-ticker-heading .itnt-heading-icon i {
	line-height: 50px;
	vertical-align: top;
}
.itnt-template-12  .itnt-ticker-content-cnt {
	padding-right: 20px;
	padding-left: 260px;
}
.itnt-template-12 .itnt-ticker-content-cnt.itnt-marquee{
	padding-left: 270px!important;
}
.itnt-template-12.hide_logo .itnt-timer-disable .itnt-ticker-content-cnt.itnt-marquee{
	 padding-left: 20px!important;
}
.itnt-template-12.hide_logo .itnt-timer-disable  .itnt-ticker-content-cnt {
	padding-left: 20px;
}
.itnt-template-12 .itnt-ticker-show-nav .itnt-ticker-content-cnt {
	padding-right: 95px;
}
.itnt-template-12 .itnt-ticker-heading {
	padding: 0 20px 0 20px;
}

.itnt-template-12 .itnt-ticker-content-cnt  {
	overflow: visible;
}

.itnt-template-12 .ticker-slider-holder .bx-controls-direction{
	position: absolute;
	top:50%;
	margin-top: -25px;
	right: -95px;
	width: 80px;
	height: 50px;
	background-color: #000;
}
.itnt-template-12 .ticker-slider-holder .bx-controls-direction a{
	margin-top: 0;
	outline: 0;
	width: 35px;
	height: 35px;
	z-index: 9999;
	background-color: transparent;
	line-height: 35px;
	border-radius: 50%;
}
.itnt-template-12 .ticker-slider-holder .bx-prev {
	right: 40px;
	top: 50%;
	margin-top: -17px!important;
}
.itnt-template-12 .ticker-slider-holder .bx-next {
	right: 5px;
	top: 50%;
	margin-top: -17px!important;
}

.itnt-template-12 .ticker-slider-holder .bx-prev i,
.itnt-template-12 .ticker-slider-holder .bx-next i{
	font-size: 17px;
	line-height: 35px;
}

.it-blinking{
	animation:blinkingText 1s infinite;
}
@keyframes blinkingText{
	0%{ opacity:1}
	49%{ opacity:0 }
	100%{ opacity:1 }
}


/*Resets*/

.itnt-template-2 .itnt-hide-nav.itnt-ticker-body:before,
.itnt-template-3 .itnt-hide-nav.itnt-ticker-body:before,
.itnt-template-5 .itnt-hide-nav .itnt-ticker-heading:before,
.marquee-effect.itnt-template-2 .itnt-ticker-body:before,
.marquee-effect.itnt-template-3 .itnt-ticker-body:before,
.marquee-effect.itnt-template-5 .itnt-ticker-heading:before{
	display: none;
}


@media (max-width: 576px) {
	.itnt-ticker-body{
		display: block;
	}

	.itnt-ticker-heading{
		width: 100%!important;
		display: inline-block;
	}

	.itnt-ticker-content-cnt{
		display: inline-block;
		max-width: inherit;
		width: 100%;
		height: 100%;
	}
	.itnt-ticker-body .itnt-ticker-content-cnt.itnt-marquee{
		padding-right:0!important;
	}
    .itnt-ticker-body.itnt-timer-enable{
        padding-left: 0!important;
    }
    .itnt-ticker-holder .itnt-ticker-content-cnt {
        padding-left: 10px!important;
        padding-right: 10px!important;
    }
    .itnt-ticker-holder .itnt-ticker-main-body {
        margin-left: 0!important;
    }
    .itnt-ticker-holder .itnt-ticker-main-body .itnt-ticker-body {
        width: 100%!important;
        transform: translate(0, 0);
        left: 0!important;
        border-radius: 0;
    }
    .itnt-ticker-holder .itnt-ticker-heading {
        padding: 0 15px;
        margin-left: 0!important;
        border-radius: 0;
    }
    .itnt-time-cnt,
    .bx-controls-direction,
    .itnt-logo,
    .itnt-ticker-body:before,
    .itnt-ticker-body:after,
    .itnt-ticker-content-cnt:after,
    .itnt-ticker-heading:before,
    .itnt-ticker-heading:after{
        display: none!important;
    }

    .itnt-ticker-holder .itnt-feed-title a.itnt-feed-link{
        font-size: 14px!important;
    }
}