/**
 * @author emreguzel
 * @email yeg2799@gmail.com
 * @create date 2023-10-11 22:19:34
 * @modify date 2023-10-11 22:19:34
 * @desc Base style entry point
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
}

.cursor-pointer {
  cursor: pointer !important;
}

.slide-right-enter-active {
  animation: slide-right 0.5s ease-in forwards;
}

@keyframes slide-right {
  from {
    transform: translateX(-1000px);
  }
  to {
    transform: translateX(0);
  }
}
.slide-up-enter-active {
  animation: slide-up 0.5s ease-in forwards;
}

@keyframes slide-up {
  from {
    transform: translateY(15px);
  }
  to {
    transform: translateY(0);
  }
}
.slide-down-enter-active {
  animation: slide-down 0.5s ease-in forwards;
}

@keyframes slide-down {
  from {
    transform: translateY(-15px);
  }
  to {
    transform: translateY(0);
  }
}
.breaking-news-ticker {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  border: 1px solid;
}

.breaking-news-ticker__wrapper {
  position: relative;
  width: 100%;
  overflow: auto;
}

.breaking-news-ticker-news {
  width: 100%;
  padding-left: 10px;
}

.breaking-news-ticker-news--scroll {
  position: relative;
  display: flex;
  scroll-behavior: smooth;
}

.breaking-news-ticker-news--scroll .breaking-news-ticker-news__item {
  padding: 0 10px;
}

.breaking-news-ticker-news__item {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breaking-news-ticker-label {
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

.breaking-news-ticker-navigation {
  position: absolute;
  right: 0;
  display: flex;
  height: 100%;
}

.breaking-news-ticker-navigation--button {
  height: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
}