html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Reset end here */
html, body{
    height: 100%;
    width: 100%;
    background-color: #1c1c1c;
    font-family: 'Poppins', sans-serif;
}
.w-full{
    width: 100%;
}
.h-full{
    height: 100%;
}
.w-50{
    width: 50%;
}
.h-48px{
    height: 48px;
}
.h-72px{
    height: 72px;
}
.flex{
    display: flex;
}
.flex-row{
    flex-direction: row;
}
.flex-column{
    flex-direction: column;
}
.justify-start{justify-content: flex-start;}
.justify-end{justify-content: flex-end;}
.justify-center{justify-content: center;}
.justify-between{justify-content: space-between;}
.justify-around{justify-content: space-around;}
.justify-evenly{justify-content: space-evenly;}
.items-start{align-items: flex-start;}
.items-end{align-items: flex-end;}
.items-center{align-items: center;}
.items-baseline{align-items: baseline;}
.items-stretch{align-items: stretch;}
.static{position: static;}
.fixed{position: fixed;}
.absolute{position: absolute;}
.relative{position: relative;}
.sticky{position: sticky;}
.inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
.inset-x-0{
    left: 0px;
    right: 0px;
}
.inset-y-0{
    top: 0px;
    bottom: 0px;
}
.top-0{top: 0px;}
.right-0{right: 0px;}
.bottom-0{bottom: 0px;}
.p-4{
    padding: 1rem;
}
.p-6{
    padding: 1.5rem;
}
.mt-2{
    margin-top: 0.5rem;
}
.mt-8{
    margin-top: 2rem;
}
.text-white{
    color: #fff;
}
.text-gray-primary{
    color: #757575;
}
.cursor-pointer{cursor: pointer;}
/* logo */
.logo{
    height: 160px;
}
.logo img{
    height: 100%;
    width: auto;    
}
.logo-dot{width: 38px; height: 38px; border-radius: 100%; display: inline-block; position: absolute; top: 0; right: 0;}
.key{
    width: 64px;
    height: 36px;
    padding: 0 10px;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #1c1c1c;
    color: #00c664;
    transition: all 0.6s ease-in-out;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    z-index: -1;
}
.key.active{opacity: 1; z-index: 1;}
.key svg{transform: scale(0); transition: all 0.3s ease-in;}
.key.active svg{transform: scale(1);}
.j9{
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}
.bl-circle{
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border: 2px solid;
    border-radius: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.bl-circle:first-child{margin-left: 0;}
.bl-circle:before{
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    /* opacity: .5; */
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
}
.bl-circle svg{
    width: 18px;
    position: relative;
    z-index: 1;
}
.bl-circle.red svg{
    width:22px;
}
.bl-circle.blue{
    border-color: #2ea1ff;
    color: #2ea1ff;
    box-shadow: 0 0 0 0 rgb(46 161 255 / 0);
    transition: all 0.6s ease-in-out;
}
.bl-circle.blue:hover{
    box-shadow: 0 0 14px 3px rgb(46 161 255 / 50%);
}
.bl-circle.blue:before{
    background-color: #005277;
}
.bl-circle.yellow{
    border-color: #e9d900;
    color: #e9d900;
    box-shadow: 0 0 0 0 rgb(233 217 0 / 0);
    transition: all 0.6s ease-in-out;
}
.bl-circle.yellow:hover{
    box-shadow: 0 0 14px 3px rgb(233 217 0 / 50%);
}
.bl-circle.yellow:before{
    background-color: #837b00;
}
.bl-circle.green{
    border-color: #00dc00;
    color: #00dc00;
    box-shadow: 0 0 0 0 rgb(0 220 0 / 0);
    transition: all 0.6s ease-in-out;
}
.bl-circle.green:hover{
    box-shadow: 0 0 14px 3px rgb(0 220 0 / 50%);
}
.bl-circle.green:before{
    background-color: #006100;
}
.bl-circle.red{
    border-color: #ff0100;
    color: #ff0100;
    box-shadow: 0 0 0 0 rgb(255 0 0 / 0);
    transition: all 0.6s ease-in-out;
}
.bl-circle.red:hover{
    box-shadow: 0 0 14px 6px rgb(255 1 0 / 50%);
}
.bl-circle.red:before{
    background-color: #b30a00;
}

.bl-circle.teal{
    border-color: #0d9488;
    color: #0d9488;
    box-shadow: 0 0 0 0 rgb(255 0 0 / 0);
    transition: all 0.6s ease-in-out;
}
.bl-circle.teal:hover{
    box-shadow: 0 0 14px 6px rgb(13 148 136 / 50%);
}
.bl-circle.teal:before{
    background-color: #02554e;
}

[v-cloak] { display: none; }
.popover{position: absolute; bottom: 70px; left: 0; width: auto; background-color: #fff; border-radius: 10px; padding: 10px;}
.popover input{border-radius: 6px; border:1px solid #ccc; height: 30px; border: 2px solid #e7e4e4; padding: 2px 0 0 10px;}
.popover a{padding: 4px 6px; display: inline-block; background-color: #31a1ff; border-radius: 6px; color: #fff; font-size: 14px; text-decoration: none; margin-left: 10px;}
.enter-code-s1{color: #757575; font-size: 17px; font-weight: 200; text-decoration: none; margin-top: 12px;} /*line-height: 47px;*/
/* .enter-code{margin-top: 18px;} */
.enter-code input{padding: 0; font-family: 'Poppins', sans-serif; font-weight: 200; font-size: 34px; text-align: center; width: 150px; height: 30px; border: 0; outline: none; background: transparent; color: #fff;}

.enter-code input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-size: 17px;
  }
  
  .enter-code input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 17px;
  }
  
  .enter-code input::-ms-input-placeholder { /* Microsoft Edge */
    font-size: 17px;
  }

.enter-code a.go{display: inline-block; width: 50px; overflow: hidden;}
.enter-code a.go svg{width: 100%; position: relative; right: -8px;}
.enter-code a.close{display: inline-block; width: 24px; margin-top: 3px;}
.enter-code a.close svg{width: 100%;}

@media screen and (min-width: 768px) {
    .logo{
        height: 260px;
    }
    .bl-circle{
        width: 48px;
        height: 48px;
        margin-left: 16px;
    }
    .bl-circle svg{
        width:24px;
    }
    .bl-circle.red svg{
        width:28px;
    }
    .j9{
        font-size: 20px;
    }
    .key{
        width: 84px;
        height: 56px;
        top: -13px;
    }
}