:root{
    --fontSize: 14px;
}

*{
    overflow: -moz-scrollbars-none!important; /* firefox */
    -ms-overflow-style: none!important; /* IE 10+ */
}
*::-webkit-scrollbar {
    display: none!important; /* Chrome Safari */
}
html,
body,
h3,
ul,
li p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

a:hover {
    color: inherit;
}

ul, li{
    list-style: none;
}

img,
.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #C5C5C5;
}

input {
    border: none;
    outline: none;
    background: transparent;
}
button{
    border: none;
    outline: none;
}

/* ------- icon ------- */
.icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: middle;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.icon-search {
    background-image: url(../images/search.svg);
}
.icon-more{
    width: 8px;
    height: 8px;
    background-image: url(../images/arrow-right.svg);
}
.icon-fire{
    width: 8px;
    height: 8px;
    background-image: url(../images/fire.svg);
}
.icon-live{
    background-image: url(../images/live.svg);
}

.text-ellipsis_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}