.custom-button,
.guide-container .forever_url,
.guide-container h3 {
    text-align: center
}

.one-line {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.highlight {
    color: #f1d101 !important
}

.warning-text {
    border: 1px dashed red;
    color: red !important;
    padding: 8px 12px;
    margin: 12px;
    border-radius: 8px;
    font-size: 14px
}

.popup-container {
    position: fixed;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
    transition: bottom .3s;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif
}

.popup-content {
    background-color: #121212;
    overflow: hidden;
    box-shadow: 0 -4px 4px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column
}

.close-button,
.popup-content-main iframe {
    background-color: transparent
}

.popup-content-header {
    height: 44px;
    position: relative
}

.popup-content-header .title {
    text-align: center;
    line-height: 44px;
    font-size: 1rem;
    font-weight: 700;
    color: #b3b3b3
}

.popup-content-main {
    flex: 1;
    overflow-y: auto
}

.popup-content-main:after {
    content: "";
    display: block;
    width: 100%;
    height: 88px
}

.close-button {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    cursor: pointer
}

.close-button:after,
.close-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 10.5px;
    height: 24px;
    width: 3px;
    border-radius: 3px;
    background-color: #f1d101;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2)
}

.close-button:before {
    transform: rotate(45deg)
}

.close-button:after {
    transform: rotate(-45deg)
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, .8);
    animation: .3s forwards overlayShow
}

.custom-button,
.finger-button {
    position: absolute;
    cursor: pointer
}

.popup-overlay-show {
    display: block
}

@keyframes overlayShow {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.custom-button {
    bottom: 36px;
    left: 50%;
    padding: 10px 20px;
    background-image: linear-gradient(to right, #ff8a00, #e52e71);
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(0, 0, 0, .2)
}

.finger-button {
    bottom: 18px;
    left: 65%;
    width: 50px;
    height: 50px;
    background-image: url('../images/finger.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    outline: 0;
    animation: 1s infinite both fingerHandle
}

@keyframes fingerHandle {

    0%,
    100% {
        transform: none
    }

    70% {
        transform: scale3d(.8, .8, .8)
    }
}

.sticky-element {
    position: sticky;
    top: 0;
    height: 44px;
    z-index: 100;
    background-color: #121212;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.sticky-element::-webkit-scrollbar {
    display: none
}

.tabs {
    display: flex;
    align-items: center
}

.tab {
    padding: 0 12px;
    font-size: 14px;
    line-height: 44px;
    cursor: pointer;
    color: #b3b3b3
}

.tab-active {
    line-height: 41px;
    font-size: 16px;
    font-weight: 700;
    color: #f1d101
}

.tab-active:after {
    content: " ";
    width: 32px;
    height: 3px;
    background-color: #f1d101;
    border-radius: 3px;
    display: block;
    position: relative;
    left: 50%;
    transform: translateY(-100%);
    transform: translateX(-50%)
}

.guide-container {
    color: #b3b3b3;
    line-height: 1.5;
    font-family: Arial, sans-serif
}

.guide-container h3,
.guide-container h4 {
    margin: 0;
    padding: 10px;
    line-height: 1.5
}

.guide-container h3 {
    color: #b3b3b3;
    font-size: 16px
}

.guide-container h4 {
    color: #b3b3b3;
    font-size: 14px
}

.guide-container p {
    padding: 5px 10px 10px;
    font-size: .875rem;
    line-height: 1.6;
    margin: 0;
    color: #b3b3b3
}

.guide-container p img {
    width: 80%;
    margin: 0 auto;
    display: block
}

.guide-container .grid-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px
}

.guide-container .step-img-box {
    margin: 5px 10px 10px
}

.step-img-box img {
    width: 100%
}

@media (min-width:768px) {

    .popup-container,
    .popup-content {
        width: 100%;
        height: 100%
    }

    .popup-container {
        max-width: 800px;
        right: -800px;
        top: 0
    }

    .popup-show {
        right: 0 !important
    }

    .custom-button {
        width: 450px;
        transform: translateX(-225px)
    }
}

@media (max-width:767px) {
    .popup-container {
        width: 100%;
        height: 100%;
        bottom: -100%;
        left: 0
    }

    .popup-show {
        bottom: 0 !important
    }

    .popup-content {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 50%;
        width: 100%;
        height: 90%;
        transform: translateX(-50%);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px
    }

    .custom-button {
        width: 50%;
        transform: translateX(-50%)
    }
}