:root {
    /* Color Settings */
    --pclr: #5D0992; /* primary color */
    --dpclr: #ff3539; /* dark primary color */
    --fcsdPClr: #ed424629; /* dark primary color */
    --dShdwPclr: #b30303; /* dark primary color */
    --sclr: #77CFCA; /* secondary color */
    --cardBg: #ffffffb5; /* card bg color; alternatives #fffed */
    --cardShdw: #91b8fb; /* card shadow color */
    --blackClr: #3a3a3a; /* black color */
    --green: #53ac21; /* green color */
    --red: #da3c1e; /* red color */

    /* Font Settings */
    --hsz: 30px; /* heading size */
    --ssz: 26px; /* sub-heading size */
    --fsz: 16px; /* font size */

    /* Components Settings */
    --starClr: #fff;
    --squareClr: #7a097a;
    --diceSize: 35px;
    --ndiceSize: -35px;
    --dotSize: 4px;
    --trDice: calc(var(--diceSize) / 2);
    --ntrDice: calc(var(--ndiceSize) / 2);
    --diceClr: #ecebeb;
}

.no-bs {
    box-shadow: none !important;
}

/* Overrides */
*:focus {
    outline: none !important;
}

h1 {
    font-weight: 900;
}
h2 {
    font-weight: 700;
}

.opacity-0 { opacity: 0; width: 0; height: 0; }
.opacity-5 { opacity: 0.5; }
.opacity-6 { opacity: 0.6; }
.opacity-7 { opacity: 0.7; }
.opacity-8 { opacity: 0.8; }

.vr-centered {
    position: fixed;
    height: 100%;
    width: 5px;
    background: #000000;
    margin: auto;
}
.fs-30 {
    font-size: 30px !important;
}
.fs-20 {
    font-size: 20px !important;
}
.w-100 { width: 100% !important; }
.w-90 { width: 90% !important; }
.w-90 { width: 80% !important; }
.brk-wrd {
    word-wrap: break-word;
}
[v-cloak] {
    display: none;
}
/*** End Overrides ***/

body {
    /* font-family: "Rubik", sans-serif !important; */
    font-family: 'Poppins', sans-serif;
    color: var(--blackClr);
    /* min-height: 100vh; */
}

h1, h2, h3 {
    font-family: 'Sen', sans-serif;
}

.border-grd {
    border: solid 3px transparent;
    background-image: linear-gradient(var(--pclr), var(--sclr)), linear-gradient(101deg, #1395bd, #fff);
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-size: 250%;
    box-shadow: 2px 1000px 1px #fff inset;
    animation: borderGrdAnim 4s ease infinite;
  }
  
@keyframes borderGrdAnim {
    0%
    {
        background-position :   0% 59%;
    }
    50%
    {
        background-position :   100% 42%;
    }
    100%
    {
        background-position :   0% 59%
    }
}

#sc {
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    opacity: 0;
    position: fixed;
    width: 350px;
    height: 400px;
}

.accept .rank-cols .view-ans {
    display: none;
}

/* Ad Code */
 .ads {
    margin: 15px auto;
    max-width: 380px;
    /* max-height: 380px; */
    display: flex;
    justify-content: center;
}

/* Stickey Ad Code */
.sticky-ad {
    /* max-width: 320px; */
    max-height: 50px;
    /* overflow: hidden; */
    /* background: #fff; */
    position: fixed;
    bottom: 0;
    width: 320px;
    height: 50px;
    z-index: 999;
    left: calc(50% - 160px);
}

.custom-ad {
    max-width: 300px !important;
    max-height: 250px !important;
    margin: auto;
    overflow: hidden;
    background: #fff;
}
.custom-ad a {
    width: 100% !important;
    margin: unset;
}
.custom-ad img {
    width: 100% !important;
    height: auto;
    margin: unset !important;
}
.scale {
    animation: scale 1.5s alternate infinite ease-in;
}

.nudge {
    animation: nudge 0.8s infinite ease-in;
    animation-duration: 5s;
}
.question .ads, .answer .ads {
    margin-top: 55px;
}
.share div.ads:nth-child(4) {
    margin-top: 55px;
}
.share div.ads:nth-child(6) {
    margin-bottom: 35px;
}
/*** End Ad Code ***/

.answer .flipCard .lzcard-white { margin-top: 0px; }
.share-bg {
    width: 120%;
    height: 100%;
    position: absolute;
    background: url('../images/ribbon-bg.png');
    background-size: cover;
    margin: 0 -40px;
}
.bg-lzprimary {
    color: #fff;
    background-color: var(--pclr);
}
.bg-lzsecondary {
    color: #fff;
    background-color: var(--sclr);
}

.completed .profiles {
    justify-content: space-between;
    padding: 0 40px 0 10px;
}

.completed .profiles img {
    width: 100px;
    display: block;
    position: relative;
}

.content {
    /* background: linear-gradient(180deg, var(--pclr), var(--sclr)); */
    /* background: url('../images/wall.png'); */
    background-size: cover;
    background-position: fixed;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    min-height: calc(100vh);
    position: relative;
    background: #fff;
}
@media (max-width: 768px) {
    /* For mobile phones: */
    body {
        /* background: var(--sclr); */
        padding: 0 !important;
    }
}

.copy-link .input {
    background-color: #fff;
    border: 1px solid var(--pclr);
    border-radius: 5px !important;
    box-shadow: none;
}
.input-group-append {
    width: 100%;
}

#confirm .modal-content {
    overflow: hidden;
    border-radius: 5px;
}
#confirm .modal-dialog {
    border-radius: 2px !important;
}
#confirm .modal-header {
    background: var(--pclr);
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}
#confirm .modal-body {
    font-size: 20px;
}
#confirm .modal-footer {
    border: none;
    padding: 0;
}
#confirm .close {
    color: #fff;
    font-size: 45px;
    font-weight: 100;
    opacity: 1;
}
#confirm .primary-btn {
    width: 33%;
}
.copy-link .input {
    display: block;
    background: #fff;
    padding: 5px;
    color: #777;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}
.copy-btn {
    background-color: var(--pclr);
    border-radius: 5px !important;
    margin-left: -37px;
}
.copy-btn:hover {
    background-color: var(--pclr);
    color: #fff !important;
}
.creator {
    font-size: 35px;
    display: inline-block;
    -webkit-text-stroke: 2px #fff;
    color: var(--pclr);
    font-stretch: expanded;
    padding-left: 10px;
    transform: scale(1.2, 1);
}
.dice-cont {
    position: absolute;
    bottom: calc(-5% - var(--trDice));
    background: #fff;
    left: calc(50% - 30px);
    width: calc(var(--diceSize) + 26px);
    height: calc(var(--diceSize) + 18px);
    padding: 5px;
    border-radius: 20px;
}
.emoji {
    width: 18px !important;
    margin: 0 5px;
    position: absolute;
    height: auto !important;
    left: -30px;
    top: 10px;
}



.footer{
    left: 0;
    bottom: 0;
    width: 100%;
    position: relative;
    background: var(--pclr);
    padding: 12px 20px;
    text-align: center;
    color: var(--pclr);
  }
  .footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer ul li{
    display: inline-block;
    margin-right: 5px;
  }
  .footer ul li a{
    color: #ffffff;
  }


.footer a.fb {
    color: #385898;
}

.footer a.twitter {
    color: rgb(29, 161, 242);
}

.footer a.insta {
    color: #f35356;
}
.footer .copyright {
    text-align: center;
    border-top: 1px solid #fff;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.88px;
    padding: 8px !important;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 10px;
}

.gradient-link, .nav-popup li:hover {
    background: var(--pclr) !important;
    /* background-image: linear-gradient(45deg, var(--pclr), var(--sclr)) !important; */
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.gradient-link a {
    color: #fff !important;
}
.nav-popup li a:hover, .nav-popup li:hover { 
    color: #fff !important;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
    z-index: 2;
    background: var(--pclr);
}
.header .white {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    background: #fff;
    padding: 10px 15px;
    align-items: center;
    border-radius: 5px;
}

.sidebar {
    width: 0;
    position: absolute;
    height: 100vh;
    background: #fff;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: width 0.5s ease;
    z-index: 3;
}
.sidebar.active {
    width: 80%;
}
.sidebar li a {
    color: #555555;
    display: block;
    width: 100%;
}
.sidebar li:nth-child(1) {
    border-top: none;
}
.sidebar li {
    padding: 0.5em;
    border-top: 1px solid #252525;
    color: #252525;
    list-style: none;
}
.sidebar li:hover {
    background: #97d7ef;
}
.content.blur {
    height: 100vh;
    overflow: hidden;
}
.content.blur div:not(.sidebar) {
    opacity: 0.7;
}
ul.main-nav {
    padding: 0em;
}
.sidebar ul.main-nav li {
    padding: 1em;
    padding-left: 2em;
}
.home-icon {
    width: 120px !important;
    position: relative;
    z-index: 5;
}
.home .profile {
    height: 140px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
}
.home.pg-cont {
    /* background: url('../images/shapes-bg.png'); */
    background-size: contain;
}
.home-icon {
    position: absolute;
    height: 0px !important;
    bottom: 0px;
    left: 20px;
    transition: height 0.5s;
}
.home .home-icon {
    left: unset;
}
.home-icon.active {height: 120px !important;}

.isDisabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.isDisabled > a {
    pointer-events: none;
    text-decoration: none;
    opacity: 0.7;
}

.input {
    border: 1px solid var(--pclr);
    border-radius: 5px;
    color: var(--blackClr);
    width: 80%;
    font-size: 16px;
    margin: auto;
    box-shadow: 0px 0px 10px 0px #75828d85;
}
button.input {
    text-decoration: none;
    color: var(--blackClr);
    text-align: left;
}

.input:focus {
    border-color: var(--pclr);
    /* box-shadow: 0 0 0 0.2rem var(--fcsdPClr); */
}

.lang img {
    width: 100%;
    filter: brightness(0.5);
}

.logo {
    width: 150px;
    overflow: hidden;
}

.logo img {
    width: 100%;
}

.lzcard {
    background: #fff;
    padding: 1em;
    border-radius: 15px;
    position: relative;
    font-weight: 700;
    box-shadow: 1px 3px 10px var(--cardShdw);
    border: 1px solid #babbbd;
}
.lz-list {
    position: relative;
    padding: 0;
}

.lz-list li {
    list-style: none;
    padding: 0.3em 0;
    font-size: 18px;
    font-weight: 200;
    position: relative;
    margin-left: 20px;
}

.lz-list li::before {
    /* content: " "; */
    position: absolute;
    display: inline-block;
    width: 15px;
    left: 0;
    margin: 5px 10px;
    border-radius: 5px;
    height: 15px;
    background: linear-gradient(90deg, var(--pclr), var(--sclr));
    transform: rotate(45deg);
}

.question .que-count {
    display: block;
    position: absolute;
    top: -14px;
    background: #fff;
    left: 20px;
    font-size: 24px;
    padding: 0 5px;
}

.options .option {
    display: block;
    cursor: pointer;
    padding: 5px;
    border: 1px solid var(--pclr);
    margin-top: 15px;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    font-weight: 200;
}
.options .option:nth-child(1):not(.img .option) {
    margin-top: unset;
}
.options.img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 0;
}

.view-answer .que-count {
    font-size: 20px;
}
.view-answer .que-text {
    font-size: 18px;
}
.view-answer .options .option {
    font-size: 18px;
}

.options {
    padding: 10px;
}
.options .custom-card.active {
    background: var(--pclr) !important;
    color: #fff;
    border: 5px solid var(--pclr) !important;
    border-radius: 6px;
}
.options .custom-card.correct {
    background: var(--green);
    color: #fff;
    border: 5px solid var(--green);
    border-radius: 6px;
}
.options .custom-card.incorrect {
    background: var(--red);
    color: #fff;
    border: 5px solid var(--red);
    border-radius: 6px;
}

.options.img .option {
    display: inline-block;
    border: none;
    padding: 0;
    text-align: center;
    width: calc(50% - 8px);
    position: relative;
    white-space: normal;
    /* flex: 1 0 calc(50% - 8px); */
}
.options.img .option img {
    /* border: 2px solid var(--pclr); */
    border-radius: 5px;
    /* max-width: 50%; */
}
.options.img .tick.option img, .options.img .cross.option img {
    border: 5px solid var(--pclr);
}
#answer-pg .options.img .tick.option img {
    border-color: var(--green);
}
.options.img .cross.option img {
    border-color: var(--red);
}
.options.img .option:nth-of-type(2n) {
    margin-left: 15px;
}
.option.tick::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00C";
    display: flex;
    position: absolute;
    border-radius: 50%;
    background: var(--pclr);
    right: 0;
    top: -6px;
    color: #fff;
    font-weight: 700;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
}
.option.cross::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00D";
    display: flex;
    position: absolute;
    border-radius: 50%;
    background: var(--red);
    right: 0;
    top: -6px;
    color: #fff !important;
    font-weight: 700;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
}
#answer-pg .option.tick::before {
    background: var(--green);
}
p.correct-info {
    color: var(--green);
    display: none;
    text-align: center;
    width: max-content;
    margin: auto;
    padding: 0 0.2rem;
    font-weight: 700;
    font-size: 24px;
    margin-top: 1em;
}
p.correct-info.f {
    color: var(--red);
}

.lz-progress-bar {
    display: flex;
    justify-content: space-between;
}
.lz-progress-bar > span {
    display: block;
    width: calc(100% / 17);
    height: 10px;
    border: 2px solid var(--pclr);
    border-radius: 5px;
}
.lz-progress-bar > span.active {
    background: var(--pclr);
}
.lit_head {
    text-align: center;
    color: #616161;
    font-weight: 500;
    font-size: 16px;
}
.skip {
    display: block;
    right: 0;
    position: absolute;
    top: 0;
    font-size: 16px;
    background: var(--pclr);
    color: #fff;
    padding: 5px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 15px;
}
.skip:hover {
    color: #fff;
    text-decoration: none;
}
.nav-popup li a {
    color: #5c5c5c;
    display: block;
    width: 101%;
    height: 101%;
    padding: 5px;
    text-align: center;
    text-decoration: none;
}
  
.nav-popup ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5em;
    justify-content: center;
}
.nav-popup li {
    height: 38px;
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 0.2em;
    list-style: none;
    width: 100%;
    /* min-width: 100px; */
}
.nav-popup li:first-child {
    border-top-left-radius:  10px;
    border-top-right-radius:  10px;
}
.nav-popup li:last-child {
    border-bottom-left-radius:  10px;
    border-bottom-right-radius:  10px;
}
#nav-popup .modal-header {
    border-bottom: none !important;
}
.modal-header {
    justify-content: center;
}
.modal-content {
    border-radius: 15px !important;
}
.modal-header .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: unset;
}
.modal-body img {
    width: 100%;
}

.nav,
.lang {
    width: 35px;
}
.nav-toggle span:nth-child(1) {
    margin-top: 0;
}
.nav-toggle span:nth-child(1),
.nav-toggle span:nth-child(2) {
    transition: transform 0.5s;
}
.nav-toggle.active span:nth-child(1) {
    transform: translateY(13px) rotate(40deg) scale(1.1);
}

.nav-toggle.active span:nth-child(2) {
    transform: translateY(0) rotate(-40deg) scale(1.1);
}

.nav-toggle.active span:nth-child(3) {
    opacity: 0;
}
.nav-item {
    position: absolute;
    text-align: center;
    width: calc(100% + 30px);
    background: #fff;
    border-bottom-right-radius: 2em;
    border-bottom-left-radius: 2em;
    /* transition: all 0.3s; */
    z-index: -1;
    margin-left: -15px;
    top: 80px;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}
.nav-item:before {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    background: var(--pclr);
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transition: all 0.5s;
}
.nav-item.active {
    height: 326px;
}
.nav-item.active:before {
    /* height: 10px; */
}

.nav-item a {
    display: block;
    text-decoration: none;
    color: var(--pclr);
    font-size: 1.2em;
    padding: 0.5em;
    margin: auto;
    width: 80%;
    border-top: 1px solid #3b77da8f;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 30px;
    margin-top: 7px;
    background: var(--blackClr);
}
.nav-toggle.active span {
    /* background: var(--pclr); */
}
.not-found {
    margin: calc(50% - 50px) auto !important;
}

.pg-cont {
    z-index: 2;
    margin-top: 10px;
    position: relative;
    transition: margin-top 0.5s;
    padding-left: 0;
    padding-right: 0;
}
.pg-cont.nav-active {
    margin-top: 336px !important;
}

.pic-slider {
    margin: auto;
    width: 90%;
}
.pic-item {
    background: green;
    border-radius: 50%;
    overflow: hidden;
    /* transform: scale(1.5); */
    /* width: 100px; */
    /* height: 100px; */
}
.pg-cont img {
    width: 100%;
    height: 100%;
    max-height: 100%;
}
.pg-cont.answer img {
    height: auto;
}
#preloader {
    overflow: hidden;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-btn {
    display: block;
    width: 200px;
    margin: 16px auto;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    background: var(--pclr);
    color: #fff;
    /* box-shadow: 0 5px 2px var(--dShdwPclr); */
    text-transform: uppercase;
}
.primary-btn:hover {
    color: #fff;
}
.prize-cont {
    margin-top: 10em;
}
.progress-info {
    position: relative;
    padding: 20px;
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
}
.progress-info .count-prg {
    width: 100%;
}

.progress-info .progress {
    /* position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between; */
    /* background: transparent; */
}

.progress-info .que-count {
}
.progress-info .total-time {
    /* position: relative; */
    width: 70px;
    text-align: right;
    position: absolute;
    left: calc(50% - 35px);
    height: 100%;
    top: -10px;
}

.question .que-cont {
    position: relative;
    box-shadow: 5px 5px 5px #4295ed;
    /* transition: all 0.5s; */
}

.question .lightrope {
    width: unset;
    left: -40px;
    top: -15px;
}
.question .primary-btn {
    margin-top: 55px;
}

.que-cont .current-que-count {
    background: #4295ed;
    display: block;
    width: 115px;
    position: absolute;
    padding: 5px 0px 5px 25px;
    border-top-left-radius: 40px;
    color: #fff;
    top: 0;
    left: 0;
    transition: all 0.5s;
}
.que-cont img {
    position: absolute;
    right: 20px;
    width: 50px;
    top: -25px;
}
.que-cont .que-text {
    box-shadow: 0 0 10px #e1e1e1;
}

.que-cont .custom-card {
    margin: 5px;
    padding: 10px 10px 0 40px;
}

.que-cont .custom-card {
    position: relative;
    padding: 10px;
    background: #fff;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #e1e1e1;
    transition: all 0.3s;
}
.que-cont .custom-card:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: #fff;
    position: absolute;
    border-radius: 5px;
    left: -30px;
    box-shadow: 0 0 10px #e1e1e1;
}
.que-cont .custom-card.active {
    background: #4295ed;
    color: #fff;
}
.que-cont .custom-card.active:before {
    background: #4295ed;
    color: #fff;
}
.que-cont .text-ans {
    border: none;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 10px #e1e1e1;
    margin-top: 10px;
    padding: 10px;
    resize: none;
}
.que-cont .text-ans:focus {
    outline: red !important;
    border-color: red;
    border: 1px solid red;
}
.que-text {
    display: flex;
    padding: 10px;
    border-radius: 20px;
    position: relative;
    margin-top: 10px;
    font-weight: 200;
    font-size: 20px;
}
.que-text img {
    width: 50px;
    /* height: 50px; */
}
.que-text p {
    /* padding-left: 10px; */
    margin-bottom: 0px;
    display: block;
    /* min-height: 66px; */
    transition: all 0.5s;
    overflow: hidden;
    word-wrap: break-word;
}
.rank-pillars {
    position: relative;
}
.rank-pillars .top-3>span {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: absolute;
    font-weight: 500;
    max-width: 100px;
    width: 100px;
    text-align: center;
    line-break: anywhere;
    height: 100px;
    justify-content: flex-end;
}
.rank-pillars .top-3 span.score, .hilit {
    position: relative;
}
.rank-pillars .top-3 span.score::before, .hilit::before {
    content: ' ';
    display: block;
    position: absolute;
    width: 100%;
    height: 20px;
    top: -5px;
    max-width: 40px;
    left: 50%;
    background: #f5ee3b;
    transform: rotate(-14deg);
    z-index: -1;
}
.rank-pillars .top-3 span.score::before {
    transform: rotate(-14deg) translateX(-50%);
}
.hilit::before {
    width: 40px;
    z-index: -1;
    display: inline-block;
    max-width: 40px;
    left: 5px;
    top: 3px;
}
.rank-pillars .top-3>span:nth-child(1) {
    left: 11%;
    top: -70px;
}
.rank-pillars .top-3>span:nth-child(2) {
    left: 50%;
    top: -102px;
    transform: translateX(-50%);
}
.rank-pillars .top-3>span:nth-child(3) {
    right: 9%;
    top: -40px;
}
.rank-pillars .top-3 span.score {
    display: block;
    text-align: center;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
}

.share-buttons button {
    display: flex;
    align-items: center;
    color: #fff;
    border: none;
    font-size: 15px;
    padding: 0px 3px;
    width: calc(50% - 5px);
    height: 3.5em;
    margin-top: 0.1em;
    border-radius: 50px;
}
.share-buttons button span.brand-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px !important;
    height: 45px;
    /* padding: 23px; */
    background: #fff;
    border-radius: 50%;
    color: #000;
}
.share-buttons button span.brand-icon img {
    width: auto;
    /* height: auto; */
    max-height: 50%;
    max-width: 50%;
}

.share-buttons button:nth-of-type(2n + 1) {
    margin-left: 5px !important;
}
.share-buttons button:nth-child(1) {
    width: 100%;
    margin-left: unset !important;
}
.share-btn a {
    text-decoration: none;
    display: block;
    color: #fff;
    width: calc(100% - 60px );
    padding: 0.5em 0;
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
}
.share-btn.whatsapp {
    background-color: #20c47a;
    /* box-shadow: 0 5px 2px #20c47a47; */
}
.share-btn.fb {
    background: #1f3667;
    /* box-shadow: 0 5px 2px #1f366747; */
}
.share-btn.snapchat a {
    color: var(--blackClr);
}
.share-btn.snapchat {
    background-color: #fff70f;
    /* box-shadow: 0 5px 2px #fff70f47; */
}

.share-btn.messenger {
    background-color: #0166ff;
    /* box-shadow: 0 5px 2px #0166ff47; */
}
.share-btn.twitter {
    background-color: #00aced;
    /* box-shadow: 0 5px 2px #00aced47; */
}
.share-btn.insta {
    background: linear-gradient(to right, #db7a48, #b33376);
    /* box-shadow: 0 5px 2px #b3337647; */
}
.share-btn.line {
    background-color: #00b900;
    /* box-shadow: 0 5px 2px #00b90047; */
}
.share-btn.talk a {
    color: var(--blackClr);
}
.share-btn.talk {
    background-color: #fae301;
    /* box-shadow: 0 5px 2px #fae30147; */
}
.share-btn.vk {
    background-color: #6c9dd3;
    /* box-shadow: 0 5px 2px #6c9dd347; */
}
.share-icon {
    height: 200px !important;
    display: block;
    margin: auto;
    width: auto !important;
    margin-bottom: -3px;
    position: relative;
    z-index: 1;
}
.share .v-ans {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share a.delete, .answer .skip_btn {
    padding: 2px;
    font-size: 15px;
    font-weight: 500;
    width: 40%;
}

span.stick {
    position: absolute;
    /* left: 20px; */
    padding: 5px 18px;
    background: var(--pclr);
    border-top-left-radius: 40px;
    top: 0;
    left: 0;
    color: #fff;
}
.share .lzcard {
    padding: 2em 3em;
}
.table-header {
    display: flex;
    justify-content: space-between;
    border: 2px solid var(--pclr);
    padding: 0.5em 1em;
    border-radius: 5px;
    font-weight: 500;
}
.table-row {
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.5em 0.6em;
    background: linear-gradient(45deg, #e3e3e3cc, #fff, #e3e3e3cc);
    color: #505050;
    margin-top: 0.5em;
    border-radius: 5px;
    box-shadow: 1px 2px 4px #e7e7e7;
    cursor: pointer;
}
.table-row a {
    text-decoration: none;
    color: #252525;
    display: block;
    z-index: 1;
    width: 50px;
    text-align: center;
}
.table-row a:nth-child(2) {
    width: 65%;
    margin: 0 10px;
    word-break: break-all;
}
.shdw-danger {
    box-shadow: 5px 5px 2px #e3342ff0;
}
.shdw-info {
    box-shadow: 5px 5px 2px #6cb2ebf0;
}
.shdw-success {
    box-shadow: 5px 5px 2px #38c172f0;
}
.sh-talk img {
    width: 20px;
    margin: 0;
}

.skip_btn {
    background: #f0f6fb;
    color: #f34638;
}

.social-icons a {
    padding: 0 5px;
    display: inline-flex;
    background: #fff;
    border-radius: 5px;
    padding: 0px;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.answer .time-span {
    left: 5px;
}
.view-ans {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
}
.view-ans > div {
    width: 33.33%;
    height: 100%;
    text-align: center;
    position: relative;
}
.view-ans > div > a {
    position: absolute;
}

.view-ans > div >a:not(.delete-user) {
    display: block;
    background: #3a76db;
    padding: 0 5px;
    color: #fff;
    border-radius: 4px;
}

.completed .view-ans > div:nth-of-type(1) >a {
    left: 50%;
}
.completed .view-ans > div:nth-of-type(2) >a {
    left: 38%;
}
.completed .view-ans > div:nth-of-type(3) >a {
    right: 53%;
}
.view-ans > div:nth-of-type(1) >a {
    bottom: 15%;
    left: 42%;
}
.view-ans > div:nth-of-type(2) >a {
    bottom: 35%;
    left: 28%;
}
.view-ans > div:nth-of-type(3) >a {
    bottom: 15%;
    right: 70%;
}
.view-ans a.delete-user {
    color: #ff5959;
    background: #fff;
    border-radius: 4px;
    padding: 0 6px;
}
.view-ans > div:nth-of-type(1) >a.delete-user {
    /* bottom: 3%; */
    left: 71%;
}
.view-ans > div:nth-of-type(2) >a.delete-user {
    /* bottom: 15%; */
    left: 58%;
}
.view-ans > div:nth-of-type(3) >a.delete-user {
    /* bottom: 3%; */
    right: 42%;
}

.top {
    position: relative;
    z-index: 10;
}

.user > div.score {
    width: 25%;
}
.user > div.action {
    width: 30%;
}
.user > div.profile {
    width: 50%;
    position: relative;
}
.user > div.profile .time-span {
    bottom: 25px;
    left: calc(50% + 25px);
    /* top: 5px; */
}
.user > div { text-align: center; }
.user .rank {font-size: 20px;}
.user .score .points {font-size: 13px;}
.user .score .points, .user .profile .name {display: block;}
.user .time-span {
    position: relative;
    bottom: unset;
}
.user .action {
    display: flex;
    justify-content: space-around;
    /* padding: 0.5em; */
}

.user-ranks {
    display: flex;
    position: relative;
    height: 5px;
}
.user-ranks > div > img {
    width: 55px;
    margin-left: 10px;
}
.user-ranks > div {
    position: absolute;
    text-align: center;
    width: 130px;
}
a.img-link {
    display: block;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    border: 3px solid #fff;
    overflow: hidden;
    margin: auto;
}
.ellipsis {
    display: block;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-ranks .first .img-link {
    background: orange;
}
.user-ranks .first {
    left: calc(50% - 70px);
    top: -120px;
}

.user-ranks .second .img-link {
    background: pink;
}
.user-ranks .second {
    left: -3%;
    bottom: -100px;
    width: 120px;
}

.user-ranks .third .img-link {
    background: lightblue;
}
.user-ranks .third {
    right: -3%;
    bottom: -130px;
}
.user-ranks span {
    text-align: center;
    display: block;
    color: var(--blackClr);
    font-weight: 700;
    margin-top: 5px;
    line-height: 16px;
}

.user-table {
    padding: 10px !important;
    margin: -9px 0 10px 0;
}
.user-table a {
    color: var(--blackClr);
}
.user-table .profile img {
    width: 40px;
    height: 40px;
    background: green;
    border-radius: 50%;
}
.user-table .user:nth-child(n) .profile-img {
    background: #ff6666;
}
.user-table .user:nth-child(2n) .profile-img {
    background: #76fe3d;
}
.user-table .user:nth-child(3n) .profile-img {
    background: #ffc23b;
}
.user-table .user:nth-child(4n) .profile-img {
    background: #3898a1;
}
.user-table .user:nth-child(5n) .profile-img {
    background: #ffb9f7;
}
.user-table .user:nth-child(6n) .profile-img {
    background: gray;
}
.user-table .user:nth-child(7n) .profile-img {
    background: gray;
}
.user-table .user:nth-child(8n) .profile-img {
    background: gray;
}

.user-table .user {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 -10px;
    font-weight: 700;
    padding: 5px;
    border-top: 1px solid var(--pclr);
}
.user-table .user:nth-child(1) {
    border-top: unset;
    margin-top: -10px;
}
.user-table .user:nth-last-child(1) {
    padding-bottom: 0px;
}

.meter {
    position: relative;
}
.needle {
    width: 100% !important;
    height: auto !important;
}
.needle img {
    width: 130px !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    position: absolute;
    left: calc(50% - 132px);
    bottom: -20px;
    -webkit-animation: move 5s forwards;
    animation: move 5s forwards;
    transform-origin: right;
}
.meter .circle {
    position: absolute;
    width: 70px;
    height: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(35%);
    bottom: -10px;
}
.meter .reading {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: -30px;
    font-size: 35px;
    font-weight: 500;
}
/* @-webkit-keyframes move {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(180deg);
    }
} */

@keyframes scale {
    0% {
        transform: scale(0.6);
    }
    100% {
        transform: scale(0.8);
    }
}

@keyframes nudge {
    2%, 18% {
        transform: translate3d(-1px, 0, 0);
    }

    4%, 16% {
        transform: translate3d(1px, 0, 0);
    }

    6%, 10%, 14% {
        transform: translate3d(-1px, 0, 0);
    }

    8%, 12% {
        transform: translate3d(1px, 0, 0);
    }
    
    18.1% {
        transform: translate3d(0px, 0, 0);
    }
}

/* Processing*/
.processing_container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
    width: 100%;
  }
  .processing_container .loader {
    max-width: 16rem;
    width: 100%;
    height: auto;
    stroke-linecap: round;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  .processing_container .loader circle {
    fill: none;
    stroke-width: 8;
    -webkit-animation-name: preloader;
    animation-name: preloader;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animationcount: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animationfunction: ease-in-out;
    -webkit-transform-origin: 170px 170px;
    transform-origin: 170px 170px;
    will-change: transform;
  }
  .processing_container .loader circle:nth-of-type(1) {
    stroke: #48cfae;
    stroke-dasharray: 540;
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
  }
  .processing_container .loader circle:nth-of-type(2) {
    stroke: #4fc0e8;
    stroke-dasharray: 450;
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
  }
  .processing_container .loader circle:nth-of-type(3) {
    stroke: #ac92ed;
    stroke-dasharray: 360;
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
  }
  .processing_container .loader circle:nth-of-type(4) {
    stroke: #f5706c;
    stroke-dasharray: 275;
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
  }
  :nth-of-type(5) {
    stroke: #fec95c;
    stroke-dasharray: 190;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }
  @-webkit-keyframes preloader {
    50% {
      -webkit-transform: rotate(540deg);
      transform: rotate(540deg);
    }
  }
  @keyframes preloader {
    50% {
      -webkit-transform: rotate(540deg);
      transform: rotate(540deg);
    }
  }
  .process{
    display: none;
    margin: 40px 0;
    background-color: #272f4b;
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
    padding: 20px;
    text-align: center;
  }
  .process h2{
      font-size: 20px;
    color: #7d8cb7;
  }
  .process h3{
      font-size: 16px;
    color: #556486;
  }
  
.lz-lists {
    position: relative;
    padding: 0;
}

.lz-lists li {
    list-style: none;
    padding: 0.3em 0;
    font-size: 18px;
    font-weight: 200;
    position: relative;
}

.footer ul.highlight li a {
    color: red;
}

.telegram {
    background-color: #0088cc;
    color: white;
    cursor: pointer;
}