.show-main {
    height: calc(100dvh - 100px);
    position: relative;
    margin: auto;
}

.light-main {
    background-image: url(../../../images/light-background.png);
    max-width: 768px;
    margin: auto;
    background-size: 170%;
    background-repeat: no-repeat;
    background-position: center;
    height: 220px;
    overflow: hidden;
}

.light-main img {
    max-height: 100%;
    z-index: 1;
}

#circle {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1.5);
}

.thanks {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.thanks-msg {
    color: #A2A2A2;
    font-size: 14px;
}

#back-to-diya-selection {
    position: absolute;
    top: 20px;
    left: 24px;
}

.member-btn {
    border: 1px solid #73CAC7;
    background: transparent;
    width: 210px;
    color: #73CAC7;
    border-radius: 4px;
    height: 45px;
}

.member-btn:hover {
    color: #73CAC7;
}

.member-btn:focus {
    box-shadow: none;
}

.candle {
    margin: auto auto;
    position: relative;
    animation: blink 0.2s infinite;
}

.main-flame {
    width: 8px;
    height: 30px;
    margin: 0px auto;
    position: absolute;
    bottom: 60px;
    left: 47.5%;
    transform-origin: 50% 90%;
    animation: flame 6s;
}

.flame-hanging {
    bottom: 50px;
}

.flame {
    width: 8px;
    height: 30px;
    animation: move 3s infinite, move-left 3s infinite;
}

.flame .top {
    width: 8px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    border-top-left-radius: 500%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 500%;
    border-bottom-right-radius: 50px;
    transform: skewY(-10deg);
    box-shadow: 0 0px 0px 1px white, 0 0px 1px 1px white, 0 -3px 5px 3px gold, 0 -6px 5px 6px #ff6a00, 0 0px 145px 11px #ff6a00, 0 -10px 2px 2px white, 0 -5px 3px 3px white;
}

.flame-deeplaxmi {
    bottom: 0;
    top: 20px;
    width: 3px;
    height: 14px;
    left: 53%;
}

.flame-deeplaxmi .flame {
    width: 3px;
    height: 14px;
}

.flame-deeplaxmi .flame .top {
    width: 3px;
    height: 14px;
    animation: flame-up-small 4s infinite;
    box-shadow: 0 0px 0px 1px white, 0 0px 1px 1px white, 0 -3px 5px 2px gold, 0 -3px 5px 2px #ff6a00, 0 0px 21px 6px #ff6a00, 0 0px 2px 2px white, 0 0 2px 1px white;
}

.flame-standing {
    top: 20px;
    width: 3px;
    height: 13px;
    left: 54%;
}

.flame-standing .flame {
    width: 3px;
    height: 13px;
}

.flame-standing .flame .top {
    width: 3px;
    height: 13px;
    animation: flame-up-small 4s infinite;
    box-shadow: 0 0px 0px 1px white, 0 0px 1px 1px white, 0 -3px 5px 2px gold, 0 -3px 5px 2px #ff6a00, 0 0px 21px 6px #ff6a00, 0 0px 2px 2px white, 0 0 2px 1px white;
}

.right {
    left: 63%;
}

.left {
    left: 36%;
}

@keyframes flame {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes move {
    0% {
        transform: skewX(2deg) skewY(5deg);
    }

    50% {
        transform: skewX(-2deg) skewY(0deg);
    }

    100% {
        transform: skewX(2deg) skewY(5deg);
    }
}

@keyframes move-left {
    50% {
        transform: skewX(3deg);
    }
}


@keyframes blink {
    50% {
        opacity: 0.85;
    }
}

@media screen and (max-height:700px) {
    .thanks {
        font-size: 14px;
    }

    .thanks-msg {
        font-size: 12px;
        padding: 0 10px !important;
    }
}