﻿/* General */
a,
a:focus,
a:hover {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
}
button:focus,
button.focus {
	outline: none !important;
}
/* SVG */
.svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    mask-repeat: no-repeat;
    mask-position: center;
    background-repeat: no-repeat;
    background-position: center;
}
/* Modal */
.modal {
    z-index: 3005;
}
.modal-backdrop {
	z-index: 3000;
}
/* Announcement */
.announcement-container .announcement-content {
    display: flex;
    align-items: center;
    padding: 5px;
    gap: 10px;
}
.announcement-container .announcement-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
}
.announcement-container .marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
    align-items: center;
    position: relative;
}
.announcement-container .marquee:before {
    width: 40px;
    height: 100%;
    content: " ";
    position: absolute;
    top: 0;
    z-index: 1;
}
.announcement-container .marquee-content {
    animation: animate 40s linear infinite;
    padding-left: 100%;
    display: inline-block;
}
.announcement-container .marquee:hover .marquee-content {
    animation-play-state: paused;
}   
@keyframes animate {
    100% {
        transform: translate(-100%, 0);
    }
}