
/*# sourceMappingURL=custom.min.css.map */
.qr-div img{
    width: 300px;
}

.pt-30{
    padding-top: 30px !important;
}


/*.owl-carousel .owl-item {*/
/*    background-color: #fff; !* Customize as needed *!*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border: 1px solid #ccc; !* Customize as needed *!*/
/*    box-sizing: border-box;*/
/*}*/

/*.owl-nav button.owl-prev,*/
/*.owl-nav button.owl-next {*/
/*    background-color: rgba(0, 0, 0, 0.5); !* Customize as needed *!*/
/*    color: #fff; !* Customize as needed *!*/
/*    width: 30px; !* Customize as needed *!*/
/*    height: 30px; !* Customize as needed *!*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    border: none;*/
/*    z-index: 10;*/
/*    cursor: pointer;*/
/*}*/

/*.owl-nav button.owl-prev {*/
/*    left: 10px; !* Customize as needed *!*/
/*}*/

/*.owl-nav button.owl-next {*/
/*    right: 10px; !* Customize as needed *!*/
/*}*/
.div-table {
    display: flex;
    flex-direction: column;
    border-collapse: collapse;
    width: 100%;
}

.div-table-row {
    display: flex;
    flex-direction: row;
    padding: 8px 0;
}



.div-table-cell {
    flex: 1;
    text-align: center;
}

.div-table-cell span{
   display: block;
}

.mt-3 {
    margin-top: 3px;
}

@media (max-width: 1200px) {
    .div-table-cell {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .div-table {
        flex-direction: row;
        text-align: center;
    }
    .div-table-row {
        flex-direction: column;
        border-bottom: none;
        width: 100%;
    }
    .div-table-cell {
        display: flex;
        margin-bottom: 10px;
        font-size: 11px;
    }

    .div-table-cell strong{
        width: 100px;
        text-align: left;
    }

    .div-table-cell span{
        padding-left: 30px;

    }

}


.profile-setting-img {
    position: relative;
    height: 100px;
}


/* Animate the telegram icon */
.telegram-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    animation: bounce 1s infinite alternate;
    z-index: 1; /* Ensure the icon is above the chat box */
}

.telegram-icon img {
    width: 50px; /* Adjust the size as needed */
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Chat overlay to close the chat when clicking outside */
.chat-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2; /* Place above the chat box, below the icon */
}
/* Animate the chat box with fade effect */
.chat-box {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border: none;
    padding: 0px;
    max-width: 340px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: fadeIn 0.5s forwards;
    border-radius: 0px;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    background-color: #0088cc; /* Background color for the header */
    padding: 10px 20px;
    border-radius: 0; /* Rounded corners on top */
}

.chat-body{
    padding: 20px;
}

.chat-body p{
    color: #000000;
}

.chat-header img {
    width: 30px; /* Adjust the size of the user icon as needed */
    border-radius: 50%;
    margin-right: 10px;
}

.company-name {
    font-weight: bold;
    color: #fff; /* Text color for the company name */
    width: 100%;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    color: #fff; /* Text color for the close button */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.telegram-link {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #fff;
    background-color: #0088cc; /* Adjust the color as needed */
    padding: 10px;
    border-radius:5px; /* Rounded corners on bottom */
    text-decoration: none;
}

.telegram-link:hover {
    background-color: #006699; /* Adjust the hover color as needed */
}


.tbl-point td  , .tbl-point th{
    padding: 6px 0px;
    font-size: 11px;
}


.countdown-wrapper {
    display: flex;
    align-items: center;
}
.countdown {
    font-size: 16px;
    display: flex;
    gap: 10px;
}
.countdown div {
    text-align: center;
}
.countdown span {
    display: block;
}
.countdown .label {
    font-size: 9px;
}
.countdown .number {
    font-size: 16px;
}
.countdown .seconds {
    color: red;
}

.gif-container {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.gif-container img{
    border: none;
    background: transparent;
}

/*.auth-one-bg {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100vh; !* Adjust this to fit your needs *!*/
/*    overflow: hidden;*/
/*    padding: 0px !important;*/
/*}*/

/*#bg-video {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.bg-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.5); !* Adjust the overlay color and opacity as needed *!*/
/*    z-index: 0;*/
/*}*/

/*.position-relative {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    !* Other styles for your content *!*/
/*}*/
.auth-one-bg {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust this to fit your needs */
    overflow: hidden;
    padding: 0px !important;
}

#bg-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(0%, 0%);
    z-index: -1;
}

.auth-one-bg .content {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the overlay color and opacity as needed */
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    /* Other styles for your content */
}

.position-relative {
    position: relative;
    z-index: 1;
    /* Other styles for your content */
}

.modal-promo .modal-dialog{
    width: 80%;
    max-width: 1024px;
    margin: 0 auto;
}
.modal-promo.modal {
    --bs-modal-width: 80%;
    z-index: 9999;
}

.modal-promo img{
    width: 100%;
}
.modal-promo .modal-body{
    padding: 0;
}


.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 50%; /* Make it circular */
    padding: 10px; /* Add some padding around the icon */
}

.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker on hover for better visibility */
}

        .d-price-box sup {
    top: -4px;
    font-size: 15px !important;
    margin-right: 3px;
}

.d-price-box .c-code-2{
color: #0AB39C;
}

.d-price-box .c-code-2 span{
    color: #0AB39C !important;
}
.connect-btn {
    padding: 10px 15px;
    margin-right: 10px;
    font-size: 13px;
    background-color: #518EFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 5px;
}
.u-nofification{
    color: #E55638;
    padding: 0px 10px;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 3px;
}

.auth-page-content  .select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    padding: .5rem .9rem;
    font-size: var(--vz-font-base);
    font-weight: var(--vz-font-weight-normal);
    line-height: 1.5;
    color: var(--vz-body-color);
    background-color: var(--vz-input-bg-custom);
    background-clip: padding-box;
    border: var(--vz-border-width) solid var(--vz-input-border-custom);
    border-radius: var(--vz-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: auto;
}

.auth-page-content .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding-left: 0;
    color: var(--vz-body-color);
}

.auth-page-content .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 10px;
}

.auth-page-content .select2-dropdown {
    border: var(--vz-border-width) solid var(--vz-input-border-custom);
    background-color: var(--vz-input-bg-custom);
    border-radius: var(--vz-border-radius);
}

.auth-page-content .select2-search--dropdown .select2-search__field {
    padding: .5rem .9rem;
    border: var(--vz-border-width) solid var(--vz-input-border-custom);
    border-radius: var(--vz-border-radius);
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.auth-page-content .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--vz-primary);
}
