/* OTOBO is a web-based ticketing system for service organisations.

Copyright (C) 2001-2020 OTRS AG, https://otrs.com/
Copyright (C) 2019-2024 Rother OSS GmbH, https://otobo.io/

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

/* ExtendedInfoTile */
.oooTile_InfoTile {
    padding: 16px 24px;
    width: calc( 100% - 48px );
    height: calc( 100% - 32px );
    display: grid;
    grid-template-rows: 2fr auto 1fr;
}

.oooTile_InfoTile > .OverflowCtl {
    grid-area: 2 / 1 / 3 / 2;
    width: 100%;
    height: auto;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.oooTile_InfoTile iframe {
    width: 100%;
}

#oooCustomerNotifications > .MessageBox {
    overflow: hidden;
}

.oooMarquee {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    cursor: default;
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
