.chatBtnSticky {
    position: fixed;
    z-index: 5;
    width: 72px;
    height: 72px;
    right: 10px;
    bottom: 10px;
}

.chatBtnSticky img {
    aspect-ratio: 1 / 1;
}


.chatBtnSticky:before {
    content: "";
    background: linear-gradient(rgba(130, 255, 106, 1), rgba(30, 124, 12, 1));
    animation: blinker 1s cubic-bezier(.5, 0, 1, 1) infinite alternate;
    width: 12px;
    height: 12px;
    position: absolute;
    top: -2px;
    left: -2px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

@keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.bottomDownloadSticky {
    position: sticky;
    z-index: 5;
    left: 10px;
    bottom: -200px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(4, 11, 34, 0.70) 0%, rgba(2, 5, 17, 0.70) 100%);
    backdrop-filter: blur(4px);
    transition: all 0.5s ease;
    max-width: 660px;
    margin-bottom: 10px;
}

.bottomDownloadSticky.showDiv {
    bottom: 10px;
}

.bottomDownloadSticky:before {
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 10%;
}

.bottomDownloadSticky:after {
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 10%;
}

.bottomDownloadSticky .withMobile .formblock input {
    padding: 10px 15px 10px 20px;
}

.bottomDownloadSticky .eclose {
    width: 32px;
    height: 32px;
    position: absolute;
    right: -12px;
    top: -12px;
    cursor: pointer;
    border-radius: 100%;
    background: var(--white);
    text-align: center;
    line-height: 29px;
    font-size: 32px;
    box-shadow: 0px 4px 10px 0px rgba(132, 132, 132, 0.4);
}

.withMobile {
    display: flex;
    align-items: center;
}

.withMobile form {
    text-align: center;
    max-width: 430px;
}

.withMobile form>p {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 15px;
    line-height: normal;
}


.withMobile .formblock {
    position: relative;
}

.withMobile .formblock .telcode {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    font-size: 24px;
    position: absolute;
    top: 16px;
    left: 15px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.withMobile .formblock input {
    background: #081645;
    border: 1px solid #3B4978;
    min-height: 60px;
    color: var(--white);
    font-size: 24px;
    width: 100%;
    padding: 10px 15px 10px 65px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.withMobile input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: var(--white);
    opacity: 0.5;
}

.withMobile input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--white);
    opacity: 0.5;
}

.withMobile input::placeholder {
    /* Most modern browsers support this now. */
    color: var(--white);
    opacity: 0.5;
}

.withMobile .formblock button[type="submit"] {
    background: linear-gradient(180deg, #82FF6A 0%, #1E7C0C 100%);
    color: var(--secondary);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    padding: 10px 30px;
    text-transform: uppercase;
    position: absolute;
    right: 0px;
    top: 0px;
    min-height: 60px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.withMobile form>p.mobgreen {
    color: #47ba38;
    font-size: 14px;
    font-weight: 500;
}

.withMobile form>p.moberror {
    color: #FF4444;
    font-size: 14px;
    font-weight: 500;
}

.withMobile .or {
    margin: 0px 20px;
}

.qr_scaner {
    display: flex;
    align-items: center;
}

.qrscan_img {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.qrscan_img svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr_scaner p {
    color: var(--white);
    padding-left: 15px;
    font-size: 16px;
    font-weight: 500;
    max-width: 130px;
    margin: 0;
    line-height: normal;
}

.defaultBtn {
    text-decoration: none;
    background: linear-gradient(180deg, #82FF6A 0%, #1E7C0C 100%);
    color: var(--secondary);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-block;
    padding: 15px 30px;
    line-height: normal;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.defaultBtn:hover{
    text-decoration: none;
    color: var(--secondary);
}

@media (max-width:1399px) {
    .withMobile form>p {
        font-size: 16px;
    }

    .withMobile .formblock .telcode {
        font-size: 20px;
    }

    .withMobile .formblock input {
        font-size: 20px;
        min-height: 52px;
    }

    .withMobile .formblock button[type="submit"] {
        font-size: 16px;
        padding: 10px 20px;
        min-height: 52px;
    }

    .getBonus p {
        font-size: 16px;
    }

    .qr_scaner p {
        font-size: 14px;
    }

    .qrscan_img {
        width: 90px;
        height: 90px;
        flex: 0 0 90px;
    }

    .defaultBtn {
        font-size: 16px;
    }

    .bottomDownloadSticky {
        max-width: 590px;
    }
}

@media (max-width:1199px) {
    .withMobile .or {
        margin: 0px 15px;
    }

    .qr_scaner p {
        max-width: 100px;
        font-size: 12px;
        margin: 0;
    }

    .qrscan_img {
        width: 70px;
        height: 70px;
        padding: 2px;
        flex: 0 0 70px;
    }

    .bottomDownloadSticky {
        max-width: 520px;
        padding: 15px;
    }
    .bottomDownloadSticky .defaultBtn {
        font-size: 14px;
    }
}


@media (max-width:991px) {

    .bottomDownloadSticky .withMobile form {
        max-width: 100%;
        width: 100%;
    }

    .bottomDownloadSticky .withMobile form>p {
        margin-bottom: 8px;
    }
}

@media (max-width:767px) {

    .bottomDownloadSticky .withMobile .or,
    .bottomDownloadSticky .withMobile .qr_scaner {
        display: none;
    }

    .bottomDownloadSticky {
        max-width: 300px;
    }

    .bottomDownloadSticky .withMobile form>p {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .bottomDownloadSticky .defaultBtn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width:479px) {

    .withMobile form>p {
        display: none;
    }

    .bottomDownloadSticky {
        max-width: 200px;
    }
}