/*
    Document   : override
    Created on : <date>
    Author     : <author>
    Description:
        This is where any of your application specific styles should be included
*/

.send-off-screen {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.app-deweb-icon {
  width: 159px;
  height: 46px;
  content: url("images/logo_fifa_2026.png")
}

html:not([dir="rtl"]) .app-deweb-icon {
  padding-right: 4px
}

html[dir="rtl"] .app-deweb-icon {
  padding-left: 4px
}

.app-deweb-icon:before {
  display: inline
}

.app-appheader-avatar {
  width: 24px;
  height: 24px
}

.app-appheader-avatar:before {
  content: url("images/avatar_24px.png")
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi),
(min-resolution: 1.5dppx) {
  .app-appheader-avatar:before {
    content: url("images/avatar_24px_2x.png");
    -webkit-transform: translate(-25%, -25%) scale(0.5);
    transform: translate(-25%, -25%) scale(0.5)
  }
}

.app-singin-bg {
  height: calc(100vh - 130px);
  background-image: url('images/login-bg.png');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
}

.app-action-btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border-color: transparent;
  font-size: 1.7em;
  line-height: 0.5em;
  color: var(--oj-core-success-contrast);
  box-shadow: 0px 0px 4px 1px gray;
  background-color: var(--oj-core-success-1);
}

.app-action-btn:hover {
  background-image: linear-gradient(rgba(157, 255, 144, 0.24), rgba(157, 255, 144, 0.24));
}

.app-action-btn:active {
  background-image: linear-gradient(rgba(157, 255, 144, 0.32), rgba(157, 255, 144, 0.32));
}

.app-action-btn:active {
  background-color: var(--oj-core-success-3);
}

.app-siginin-panel {
  max-width: 474px;
  width: 80%;
}

ul.footer {
  padding: 0 20px;
}

.footer li {
  display: inline;
}

.flag-container {
  position: relative;
  width: 80px;
  height: 48px;
}

.match-flag {
  width: 32px;
  box-shadow: 0px 0px 4px 1px gray;
  position: absolute;
}

.match-flag.home {
  top: 3px;
  left: 3px;
}

.match-flag.away {
  bottom: 3px;
  right: 3px;
}

.vs-text {
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.blink {
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}

.match-reactions-button-container {
  width: 100%;
  overflow-y: hidden;
  overflow-x: visible;
}

.match-reaction {
	display: inline-block;
  margin-right: -17px;
}

.match-reaction-emoji {
	font-size: 1.5em;
}

.match-reaction > .oj-badge {
	bottom: 14px;
	position: relative;
	right: 12px;
}

.comment-badge {
  border-radius: 10px;
  padding: 0 0.75rem;
  box-sizing: border-box;
  line-height: 1.5rem;
  min-width: 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-block;
}

.comments {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.comments-text {
	flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.comments-form {
	flex: 0 0 auto;
}