.ticker-wrapper .top {
  position: relative;
  height: 50px;
}

.ticker-wrapper .top h2 {
  line-height: 50px;
  font-size: 16px;
}

.ticker-wrapper .ctl-box {
  position: absolute;
  right: 0;
  bottom: 5px;
  
   display: flex;             /* ¹öÆ°À» °¡·Î·Î ³ª¿­ */
  gap: 5px;  
}
.ctl-box .btn-admin,
.ctl-box .btn-prev,
.ctl-box .btn-next,
.ctl-box .btn-toggle {
 width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-sizing: border-box;

}



.ctl-box .btn-admin {
  display:inline-block;
  vertical-align: middle;
  text-align: center;
  line-height:34px;
  font-size: 16px;
  color:tomato;
}
.ticker-wrapper .owl-item {
  padding: 0;
}

.ticker-wrapper .item {
  text-align: center;
  display: block;
  position: relative;
  border-left: 0;
  padding: 1em; 
}

.ticker-wrapper .item img{
	width:239px;height:60px;
}


.ticker-wrapper .line-left {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ticker-wrapper .line-right {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.ticker-wrapper .item .txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 1em;

}

@media screen and (max-width: 640px) {

	.ticker-wrapper .item img{
		width:100%; height:auto;
	}
}