
/* TABLE OF CONTENTS */



/* 



1.0 MAIN SETTINGS - CSS DEFAULTS 
2.0 PROJECT GLOBALS 
3.0 HEADER & HAMBURGER MENU
4.0 EARN PAGE
    4.1 GAME SCREEN
    4.2 AWARD INFO
5.0. FOOTER
6.0 TWITCH AUTHENTICATION POPUP
7.0 ETHERIUM POPUP
8.0 PICK GAME


*/



/* [ ============= 1.0 MAIN SETTINGS - CSS DEFAULTS  ================== ] */
/* [ ============= 1.0 MAIN SETTINGS - CSS DEFAULTS  ================== ] */
/* [ ============= 1.0 MAIN SETTINGS - CSS DEFAULTS  ================== ] */



:root 
{
    --dark1: #222333;
    --pink: #E03A56;
    --purple: #7537E9;
    --yellow: #EFC24B;

}




body, html 
{
	font-family: 'Roboto ', sans-serif;
	background: #222333;
	line-height: 1.4!important;
	margin:0;
    color: white;
    font-weight: 400;

}


* {box-sizing: border-box;}


p, ul, li, a, h1, h2, h3, h4, h5, h6 {margin:0; padding:0;}

li {list-style: none}

.big-container {
	max-width: 1880px;
	padding:0 40px;
	width: 100%;
	margin: 0 auto;
}

.container {
    max-width: 1240px;
    padding:0 20px;
    width: 100%;
    margin: 0 auto;
}



a, button, input, textarea, select {font-family: 'Roboto', sans-serif; text-decoration: none; outline: none!important; }
a {color: white; text-decoration: underline;}
.header-flex .logo a {text-decoration: none; color: white;}
button {cursor: pointer;}


img {
	max-width: 100%;
	display: block;
}


img[data-lazy] {opacity:0; transition:0.8s; }
img[data-lazy].fade {opacity:1; }




/* GLOBAL */

/* text elipsis */

.limitRows1, .limitRows2, .limitRows3, .limitRows4, .limitRows5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.limitRows1 { -webkit-line-clamp: 1; }
.limitRows2 { -webkit-line-clamp: 2; }
.limitRows3 { -webkit-line-clamp: 3; }
.limitRows4 { -webkit-line-clamp: 4; }
.limitRows5 { -webkit-line-clamp: 5; }


/* [ ============= 2.0 PROJECT GLOBALS  ================== ] */
/* [ ============= 2.0 PROJECT GLOBALS  ================== ] */
/* [ ============= 2.0 PROJECT GLOBALS  ================== ] */




.resolution169 {
    position: relative;
    padding-bottom: 56.25%;
}

.resolution169 video, .resolution169 iframe, .resolution169 img, .resolution169 > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* background image */

.bg-decoration-1 {
    background-image: url('../images/bg1.jpg') ;
    background-size: cover;
    background-attachment: fixed;
    background-position: top left;
    min-height: 100vh;
    background-repeat: no-repeat;

}




/* buttons */


.default-button {
    font-size: 14px;
    font-weight: 500;
    color: white;
    padding: 16px 37px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    transition: 0.25s;
    text-transform: uppercase;
    border:none;
}

/* gradient settings*/


.default-button span {position: relative; z-index: 10}

.default-button.gradientBG::after {
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    border-radius: 5px;
}

.default-button.gradientBG::before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: -3px;
    left: 0;
    position: absolute;
    z-index: 1;
    border-radius: 5px;
}


/* blue gradient */

.default-button.blue-gradient::after {
    background: transparent linear-gradient(107deg, #2B8F7C 0%, #164C73 100%) 0% 0% no-repeat padding-box;
}
.default-button.blue-gradient::before {
    background: transparent linear-gradient(107deg, #123B33 0%, #0A2336 100%) 0% 0% no-repeat padding-box;
}
.default-button.blue-gradient:hover {
    box-shadow: 0px 0px 12px 0px rgba(43,143,124,0.3);
}

/* pink gradient */

.default-button.pink-gradient::after {
    background: transparent linear-gradient(107deg, #E03A56 0%, #7537E9 100%) 0% 0% no-repeat padding-box;
}
.default-button.pink-gradient::before {
    background: transparent linear-gradient(107deg, #751F2D 0%, #371A6E 100%) 0% 0% no-repeat padding-box;
}
.default-button.pink-gradient:hover {
    box-shadow: 0px 0px 12px 0px rgba(224,58,86,0.3);
}

.default-button.pink-gradient:disabled {
    opacity: 0.25;
}


/* TOOLTIP */


.referum-tooltip {
    position: relative;
}



.referum-tooltip-popup {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 170px;
    font-size: 12px;
    text-transform: none;
    background: #0E0F14;
    border: 1px solid #3B3B40;
    border-radius: 5px;
    padding: 7px;
    color: #DFDDEF;
    transform: translateX(-39%);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}


.referum-tooltip-popup::after{
    content: '';
    position: absolute;
    left: 42%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #0E0F14;
    clear: both;
}

.referum-tooltip:hover .referum-tooltip-popup {visibility: visible; opacity: 1;}

.referum-tooltip-popup a {color: #DFDDEF; text-decoration: underline;}






/* default popup settings */


.default-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgb(0,0,0,0.8);
    width: 100%;
    display: none;
    height: 100%;
}

.default-popup-box {
    background: #18181A;
    color: white;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin:0 auto;
    max-width: 420px;
}


.default-popup-box .close-modal {
    position: absolute;
    right: -23px;
    top: 3px;
    cursor: pointer;
    transition: 0.1s;
}

.default-popup-box .close-modal:hover {
    transform: scale(1.05);
}







/* [ ============= 3.0 HEADER & HAMBURGER MENU  ================== ] */
/* [ ============= 3.0 HEADER & HAMBURGER MENU  ================== ] */
/* [ ============= 3.0 HEADER & HAMBURGER MENU  ================== ] */


/* HAMBURGER */

.menu-wrapper {
    position: absolute;
    top: -10px;
    right: 20px;
    margin: auto;
    width: 20px;
    height: 100%;
    cursor: pointer;
    display: none;
    z-index: 10000;
}

.hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
    width: 20px;
    height: 2px;
}

.hamburger-menu {
    position: relative;
    transform: translateY(25px);
    background: #FFF;
    transition: all 0ms 300ms;
}

.hamburger-menu.animate {
    background: rgba(255, 255, 255, 0);
}

.hamburger-menu:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    background: #FFF;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu:after {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background: #FFF;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}







/* ============ HEADER ============ */


.header {
    padding: 21px 0;
    position: relative;
    z-index: 1000;
    background: var(--dark1); 
}


.header-logo.fixed{
    position: fixed;
    z-index: 321321;
}


.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-flex .logo a {
    display: flex;
    align-items: center;
    grid-gap: 6px;
}

.header-flex .logo a img {
    height: 40px;
}


.header-flex .logo a span {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.44px;
    color: white;

}

.header-menu ul {
    display: flex;
    align-items: center;
}

.header-menu ul li {
    margin-left: 34px;
}

.header-menu ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    transition: 0.3s;
    border-radius: 7px;
    position: relative;
    text-transform: uppercase;
}



.header-menu ul li:not(.special) a::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 0;
    height: 3px;
    transition: 0.25s;
    background: linear-gradient(to right, var(--pink), var(--purple) );
}


.header-menu ul li:not(.special) a:hover::after, .header-menu ul li:not(.special) a.active::after {
    width: 100%;
}



.header-menu ul li.special a  {
    color: white;
    background: transparent;
    border-radius: 5px;
    padding:11px 40px;
    transition: 0.3s;
    border:1px solid var(--pink);
    font-size: 13px;
    color: var(--pink);

}



.header-menu ul li.special a:hover {
    background: var(--pink);
    color: white;
}



.header-white .header-menu ul li a {

    color: #696871;
    
}

.header-white .header-menu ul li.special a {
    background: #4E7EFF;
    color: white;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
}


.header-white .header-menu ul li a:hover {
    background: rgba(78, 126, 255, 0.1);
    color: #4E7EFF;
}

.header-white .header-menu ul li.special a:hover {
    background: white;
    color: #4E7EFF;
}



.header.sticky {
    position: sticky;
    top: 0;
    background: white;
    z-index: 999999999;
}









/* [ ============= 4.0 EARN PAGE  ================== ] */
/* [ ============= 4.0 EARN PAGE  ================== ] */
/* [ ============= 4.0 EARN PAGE  ================== ] */


.earn-wrapper {
    padding-top: 20px;
}

/* 4.1 GAME SCREEN */

.earn-wrapper .container {
    max-width: 100vh;
}

.game-screen .video {
    border-top: 5px solid #222333 ;
    background: var(--dark1);
    
}


.game-screen .video::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 6px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);   
}





.game-screen .top {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 1px;
}

.game-screen .top span {
    background: var(--dark1);
    padding: 12px 66px;
    clip-path: polygon(20% 0%, 80% 0, 100% 100%, 0% 100%);
    text-shadow: 0px 2px 5px #7537E999;
}





/* 4.2 AWARD INFO  */


.award-info {
    margin-top: 20px;
}


.award-loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}


#award-loader {
    background: #0E0F14;
    border:1px solid #3B3B40;
    border-radius: 5px;
    position: relative;
    height: 30px;
    flex:1;
}

#award-done {
    background: linear-gradient(to right, var(--pink), var(--purple) );
    width: 0;
    border-radius: 5px;
    box-shadow: 0px 0px 20px #FF00EE4D;
    position: absolute;
    top: -1px;
    left: -1px;
    height: 30px;
    border: none;
    -webkit-animation: fillAward 60s linear infinite;
    -webkit-animation-fill-mode: forwards;
        
    /*
    transition: 0.1s linear;
    */
}


 
@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(46px);
    }
}

@keyframes MOVE-BG {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(46px);
    }
}

.stripes {
    height: auto;
    text-align: center;
    color: #4c3f2e;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-style: italic;
    height: 100%;
    z-index: 432432;
    opacity: 0.08
}

.stripes .bg {
    position: absolute;
    left: -46px;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: -webkit-repeating-linear-gradient( 145deg, #f8e9db 1px, #fff5ed 2px, #fff5ed 11px, #f8e9db 12px, #f8e9db 20px);
    background: repeating-linear-gradient( -55deg, #ffffff00 1px, #fff5ed00 2px, #fff5ed00 11px, #f8e9db 12px, #f8e9db 20px);
    -webkit-animation-name: MOVE-BG;
    -webkit-animation-duration: .6s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-name: MOVE-BG;
    animation-duration: .8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}



@-webkit-keyframes fillAward {
    0% {
        width: 0;
    }
    100% {
        width: calc(100% + 1px); 
        /*add 1 more pixel because of the border*/
    }
}

.ticket-amount {
    display: flex;
    align-items: center;
    color: var(--yellow);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
}


.ticket-amount span {
    display: flex;
    align-items: center;
}

.ticket-amount span .referum-tooltip {margin-left: 10px;}




.award-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}






.award-details {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-details p {
    display: inline;
    align-items: center;
    padding: 15px 63px;
    color: #DFDDEF;
    font-size: 13px;
    background: #20222E 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 10px #00000029;
    border-radius: 5px;
}

.award-details p a {
    text-decoration: underline;
    color: #DFDDEF;
    transition: 0.25s;
}

.award-details p a:hover {color: #fff}









/* [ ============= 5.0 FOOTER  ================== ] */
/* [ ============= 5.0 FOOTER  ================== ] */
/* [ ============= 5.0 FOOTER  ================== ] */

.privacy-footer {
    padding: 15px 0;
    margin-top: 55px;
}

.privacy-footer .legal-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 40px;
}


.privacy-footer .legal-links a {
    color: #DFDDEF;
    text-decoration: underline;
    font-size: 12px;
}







/* [ ============= 6.0 TWITCH AUTHENTICATION POPUP  ================== ] */
/* [ ============= 6.0 TWITCH AUTHENTICATION POPUP  ================== ] */
/* [ ============= 6.0 TWITCH AUTHENTICATION POPUP  ================== ] */


.twitch-auth-popup {
    padding: 20px;
}

.twitch-auth-popup h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.twitch-auth-popup h2 img {margin-right: 7px;}



.twitch-auth-tabs {
    margin-top: 24px;
}

.twitch-auth-tabs .tabs-switch {
    display: flex;
    grid-gap: 20px;
    border-bottom: 1px solid #363637;
    color: white;
    margin-bottom: 25px;
}


.twitch-tab {display: none}
.twitch-tab.active {display: block}

.tabs-switch li {
    padding: 5px 0;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
    top: 1px;
}

.tabs-switch li:hover {color: #9147FA}

.tabs-switch li.active {
    color: #9147FA;
    border-bottom: 2px solid #9147FA;

}



.twitch-input {
    margin-bottom: 23px;
}
.twitch-input:last-of-type {margin-bottom: 0;}

.twitch-input label {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

.twitch-input input {
    background: #4F4F51 0% 0% no-repeat padding-box;
    border-radius: 4px;
    font-size: 14px;
    color: white;
    display: block;
    width: 100%;
    padding: 7px 15px;
    border:none;
}


.forgotPassword-link {
    font-size: 12px;
    color: #9147FA;
    background: transparent;
    display: inline-block;
    border:none;
    margin-top: 10px;
}



.twitch-button {
    display: block;
    background: #9147FA;
    border:none;
    padding: 8px;
    width: 100%;
    margin-top: 20px;
    color: white;
    font-weight: bold;
    font-size: 13px;
    border-radius: 4px;
    transition: 0.25s;
}

.twitch-button:hover {
    background: white;
    color: #9147FA;
}





/* [ ============= 7.0 ETHERIUM POPUP  ================== ] */
/* [ ============= 7.0 ETHERIUM POPUP  ================== ] */
/* [ ============= 7.0 ETHERIUM POPUP  ================== ] */



#ethereum-code .default-popup-box {max-width: 480px;}



.etherum-popup {
    padding: 30px 20px 20px 20px; 
}

.etherum-popup h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}



.referum-input  {position: relative;}

.referum-input label {
    display: block;
    margin-bottom: 5px;
    color: #DFDDEF;
    text-transform: uppercase;
    font-size: 12px;
}


.referum-input input {
    background: #0E0F14 0% 0% no-repeat padding-box;
    border: 1px solid #3B3B40;
    border-radius: 5px;
    display: block;
    width: 100%;
    color: white;
    padding: 10px 15px;
}


.referum-input .referum-tooltip {
    position: absolute;
    bottom: 9px;
    right: 9px;
}


.g-recaptcha {margin-top: 20px; }



.save-code {
    display: block;
    margin-top: 20px;
    width: 100%;
}









/* [ ============= 8.0 PICK GAME  ================== ] */
/* [ ============= 8.0 PICK GAME  ================== ] */
/* [ ============= 8.0 PICK GAME  ================== ] */

.pick-game-wrapper {
    padding: 25px 0;
}

.pick-game-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.pick-game-filters h2 {
    font-weight: bold;
    font-size: 28px;
}


.select-with-label {
    display: flex;
    align-items: center;
}

.select-with-label label {
    color: #DFDDEF;
    font-size: 13px;
    margin-right: 7px;
}

.select-with-label select {
    background: #0E0F14 0% 0% no-repeat padding-box;
    border: 1px solid #3B3B40;
    border-radius: 5px;
    padding: 9px 12px;
    color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='22' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
    padding-right: 40px;
}

.select-with-label select option {
    background: var(--dark1);
    color: white;
}



/* GAMES GRID */


views {
    display: flex;
    align-items: center;
    font-size: 14px;
}

views::before {
    content: '';
    background-image: url('../images/views.png');
    margin-right: 10px;
    width: 18px;
    height: 11px;
}


.referum-games-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(6,1fr);
    margin-top: 25px;
}


.referum-game .thumbnail {
    position: relative;
    padding-bottom: 133%;
}




.referum-game .thumbnail::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 6px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);   

}




.referum-game .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.referum-game {
    background: #222333;
    box-shadow: 0px 0px 20px #00000033;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
    top: 0;
    transition: 0.1s;
}



.referum-game:hover {
    top: -5px;
    transform: scale(1.03);
    transition: 0.2s;
}


.referum-game .game-info {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.referum-game .game-info p {
    font-size: 14px;
    margin-bottom: 5px;
}








/* LOADIER*/


@-webkit-keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}







.dont-share-banner {
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
    background: #191923;
    color: #DFDDEF;
}









/* ADDITIONAL , SUCCESS STATE , ERROR STATE , 404 PAGE */


.referum-input .success-icon {
    position: absolute;
    bottom: 9px;
    right: 40px;
    display: none;
}

.referum-input .success-icon img {
    height: 20px;
}


.input-successfull.referum-input .success-icon {
    display: block;
}

.referum-input .error-state {
    position: absolute;
    text-align: 9px;
    left: 0;
    transform: translateX(-110%);
    background: #C21D22;
    padding: 11px;
    border-radius: 5px;
    bottom: 0;
    display: none;
    font-size: 12px;
}

.referum-input .error-state:after {
    content: '';
    position: absolute;
    right: -11px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #c21d22;
    clear: both;
    transform: translateY(-50%) rotate(270deg);
}

.referum-input.input-error .error-state {
    display: block;
}

.referum-input.input-error input {
    border:1px solid #c21d22;
}


/* congrats popup */


.congrats-tokens-pop {
    padding: 20px;
    text-align: center;
}

.congrats-tokens-pop .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 6px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 30px;
}

.logo span {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.44px;
    color: white;
}

.congrats-tokens-pop h2 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.congrats-tokens-pop p {
    color: #DFDDEF;
    margin-bottom: 20px;
}

.congrats-tokens-pop button {
    display: block;
    width: 100%;
    border:none;
    padding: 12px;
}


/* page 404 */


.page404 {
    min-height: calc(100vh - 108px);
    background: #181923;
    text-align: center;
    padding-top: 15vh;
}


.page404 img {
    margin:0 auto;
    margin-bottom: 40px;
    max-width: 210px;
}

.page404 h2 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.page404 p {
    color: #DFDDEF;
    max-width: 260px;
    margin:0 auto;
    margin-bottom: 60px;
    font-family: 'Roboto ', sans-serif;
    font-size: 16px;
}


/*  red outlined button */


.outline-button.red  {
    color: white;
    background: transparent;
    border-radius: 5px;
    padding:11px 40px;
    transition: 0.3s;
    border:1px solid var(--pink);
    font-size: 13px;
    display: inline-block;
    color: var(--pink);

}



.outline-button.red:hover {
    background: var(--pink);
    color: white;
}


/* pulse button */

.pulsing {
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
   background: linear-gradient(90deg,
    /* Base gradient stops */
    #E03A56 , #E03A56, #E03A56 , #7537E9, #7537E9 , #7537E9,
    /* Repeat your base gradient stops */
    #E03A56 , #E03A56, #E03A56 , #7537E9, #7537E9 , #7537E9,
    /* Repeat your first gradient stop */
    #E03A56 );
  
  background-size: 1000% 1000%;
  animation: rainbow 3s linear infinite;
}


.pulsing::after {display: none}
.pulsing::before {display: none}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 1px rgba(172 , 57, 158, 0);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(172 , 57, 158, 0.1);
  }

  100% {
    box-shadow: 0 0 0 1px rgba(172 , 57, 158, 0);
  }
}



.pulsing {
    background: var(--purple);
    background: -webkit-linear-gradient(45deg, var(--purple) 0%, var(--pink) 33%, var(--purple) 66%, var(--pink) 100%);
    background: -moz-linear-gradient(45deg, var(--purple) 0%, var(--pink) 33%, var(--purple) 66%, var(--pink) 100%);
    background: -ms-linear-gradient(45deg, var(--purple) 0%, var(--pink) 33%, var(--purple) 66%, var(--pink) 100%);
    background: -o-linear-gradient(45deg, var(--purple) 0%, var(--pink) 33%, var(--purple) 66%, var(--pink) 100%);
    background: linear-gradient(45deg, var(--purple) 0%, var(--pink) 33%, var(--purple) 66%, var(--pink) 100%);
    background-size: 400% 400%;
    animation: pulsing 2s linear infinite;
}


@keyframes pulsing {
    0% {
        box-shadow: 0 0 19px -5px rgba(153,96,183,0.3);
        background-position: 100% 0%;
        transform:scale(1);
    }
    50% {
        box-shadow: 0 0 19px -2px rgba(153,96,183,0.7);
        transform:scale(1.015);
    }
    100% {
        box-shadow: 0 0 19px -5px rgba(153,96,183,0.3);
        background-position: 15% 100%;
        transform:scale(1);
    }
}

.successMessage, .errorMessage {
    position: absolute;
    z-index: 9999999999;
    max-width: 400px;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 50%;
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
    color: #DFDDEF;
    border-radius: 5px;
}

.successMessage {
    background: #4CAF50;
}

.errorMessage {
    background: #C21D22;
}