/*
 * Copyright (c) 2024 Trevor Iwaszuk. All Rights Reserved.
 */
.blurred{
    filter: blur(5px);
}

@font-face {
    font-family: 'SuperchargeLaser';
    src: url('/sys/assets/SuperchargeLaser-9YZjj.otf') format('opentype');
}
@font-face {
    font-family: 'Digital';
    src: url('/sys/assets/DigitalNormal.otf') format('opentype');
}

.background-transition {
    transition: background-color 1s ease;
}


.assassins-title
{
    font-family: SuperchargeLaser;
}

.countdown-timer
{
    font-family: Digital;
}

.bg-gradient-assassins {
    background-color: #8f0f02;
    background-image: linear-gradient(180deg, #930d01 10%, #330000 100%);
    background-size: cover;
}
.flash-red {
    animation-name: fadeInOpacity;
    z-index: 99;
    /*animation-duration: .1s;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    transition: background-color 0.2s ease; /* Adjust the transition time as needed */
}
.modal-backdropx {
    animation-name: fadeInOpacity;
    animation-duration: .5s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(1px);
}
@keyframes fadeInOpacity {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.network-game .grid {
    display: grid;
    grid-template-columns: repeat(5, 50px);
    grid-gap: 10px;
    justify-content: center;
    margin: 20px;
}
.network-game .node {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    border: 1px solid #ccc;
}
.network-game .node.active {
    background-color: green;
}

/*the container must be positioned relative:*/
.autocomplete {
    position: relative;
    /*display: inline-block;*/
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items li {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items li:hover {
    /*background-color: #e9e9e9;*/
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color:  #d4d4d4 !important;
    /* color: #ffffff; */
}
