/* 
* Bootstrap v5 Beta2
* Natacode - Template
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Bebas+Neue&display=swap');

@media (min-width: 1400px) {
    .container-fluid {
        max-width: 1300px !important; 
    }
}

.nata-init{
    display: none;
}

.nata-center {
    display: block;
    margin-left:auto;
    margin-right:auto;
    width:50%
}

.preloader {
    background-color: #343b4a;
    background-repeat: no-repeat;
    justify-content: center;
    overflow: hidden;
    position:fixed;
    width: 100%;
    height: 100%;
    z-index: 9998;
}

.logo-preloader {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 35px;
    color: #343b4a !important;
    font-family: 'Poppins', sans-serif !important;
    transform: translate(-50%, -50%);
}

.nata-bg-match {
    background-image: url('../svg/blue-match.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size:auto;
}

.nata-bg-circle {
    background-image: url('../svg/circle-breath.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size:auto;
    color: whitesmoke !important;
    font-family: 'Poppins', sans-serif !important;
}

.text-bebas {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

.text-poppins {
    font-family: 'Poppins', sans-serif;
}

.icon-md {
    font-size: 30px;
}

.logo {
    transition: transform .5s; /* Animation */
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    color: snow;
}

.logo:hover {
    color: rgb(131, 226, 255);
    font-size: 30px;
    transform: scale(1.1);
}

.logo i {
    vertical-align:-5px;
    padding-left: 8px;
    padding-right: 6px;
    transition: all .2s ease-in-out;
}

.logo:hover i {
    color: royalblue;
}

.glass {
    background: linear-gradient(116.32deg, rgba(255, 254, 255, 0.52) 0%, rgba(255, 255, 255, 0.16) 100%);
    backdrop-filter: blur(100px);
}


#btnUpScroll {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: var(--danger); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}
  
#btnUpScroll:hover {
    background-color: var(--warning); /* Add a dark-grey background on hover */
}

@media (min-width: 768px) {
    .navbar {
        font-family: 'Poppins', sans-serif;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* nata-text-gl */
.nata-text-gl {
    text-align: center;
    color: rgb(255, 255, 255) !important;
    /* font-size: 5em; */
    letter-spacing: 3px;
    /* font-weight: 400; */
    /*Create overlap*/

    margin: 0;
    line-height: 0;
    /*Animation*/
    animation: glitch1 2.5s infinite;
}

.nata-text-gl:nth-child(2) {
    color: #67f3da;
    animation: glitch2 2.5s infinite;
}

.nata-text-gl:nth-child(3) {
    color: #f16f6f;
    animation: glitch3 2.5s infinite;
}

/*Keyframes*/

@keyframes glitch1 {
    0% {
        transform: none;
        opacity: 1;
    }

    7% {
        transform: skew(-0.5deg, -0.9deg);
        opacity: 0.75;
    }

    10% {
        transform: none;
        opacity: 1;
    }

    27% {
        transform: none;
        opacity: 1;
    }

    30% {
        transform: skew(0.8deg, -0.1deg);
        opacity: 0.75;
    }

    35% {
        transform: none;
        opacity: 1;
    }

    52% {
        transform: none;
        opacity: 1;
    }

    55% {
        transform: skew(-1deg, 0.2deg);
        opacity: 0.75;
    }

    50% {
        transform: none;
        opacity: 1;
    }

    72% {
        transform: none;
        opacity: 1;
    }

    75% {
        transform: skew(0.4deg, 1deg);
        opacity: 0.75;
    }

    80% {
        transform: none;
        opacity: 1;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}

@keyframes glitch2 {
    0% {
        transform: none;
        opacity: 0.25;
    }

    7% {
        transform: translate(-2px, -3px);
        opacity: 0.5;
    }

    10% {
        transform: none;
        opacity: 0.25;
    }

    27% {
        transform: none;
        opacity: 0.25;
    }

    30% {
        transform: translate(-5px, -2px);
        opacity: 0.5;
    }

    35% {
        transform: none;
        opacity: 0.25;
    }

    52% {
        transform: none;
        opacity: 0.25;
    }

    55% {
        transform: translate(-5px, -1px);
        opacity: 0.5;
    }

    50% {
        transform: none;
        opacity: 0.25;
    }

    72% {
        transform: none;
        opacity: 0.25;
    }

    75% {
        transform: translate(-2px, -6px);
        opacity: 0.5;
    }

    80% {
        transform: none;
        opacity: 0.25;
    }

    100% {
        transform: none;
        opacity: 0.25;
    }
}

@keyframes glitch3 {
    0% {
        transform: none;
        opacity: 0.25;
    }

    7% {
        transform: translate(2px, 3px);
        opacity: 0.5;
    }

    10% {
        transform: none;
        opacity: 0.25;
    }

    27% {
        transform: none;
        opacity: 0.25;
    }

    30% {
        transform: translate(5px, 2px);
        opacity: 0.5;
    }

    35% {
        transform: none;
        opacity: 0.25;
    }

    52% {
        transform: none;
        opacity: 0.25;
    }

    55% {
        transform: translate(5px, 1px);
        opacity: 0.5;
    }

    50% {
        transform: none;
        opacity: 0.25;
    }

    72% {
        transform: none;
        opacity: 0.25;
    }

    75% {
        transform: translate(2px, 6px);
        opacity: 0.5;
    }

    80% {
        transform: none;
        opacity: 0.25;
    }

    100% {
        transform: none;
        opacity: 0.25;
    }
}

label {
    width: 100%;
    font-size: 1rem;
}

.card-input-element {
    margin: 0;
    display: none;
}

.card-input-element+.card {
    transition: transform .3s;
    color: var(--dark);

    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.5px solid darkslategray;
    border-radius: 10px !important;
    background-position: center;
    background-repeat: repeat-x, no-repeat;
    transition: all .1s ease-in-out;
}

.card-input-element+.card:hover {
    cursor: pointer;
    transform: scale(1.03);
    border: 3px solid var(--dark);
    border-radius: 7px;
}

.card-input-element:checked+.card {
    border: 4px solid var(--success);
    border-radius: 10px;
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
    z-index: 2;
}

@keyframes fadeInCheckbox {
    from {
        opacity: 0;
        transform: rotateZ(-20deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

.bg-resize {
    height: 6rem;
    background-position: center !important;
    border-radius: 10px;
}

.bg-resize-mt {
    height: 6rem;
    padding: 0% !important;
    background-position: center !important;
    border-radius: 10px;
    filter: grayscale();
    z-index: -1;
}

.layer50 {
    /* align-items: center; */
    /* padding-top: 1rem !important; */
    overflow: hidden;
    text-align: center;
    height: 6rem;
    background-color: rgba(1, 1, 1, 0.5) !important;
    /* background-color: rgba(255, 255, 255, 0.7) !important; */
    z-index: 0;
    border-radius: 7px;
}

.layer50 h3, h2 {
    position: relative;
    padding-top: 0.6rem;
    padding-bottom: 18px;
    text-transform: uppercase;
}

.layer50 .game-info {
    padding-bottom: 4px;
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: rgba(1, 1, 1, 0.8) !important;
    color: var(--light);
}

#register_content {
    margin-bottom: 20px;
}

.collgame {
    cursor: pointer;
}

.float-nata {
    transition: all .2s ease-in-out;
}

.float-nata:hover {
    transform: scale(1.05);
}

.nata-data:hover {
    animation: blinker 1s linear infinite;
}

.scroll {
    max-height: 675px;
    overflow-y: auto;
}