.notification-wrap{
    background-color: var(--theme-yellow);
}

.notification-bar{
	width: 100%;
    overflow: hidden;
    padding: 0.1rem 0;
}

.notification-bar p {
    white-space: nowrap;
    font-weight: 600;
    display: inline-block;
    color: black;
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: notice 15s linear infinite;
    font-size: 1.3rem;
    padding: 0.3rem 0;
}

/* for Firefox */
@-moz-keyframes notice {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes notice {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(-100%); }
}

@keyframes notice {
    from {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.section-title-wrap{
    display: flex;
    justify-content: center;
}

.section-title {
    text-align:center;
    width:auto;
    margin: auto;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 2rem;
    font-weight: var(--fw-semibold);
    margin-bottom:1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#game-section{
	padding:1.5rem 0rem;
	background:rgba(0,0,0,0.3);
	border-radius: 1.5rem;
	backdrop-filter: blur(3px);
}

#game-section .game-categories{
	padding:2rem 1.5rem;
	display: flex;
	gap:1.5rem;
	overflow: scroll;
}

#game-section  .logo-wrap{
	padding:0.5rem;
	height: 8rem;
	width: 11rem;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: rgba(18,18,18,1);
	border-radius: 1.5rem;
	border: 3px solid rgba(239,0,255,0);
	gap: 0.3rem;
	transition-duration: 0.3s;
}

#game-section  .logo-wrap svg > *{
	color: #585858;
}

#game-section .logo-wrap svg text{
	fill: #585858;
}

#game-section  .game-category .label{
	color: #585858;
	text-align:center;
	font-size: 1.3rem;
    font-weight: var(--fw-medium);
}

#game-section  .label{
	color: rgb(239 0 255);
}

#game-section .active .logo-wrap{
	background: rgba(32,32,32,1);
	box-shadow: 0 0 25px 8px rgba(239, 0, 255, 0.5), inset 0 0 10px 3px rgba(239, 0, 255, 0.3);
	border: 3px solid rgb(239 0 255);
}

#game-section .active .logo-wrap svg text{
	fill: rgb(239 0 255);
}

#game-section .active .logo-wrap svg > *{
	color : rgb(239 0 255);
}

#game-section  .active .label{
	color: white;
}


#accept-payments{
	margin: auto;
	width: 100%;
	padding: 1.5rem 2.5rem;
	box-sizing: border-box;
}

#accept-payments p{
	text-align: center;
	font-size:1.4rem;
	color: white;
	margin-bottom: 1rem;
}

#accept-payments img{
	width: 100%;
}

.sticky-element{
	position: fixed;
	left: 0;
	transform: translateY(-50%);
	z-index: 97;
	width: 8rem;
	height: auto;
	border-radius: 100%;
	top:75%;
}

.sticky-wrap{
	position: relative;
}

.close-sticky{
    font-size: 1.3rem;
    font-weight: var(--fw-light);
    position: absolute;
    text-align: center;
    left: 100%;
    top: 15%;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background: var(--clr-obj-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-sticky svg > *{
	color: white;
}

.sticky-element img{
	width: 95%;
	margin-left: 5%;
}

.sticky-wrap .box{
    width: 100%;
    height: 6rem;
    position: absolute;
    background: var(--clr-bg-cus);
    bottom: 0;
    z-index: -1;
    left:50%;
    border-radius: 0 0.5rem 0.5rem 0;
    transform: translateX(-50%);
}

/*** REGISTER ***/
.register-benefits{
    background-position: center top;
    background-size: cover;
    box-sizing: border-box;
    border-radius: 0.5rem;
    display: flex;
    margin-top: -2.5rem;
    padding: 1rem;
    padding-bottom: 0;
}

.register-benefits img{
	width: 100%;
    border-radius: 0.5rem;
}

/*** LOGIN ***/
.greeting-banner{
    background-position: center top;
    background-size: cover;
    box-sizing: border-box;
    border-radius: 0.5rem;
    display: flex;
    margin-top: -2.5rem;
    padding: 1rem;
    padding-bottom: 0;
}

.greeting-banner img{
	width: 100%;
    border-radius: 0.5rem;
}


.game-list{
	display:flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0 1rem;
	box-sizing: border-box;
}

.game-list .btn-game{
	padding: 0 0.5rem 1rem;
	flex: 0 0 calc(33.33% - 1rem);
}

.game-list .btn-game img{
	width: 100%;
}
.game-header{
	margin-top:-2.5rem;
	box-sizing: border-box;
	margin-bottom: 1.5rem;
}

.game-header img{
	width: 100%;
}

#popup-gameaccount .wrapper {
	/*
	background-image: url(../img/background-without-pattern.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	*/
	border-radius: 0.5rem;
	width: 100%;
	padding:  1.5rem;
	text-align: center;
	box-sizing: border-box;
}

#popup-gameaccount img {
	width: 60%;
	margin: 1.5rem 0;
}

/*
#popup-gameaccount .account-info > div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 1rem;
	background: rgba(35,35,35,0.5);
	margin-bottom: 1rem;
	border-radius: 0.5rem;
}
*/

#popup-gameaccount .account-info{
	
	background: rgba(255,255,255,0.1);
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	padding: 0.5rem 0;
}

#popup-gameaccount .account-info > div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

#popup-gameaccount .account-info > div:last-of-type{
	border-bottom: none;
}

#popup-gameaccount .download-wrapper{
  display: flex;
  padding: 1rem 0;
  justify-content: space-between;
  align-items: center;
}

#popup-gameaccount .download-wrapper .col-1{
    font-size: 1.2rem;
    text-align: left;
}

#popup-gameaccount #btn-download{
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
    font-weight: var(--fw-medium);
    background: var(--gradient-blue);
}

#popup-gameaccount{
    background: var(--gradient-dark-blue);
    border-radius: 0.5rem;
}

#popup-gameaccount .info{
	display: flex;
	gap:1rem;
	padding: 1rem 0;
	align-items: center;	
}

@media only screen and (max-width:350px){
    #popup-gameaccount .info{
        display: flex;
        gap:0.5rem;
        padding: 1rem 0;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }    
}

#popup-gameaccount label{
	font-size:1.2rem;
}

#popup-gameaccount .btn-copy{
	height: 100%;
	padding: 1rem;
	background: transparent;
	border: none;
	border-radius: 0 0.5rem 0.5rem 0;
	font-size:1.4rem;
	font-weight: var(--fw-semibold);
}

#popup-gameaccount .value{
	font-weight: var(--fw-medium);
}

#popup-gameaccount .bottom{
	display: flex;
	flex-direction: row;
	gap:1rem;
}

#popup-gameaccount .bottom button{
	font-size: 1.4rem;
	padding: 1.5rem;
	margin: 1rem 0 1.5rem 0;
}

@keyframes text-flicker {
    0% {
        opacity:0.1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    2% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    8% {
        opacity:0.1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    9% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    12% {
        opacity:0.1;
        text-shadow: 0px 0px rgba(242, 22, 22, 1);
    }
    20% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
    }
    25% {
        opacity:0.3;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
    }
    30% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
    }
    70% {
        opacity:0.7;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
    }
    72% {
        opacity:0.2;
        text-shadow:0px 0px 29px rgba(242, 22, 22, 1)
    }
    77% {
        opacity:.9;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
    }
    100% {
        opacity:.9;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
    }
}

@keyframes border-flicker {
    0% {
        opacity:1;
        -webkit-box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
        -moz-box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
        box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
    }
    50% {
        opacity:0.7;
        -webkit-box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
        -moz-box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
        box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
    }
    100% {
        opacity:1;
        -webkit-box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
        -moz-box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
        box-shadow: 0px 0px 25px 4px rgba(16,134,232,0.73);
    }
}

@keyframes letter-flicker {
    0% {
        opacity:0.1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    2% {
        opacity:0.1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    4% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    19% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    21% {
        opacity:0.1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    23% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    80% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    83% {
        opacity:0.4;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
    87% {
        opacity:1;
        text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
    }
}

@keyframes lightning {
    0% {
        -webkit-box-shadow: 0 0 0 3px rgba(173,0,167,1), 0 0 15px 10px rgba(173,0,167,0.5);
        -moz-box-shadow: 0 0 0 3px rgba(173,0,167,1), 0 0 15px 10px rgba(173,0,167,0.5);
        box-shadow: 0 0 0 3px rgba(173,0,167,1), 0 0 15px 10px rgba(173,0,167,0.5);
    }
    50% {
        -webkit-box-shadow: 0 0 0 3px rgba(173,0,167,0.6), 0 15px 0 10px rgba(173,0,167,0);
        -moz-box-shadow: 0 0 0 3px rgba(173,0,167,0.6), 0 0 15px 10px rgba(173,0,167,0);
        box-shadow: 0 0 0 3px rgba(173,0,167,0.6), 0 0 15px 10px rgba(173,0,167,0);
    }
    100%{
        -webkit-box-shadow: 0 0 0 3px rgba(173,0,167,1), 0 0 15px 10px rgba(173,0,167,0.5);
        -moz-box-shadow: 0 0 0 3pxrgba(173,0,167,1), 0 0 15px 10px rgba(173,0,167,0.5);
        box-shadow: 0 0 0 3px rgba(173,0,167,1), 0 0 15px 10px rgba(173,0,167,0.5);
    }
}

@keyframes soft-light-cyan {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 254, 252, 1))
    }

    50% {
        filter: drop-shadow(0 0 5px rgba(0, 254, 252, 0))
    }

    100%{
        filter: drop-shadow(0 0px 5px rgba(0, 254, 252, 1))
    }
}

@keyframes soft-light-purple {
    0% {
        filter: drop-shadow(0 0 5px rgba(239, 0, 255, 1))
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(239, 0, 255, 0))
    }
    100%{
        filter: drop-shadow(0 0px 5px rgba(239, 0, 255, 1))
    }
}

#transfer-wrapper{
	background: var(--clr-bg-cus);
	padding: 1.5rem 0;
	border-radius: 0.5rem;
}

#transfer-wrapper .top{
	display: flex;
	align-items:center;
	justify-content: space-between;
	margin: 0 1.5rem 1.5rem;
	box-sizing: border-box;
	position: relative;
}

#transfer-wrapper .top .option{
	flex: 0 0 50%;
	padding: 1rem;
	box-sizing: border-box;
	text-align: center;
	z-index: 3;
	background: rgba(0,0,0,0.1);
	font-weight: var(--fw-regular);
	color: var(--clr-toggle-text);
}

#transfer-wrapper .top .selected{
	color: white;
}

#transfer-wrapper .top .active{
	border-bottom: 2.5px solid	var(--clr-obj-purple);
	background: rgba(0,0,0,0.3);
	height: 100%;
	width: 50%;
	position: absolute;
	z-index: 1;
	transition: width 3s;
}

#transfer-wrapper .top .transfer{
	left:0;
	transition: width 3s;
}

#transfer-wrapper .top .receive{
	left: 50%;
	transition: width 3s;
}

#transfer-wrapper .content{
	padding: 1.5rem;
}

#receive .username{
	text-align: center;
	font-weight: var(--fw-semibold);
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
}

#receive .qr-wrapper{
	background: white;
	width: 22rem;
	height: 22rem;
	padding: 0.5rem 0.25rem;
	box-sizing: border-box;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
}

#receive .qr-wrapper img{
	width: 90%;
}

#receive .note{
	font-size:1.2rem;
	text-align: center;
}

/* /1/2/3/ */

/*
.form-section label{
    font-weight: bold;
}
*/

.form-section input:required ~ label::after{
    display: inline-block;
    background-image: url("../img/red_skull.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    content: " ";
    height: 10px;
    width: 10px;
    margin-left: 1rem;
    background-position: center;
    vertical-align: middle;
}

.mandatory-text {
    font-size: x-small;
}

.mandatory-text::before {
    display: inline-block;
    background-image: url("../img/red_skull.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    content: " ";
    height: 10px;
    width: 10px;
    margin-left: 1rem;
    background-position: center;
    vertical-align: middle;
}



.input-field {
    background:var(--gradient-input-black-shadow);
}


/* .input-field.focus label {
    color: rgb(252, 213, 130);
} */

.input-field.focus {
    background: var(--gradient-black-focus);
}

.form-section {
    /* opt1
    background: var(--gradient-blue); */
    background: var(--clr-bg-1);
}

.input-field.focus{
    /* opt1
    border-bottom: 1px solid rgb(0, 60, 255); */
    border-bottom: 1px solid rgb(0, 195, 255);
}

.form-bg {
    display: flex;
    width: 100vw;
    max-width: 550px;
    height: calc(100vh - 65px);
    background-color: var(--clr-bg-1);
    background-size: cover;
    margin-top: -2.5rem;
    background-repeat: no-repeat;
    background-position: center;
}

.form-bg.login-form {
    /* background-image: url(../img/login-form-bg.jpeg); */
    background: var(--gradient-dark-blue);
}

.form-bg.login-form::after{
    content: ""; /* Required for pseudo-elements */
    background-image: url("../img/crew.png"); /* Replace with the path to your background image */
    background-size: cover; /* Ensure the background image covers the pseudo-element */
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20rem;
    width:100%;
    opacity: 0.5; /* Adjust the opacity as needed */
    z-index: 0; /* Place the pseudo-element behind the content */
}

.form-bg.register-form {
    /* background-image: url(../img/login-form-bg.jpeg); */
    background: var(--gradient-dark-blue);
}

.form-section {
    margin: auto;
    /*width: 75%;*/
    width:90%;
    max-width:390px;
    /*min-width: 300px;*/
    padding: 3rem 2rem;
    background: transparent;
    backdrop-filter: blur(5px) brightness(0.9);
    /* border: 1px white solid; */
    border-radius: 1rem;
    box-sizing: border-box;
}

.input-field.focus label {
    color: var(--clr-cyan);
}

.form-title {
    font-size: x-large;
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border-bottom: 1px white solid;
}

.input-field:not(.default) {
    position: relative;
}

.input-field:not(.default) label {
    position: absolute;
    pointer-events: none;
    top: 11px;
    left: 5px;
    transition: top 0.35s ease;
}

.input-field:not(.default) input:not(:placeholder-shown)~label,
.input-field:not(.default).focus label {
    top: -11px;
    font-weight: var(--fw-semibold);
    opacity: 1;
    left: 0;
}

.form-section .text-with-link a {
    text-decoration: none;
    border-bottom: 1px var(--clr-cyan) solid;
}

.input-toggle-btn {
    position: absolute;
    right: 0;
    top: 5px;
    background: var(--gradient-blue);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

svg > * {
    color : var(--clr-cyan);
}