body {
    font-family: Arial, Helvetica, sans-serif;
    /* overflow : hidden; */
}

.logo {
    position: absolute;
    left: 15px;
    top: 15px;
}

.bg-image {
    background: url("../images/background-dark.jpg");
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    transition: all .1s ease-in-out;
    z-index: -1;
}

.main_box {
    width: 800px;
    position: absolute;
    background-color: var(--bs-white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    border-radius: 10px;
    padding: 30px 50px;
    z-index: 0;
    border-radius: 10px;
    border: 1px solid lightgray;
    box-shadow: 3px 3px 5px 3px #8b8b8b;
}

.main_box .logo {
    width: 415px;
}

.main_box .chrome_img {
    width: 200px;
}

.main_box h1 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-top: 40px;
}

.main_box ul {
    margin-left: 200px;
}

.main_box ul li {
    list-style: none;
    color: #666666;
    margin: 10px 0px;
    font-size: 16px;
}

.main_box ul li span {
    font-weight: 600;
}

.main_box p {
    font-size: 16px;
    margin: 20px 0;
}

.main_box a {
    text-decoration: none;
    font-size: 16px;
}

.main_box .btn {
    text-decoration: none !important;
    display: inline-block !important;
    padding: 30px 100px;
    color: #fff !important;
    font-size: 40px;
    font-weight: bold !important;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2) !important;
    background: #54b723 !important;
    border-radius: 12px !important;
    transition: all .3s !important;
    margin-bottom: 15px !important;
    margin: 10px 150px;
    border: none !important;
}

.main_box .btn:hover {
    background-color: #3e9be0 !important;
    transform: scale(1.1) !important;
}

.tb-popup-template * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tb-popup-template {
    position: fixed;
    /* display: none; */
    z-index: 99999;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

.tb-popup {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 25px 0 rgba(0, 0, 0, .25);
    background-color: #fff;
    text-align: center;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100px;
    margin: auto;
}

.tb-popup h2 {
    letter-spacing: .15px;
    color: #324148;
    font-weight: 700;
    font-size: 27px;
    margin: 0;
    line-height: 25px;
}

.tb-popup h2 .color-txt {
    color: #1a73e8;
}

.tb-popup div#wave {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 4px;
    background-color: #1a73e8;
    max-width: 401px;
    margin-top: 65px;
    padding: 40px;
}

.tb-popup div#wave .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 17px;
    background: #fff;
    animation: wave 1.3s linear infinite;
}


.tb-popup-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    animation: fade .2s linear forwards;
}

.tb-popup div#wave .dot:nth-child(2) {
    animation-delay: -1.1s;
}

.tb-popup div#wave .dot:nth-child(3) {
    animation-delay: -.9s;
}

.tb-popup div#wave .dot:nth-child(4) {
    animation-delay: -.5s;
}

.tb-popup div#wave .dot:nth-child(5) {
    animation-delay: -.3s;
}

#install-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99998;
    background: black;
    position: fixed;
    opacity: .9;
    pointer-events: none;
    display: none;
}

.confirm {
    position: fixed;
    width: 500px;
    height: 200px;
    background: #fff;
    z-index: 100000;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -250px;
    border: solid 2px #ccc;
    display: none;
}

.confirm p {
    font-size: 23px;
    color: #010101;
    font-weight: normal;
    line-height: 29px;
    margin: 20px 0 0 20px;
    text-align: left;
}

.confirm .actions {
    text-align: right;
    margin: 50px 20px 0 0;
}

.confirm .actions .btn {
    background: #f3f2f2;
    border: 1px solid #acacac !important;
    font-size: 24px;
    margin-left: 20px;
    color: #000 !important;
    font-weight: normal;
    border-radius: 5px;
    padding: 6px 35px;
    text-decoration: none;
}

.confirm .actions .btn.blue {
    border: solid 1.7px rgba(24, 73, 198, 0.55) !important;
    background: #498cfe;
    color: #fff !important;
}

.footer {
    width: 100%;
    padding-top: 20px;
    color: white;
    position: fixed;
    bottom: 0px;
    /*background-color: #7E7E7E;*/
}

.footer-container {
    /* margin-left: auto; */
    margin-right: 20px;
    /* width: 960px; */
    text-align: right;
    color: lightgrey;
}

.footer-source {
    margin-top: 25px
}

.le-nav {
    border-bottom-style: none;
    text-decoration: none !important;
    font-family: Arial, sans-serif;
    margin: auto;
    float: none;
    color: lightgrey;
    font-weight: normal;
    text-decoration: none;
}

.le-nav {
    font-size: 12px;
    /*margin: auto;*/
    line-height: 17px;
    margin-bottom: 10px;
    float: right;
    clear: both;
    position: relative;
    text-decoration: none;
}

.le-nav u,
u:hover {
    text-decoration: none !important;
    color: lightgrey;
}

.le-nav ul {
    margin-bottom: 0px;
    padding-bottom: 0px;
    display: inline-block;
    text-decoration: none;
}

.le-nav ul li {
    display: inline-block;
    text-decoration: none;
}

.le-nav p {
    margin-bottom: 0px;
    padding-bottom: 0px;
    text-decoration: none;
}

.le-nav-left {
    position: relative;
    float: left;
    display: block;
    margin: auto;
    text-decoration: none;
    margin-right: 0px;
}

.le-nav-right {
    position: relative;
    float: right;
    display: block;
    text-decoration: none;
    margin: auto;
    color: lightgrey;
}

.le-nav ul li a {
    text-decoration: none;
    color: lightgrey;
}

.le-nav ul li a:hover {
    cursor: pointer;
    color: lightgrey;
    text-decoration: none;
}

.le-nav-sub {
    clear: both;
    /*text-align: center;*/
    text-decoration: none;
}

body.beforeClass::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    z-index: 9;
}


.continue_btn_popup,
.AddBtnPopup,
.staticPopup,
.yesClickPopup {
    position: absolute;
    top: 300px;
    right: 10%;
    background-color: #FFF;
    border-radius: 20px;
    padding: 50px 40px;
    z-index: 99;
    width: 640px;
    display: none;
}

.AddBtnPopup {
    right: 6%;
    z-index: 199;
}

.yesClickPopup {
    width: 460px;
    top: 250px;
    left: 29%;
}

.staticPopup {
    top: 0;
    border-radius: 0 0 10px 10px;
    right: 3%;
    padding: 15px 25px;
    width: 350px;
}

.staticPopup .popup_content h5 {
    font-size: 16px;
    font-weight: 700;
}

.staticPopup .popup_content p {
    font-size: 12px;
    color: #9c9c9e;
    font-weight: 700;
    line-height: 16px;
}

.image_static {
    width: 40px;
}

.staticPopup .btn_group .btn {
    background: #1a73e8;
    color: white;
    font-weight: 700;
    padding: 8px 20px;
}

.staticPopup .btn_group .btn_border {
    background: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

.staticPopup .logoOfstatic {
    border: 1px solid #d9d9d9;
    padding: 10px;
    border-radius: 10px;
}

.continue_btn_popup .popup_content {
    position: relative;
}

.continue_btn_popup .popup_content .arrow,
.AddBtnPopup .popup_content .arrow,
.yesClickPopup .popup_content .arrow {
    position: absolute;
    right: 0;
    top: -180px;
    height: auto;
    -webkit-animation: MoveUpDown 0.4s linear infinite alternate;
    animation: MoveUpDown 0.4s linear infinite alternate;
}

.AddBtnPopup .popup_content .arrow {
    top: -120px;
    right: 4%;
}

.yesClickPopup .popup_content .arrow {
    top: -120px;
    left: 4%;
}

img.vert-move {
    width: 80px;
    -webkit-animation: mover .5s infinite alternate;
    animation: mover .5s infinite infinite;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

.highlightTxt {
    font-weight: 700;
    color: #1a73e8;
}

.popup_content h3 {
    font-size: 36px;
}

.main_continue_btn_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    padding: 40px 35px 20px 35px;
    border-radius: 10px;
    z-index: 199;
    width: 550px;
    display: none;
}

.main_continue_btn_popup .Firelogo {
    width: 70px;
}

.main_continue_btn_popup h2 {
    font-size: 32px;
    font-weight: 700;
}


.main_continue_btn_popup .loading-bar {
    height: 15px;
    width: 100%;
    box-shadow: inset 0px 0px 0px 1px #c8c8cd;
    border-radius: 50px;
    overflow: hidden;
    padding: 3px;
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }

    20% {
        width: 10%;
    }

    40% {
        width: 30%;
    }

    50% {
        width: 60%;
    }

    100% {
        width: 100%;
    }
}

.main_continue_btn_popup .loading-bar .progress-bar {
    display: flex;
    height: 100%;
    width: 100%;
    background: #1a73e8;
    border-radius: 50px;
    animation: progress-animation 3s ease-in-out;
}

.main_continue_btn_popup .continue_btnOfclick {
    font-size: 24px;
    color: #FFF;
    background: #1a73e8;
    padding: 15px;
    font-weight: 700;
}

.main_continue_btn_popup .descTxt {
    font-size: 11px;
    color: #9c9c9e;
    line-height: 16px;
}

.popup_steps .arrow img {
    width: 10px;
    height: auto;
}

.hoverCursorText {
    cursor: pointer;
}

.popup_steps .first_step p,
.popup_steps .second_step p,
.popup_steps .third_step p {
    font-size: 12px;
    font-weight: 700;
    color: #9c9c9e;
}

.popup_steps .first_step h6,
.popup_steps .second_step h6,
.popup_steps .third_step h6 {
    font-size: 14px;
}

@media (max-width : 600px) {
    .main_continue_btn_popup {
        width: 450px;
    }
}

@media (max-width : 500px) {
    .main_continue_btn_popup {
        width: 400px;
    }
}

@media (max-width : 400px) {
    .main_continue_btn_popup {
        width: 340px;
    }
}

@media (max-width : 350px) {
    .main_continue_btn_popup {
        width: 250px;
    }

    .main_box .btn {
        margin: 10px 20px;
    }
}

.already_btn {
    padding: 30px 52px !important;
    font-size: 34px !important;
}

@media (max-width : 991px) {
    /*.main_box .btn {
        padding: 10px 80px;
    } */
    .already_btn {
        padding: 20px 70px !important;
        font-size: 28px !important;
    }
}