/*   Theme default css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --gd-bg: linear-gradient(290deg, #0623E3 -14.63%, #724CFF 141.94%);
    --thmColor: #0623E3;
    --textColor: #2C2C2C;
    --border: 1px solid rgba(0, 0, 0, 0.25);
    --redColor: #D60000;
    --f40: 40px;
    --f36: 36px;
    --f30: 30px;
    --f26: 26px;
    --f24: 24px;
    --f20: 20px;
    --f18: 18px;
    --f16: 16px;
    --f15: 15px;
    --f14: 14px;

    /* Gaps */
    --gap-xl: 20px;
    --gap-11xl: 30px;
    --gap-3xs: 10px;

    /* Paddings */
    --padding-2xs: 11px;
}

@media (min-width: 992px) {
    .container-fluid {
        --bs-gutter-x: 5rem !important;
    }
}

@media (min-width: 1400px) {
    .container-fluid {
        --bs-gutter-x: 10rem !important;
    }
}

body {
    font-size: var(--f15);
    margin: 0;
    padding: 0;
    color: #2C2C2C;
    font-family: "Urbanist", system-ui;
    background: #F5F7FA;
    font-weight: 500;
}

.adx-logo {
    max-width: 160px;
}

button {
    cursor: pointer;
}

a:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: medium none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: var(--f40);
}

h2 {
    font-size: var(--f36);
}

h3 {
    font-size: var(--f30);
}

h4 {
    font-size: var(--f24);
}

h5 {
    font-size: var(--f18);
    font-weight: 500;
}

h6 {
    font-size: var(--f16);
}

ul:not(.show-bullets) {
    margin: 0;
    padding: 0;
}

ul:not(.show-bullets) li {
    list-style: none;
}

.pb_150 {
    padding-bottom: 150px;
}

.pb_100 {
    padding-bottom: 100px;
}

.pb_50 {
    padding-bottom: 50px;
}

.pt_150 {
    padding-top: 150px;
}

.pt_100 {
    padding-top: 100px;
}

.pt_50 {
    padding-top: 50px;
}

.mb_150 {
    margin-bottom: 150px;
}

.mb_100 {
    margin-bottom: 100px;
}

.mb_50 {
    margin-bottom: 50px;
}

.mt_150 {
    margin-top: 150px;
}

.mt_100 {
    margin-top: 100px;
}

.mt_50 {
    margin-top: 50px;
}

.thm_input_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(290deg, rgba(6, 35, 227, 0.07) -14.63%, rgba(114, 76, 255, 0.07) 141.94%);
    margin-bottom: 5px;
}

.thm_input {
    border: none;
    background-color: #fff0;
    width: 90%;
    font-size: 18px;
    color: #2C2C2C;
    font-weight: 500;
}

.thm_btn {
    background: var(--thmColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    gap: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.thm_btn:hover {
    color: #2C2C2C;
    background: rgba(6, 35, 227, 0.10);
}

.thm_btn:hover i {
    color: #2C2C2C !important;
}

.thm_btn:disabled, .thm_btn.disabled {
    background: #ccc !important;
    color: #000 !important;
    pointer-events: none;
    cursor: default;
}

.thm_btn_white {
    border-radius: 32px;
    border: 1px solid #e5e5e5;
}

.thm_btn.secondary {
    color: #2C2C2C;
    background: rgba(6, 35, 227, 0.10);
}

.thm_btn.secondary:hover {
    background: var(--thmColor);
    color: #fff;
}

.thm_btn.secondary:disabled, .thm_btn.secondary.disabled {
    background: #f3f3f3 !important;
}

.thm_btn i {
    line-height: var(--bs-btn-line-height);
}

.thm_btn.secondary i {
    color: var(--thmColor) !important;
}

.thm_btn.secondary:hover i {
    color: #FFF !important;
}

.blurred {
    filter: blur(3px);
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

.back {
    background: #fff;
    height: 64px;
    padding: 20px;
    line-height: 1;
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    color: #000;
}

a.back.move {
    transform: translateY(60px);
}

.box_style {
    border-radius: 20px;
    background: #FFF;
    max-width: 1100px;
    margin-inline: auto;
    padding: 40px 60px;
}

.navbar-nav {
    gap: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
}

.card .card-text{
    opacity: .7;
}

/* default-css END 
================================== */


/* Header section */
.header-area nav {
    margin: 10px 0 60px 0;
}

#adx-navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

#adx-navbar .nav-item a {
    color: var(--textColor);
    border-bottom: 2px solid rgba(0, 0, 0, 0.10);
    font-size: var(--f16);
    font-weight: 500;
}

#adx-navbar .nav-item a.active {
    border-bottom: 2px solid var(--thmColor);
}

.wrapper-card {
    border-radius: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}

.wrapper-card.primary {
    border: 1px solid #0629E3;
    box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.10);
}

.wrapper-card-cta {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 30px;
}

.wrapper-card h5.title {
    color: var(--thmColor);
    font-size: var(--f18);
    font-weight: 600;
    opacity: 0.8;
}

.account-bar .wrapper-card {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-bar .navbar-brand.border-right {
    border-right: 1px solid #B1B1B1;
    padding-right: 20px;
    margin-right: 20px;
}

.account-bar-actions {
    color: var(--textColor);
    font-size: var(--f15);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.account-bar-actions i.fa-bell {
    font-size: 20px;
    font-weight: 100;
    color: var(--thmColor);
}

.account-bar-actions span.badge {
    margin: -10px 0 0 -8px;
    position: absolute;
}

.account-bar-actions .talk-to-a-pro {
    display: flex;
    padding: 0 15px 0 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 2px solid #0623E3;
    background-color: rgba(6, 35, 227, 0.10);
    background-image: linear-gradient(304deg, rgba(6, 35, 227, 0.10) -7.6%, rgba(255, 255, 255, 0.10) 112.74%);
    background-size: 0 100%;
    transition: background-color .5s;
    border-radius: 10px;
    color: #2C2C2C;
    font-weight: 500;
}

.account-bar-actions .talk-to-a-pro:hover {
    color: #FFF;
    background-color: var(--thmColor);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .7) 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    transition: background-size 1s, background-color 1s;
}

.account-bar-actions .talk-to-a-pro img {
    height: 35px;
    border-radius: 36px;
}

.main_menu {
    display: flex;
    align-items: center;
    gap: 0 50px;
    justify-content: end;
}

.user_blk .profile_img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.user_blk a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user_blk i {
    color: var(--thmColor);
}

.user_blk a span {
    opacity: 0.7;
    color: var(--textColor);
    font-size: 12px;
    font-weight: 400;
}

.user_blk .profile_name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.user_blk .profile_name h5 {
    font-size: 14px;
    margin-bottom: 0;
}

.user_blk .dropdown-menu a {
    padding: 15px 30px;
}

.user_blk .dropdown-menu li.dropdown-divider {
    margin: 0;
}

#notice-accordion .accordion-button {
    font-size: 23px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

#notice-accordion-collapse-one a {
    color: var(--thmColor);
    text-decoration: underline;
}

/* Header section END */

.legal-text {
    font-size: 12px;
    opacity: .6;
}

/* Nice select Scrollbar */
.list {
    max-height: 300px !important;
    overflow-y: auto !important;
}

/* Terms and Conditions Editor Start */
.ce-block__content {
    max-width: 100%;
}

.codex-editor__redactor {
    padding-bottom: 0 !important;
}

/* Terms and Conditions Editor End */

.dataTables_info {
    color: var(--textColor);
    opacity: 0.8;
}

.dataTables_paginate .pagination {
    gap: 5px;
    --bs-pagination-color: var(--thmColor);
    --bs-pagination-border-color: rgba(6, 35, 227, 0.50);
    --bs-pagination-bg: rgba(6, 35, 227, 0.10);
}

.dataTables_paginate .paginate_button {
    border-radius: 5px;
    background: rgba(6, 35, 227, 0.10);
}

.dataTables_paginate {
    display: flex;
    justify-content: right;
    gap: 20px;
}

.dataTables_paginate .page_numbering {
    color: var(--textColor);
    opacity: 0.8;
}

.dt-container.dt-bootstrap5.no-footer th {
    padding: 15px 20px;
}

.dt-container .dt-search input {
    width: 343px;
    height: 50px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    background: #FFF;
}

.dt-container select {
    font-size: 13px;
    width: 115% !important;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.lbl-collection{
    overflow: hidden;   
}

.lbl-dis {
    color: #2C2C2C;
    background: rgba(6, 35, 227, 0.10);        
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    gap: 10px;
    border-radius: 10px;     
    width: fit-content;
    height: fit-content;    
    float:left;
    margin-right: 5px;
}

.lbl-dis .partname{
    font-weight: bold;
}

.lbl-dis .partid{
    font-size: 10px;
}

footer {
    background: #0F072C;
    color: #FFF;
    padding: 4em 0;
    font-weight: 400;
}

.footer-curve-container {
    background: rgb(15, 7, 44);
    background: linear-gradient(0deg, rgba(15, 7, 44, 1) 72%, rgba(245, 247, 250, 1) 93%, rgba(245, 247, 250, 1) 100%);
}

.footer-curve {
    height: 70px;
    flex-shrink: 0;
    background: #F5F7FA;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

footer p {
    font-size: 14px;
    line-height: 130%;
    opacity: 0.8;
}

footer h5 {
    font-size: 18px;
    text-transform: capitalize;
}

footer .quick-links {
    font-size: var(--f15);
    opacity: 0.8;
}

footer .support-links a {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 1em;
    padding: .5em 1.5em;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: center;
}

footer .support-links a i {
    color: #FFF;
}

footer .social-links {
    display: flex;
    gap: 10px;
}

footer .social-links a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: var(--f20);
}

footer .social-links a i {
    color: #FFF;
}

footer hr {
    border: 1px solid #FFF;
}

footer .copyright-text {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

footer .copyright-text i {
    color: #7a7a7a;
}

footer .footer-links {
    gap: 15px;
}