@font-face {
    font-family: "Nexa";
    src: url("/assets/vendor/fonts/nexa/NexaRegular.otf") format("opentype");
}

@font-face {
    font-family: "Nexa";
    font-weight: bold;
    src: url("/assets/vendor/fonts/nexa/NexaBold.otf") format("opentype");
}

* {
    font-family: "Nexa";
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Nexa";
    font-weight: bold !important;
}

input[type="color"] {
    height: 38px; 
    padding: 3px; 
    outline: 0;
}

.app-brand-text {
    font-size: 20px;
    margin-top: 5px;
}

.domain-selector {
    transition: .3s ease height;
}

html.layout-menu-collapsed:not(.layout-menu-hover) .domain-selector {
    height: 0;
    overflow: hidden;
}

#layout-menu .dropdown > .dropdown-menu.show {
    margin-top: 10px !important;
    min-width: calc(100% - 2rem);
    max-height: calc(100vh - 155px) !important;
}

#layout-menu .dropdown-menu.inner {
    max-height: calc(100vh - 220px) !important
}

#layout-menu .dropdown-menu .dropdown-item.active {
    background-color: #E5E5EF; 
    color: #000065 !important;
}

#layout-menu .dropdown-menu .dropdown-item.selected {
    color: #ffffff !important;
}

#layout-menu .dropdown-menu .no-results {
    word-break: break-word;
    text-wrap: wrap;
}

.selectpicker-fallback {
    display: block;
    border-radius: 0.375rem;
    border: 1px solid #dbdade;
    padding: 0.422rem 0.875rem;
    color: var(--bs-btn-color);
    appearance: none;
    -webkit-appearance: none;
}

.menu-icon {
    margin-top: -5px;
}


/* Authentication styling */
.message-div {
    background-color: #000065;
    min-height: 100vh;
}

.message-div p {
    color: #ffffff !important;
}

.light-style .auth-bg {
    background-color: #f8f7fa;
}

#formAuthentication input:-webkit-autofill,
#formAuthentication input:-webkit-autofill:hover, 
#formAuthentication input:-webkit-autofill:focus, 
#formAuthentication input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

.divider-timeline {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    height: 100vh;
    width: 1px;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}

@media screen and (max-width: 980px) {
    .auth-bg  {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .message-div {
        display: none !important;
    }

    .auth-div {
        width: 80% !important;
    }
}


.integration-card {
    min-height: 100px;
    transition: .2s ease transform, .2s ease opacity;
}

.integration-card:hover {
    transform: translateY(-5px);
    opacity: .9;
}

.integration-card svg {
    position: absolute;
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 0;
}

.integration-card .card-header {
    padding-right: 70px;
}

@media (max-width: 768px) {
    .integration-card {
        min-height: 50px;
    }

    .integration-card i.ti {
        font-size: 64px;
    }
} 

.integration-modify-btns {
    display: flex;
    gap: 4px;
    transform: translateY(10%);
    transition: .2s all;
    visibility: hidden;
    opacity: 0;
}

.integration-modify-btns a,
.integration-modify-btns button {
    box-shadow: none !important;
}

.integration-modify-btns a.btn-light,
.integration-modify-btns button.btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

.integration-modify-btns a.btn-light:hover,
.integration-modify-btns button.btn-light:hover {
    background-color: #dfdfe3 !important;
    border-color: #dfdfe3 !important;
}
 
.integration-card:hover > .integration-modify-btns {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.integration-card:hover::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 0 0 5px 5px;
    background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0) 100%);
}

.not-available,
.not-available:hover {
    cursor: not-allowed !important;
    opacity: .5 !important;
}

.icon-search-results {
    display: grid;
    grid-template-columns: repeat(10, 9.5%);
    grid-column-gap: 0.5555%;
}

@media (max-width: 568px) {
    .icon-search-results {
        grid-template-columns: repeat(8, 12%);
        grid-column-gap: 0.57%;
    }
}

@media (max-width: 468px) {
    .icon-search-results {
        grid-template-columns: repeat(5, 19%);
        grid-column-gap: 1.25%;
    }
}

@media (max-width: 368px) {
    .icon-search-results {
        grid-template-columns: repeat(3, 32%);
        grid-column-gap: 2%;
    }
}

.icon-search-results .icon-picker-wrapper {
    border: 1px solid #000065;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 4px;
}

.icon-search-results i {
    display: inline-block;
    font-size: 35px;
    padding: 4px;
    margin-right: 0;
    opacity: 1;
    cursor: pointer;
    transition: .3s ease all;
    color: #000065;
}

.icon-search-results i:hover {
    opacity: 1;
}

.status-switch .switch {
    display: block;
    width: 40px;
    margin-right: 0px;
}

.status-switch .switch-toggle-slider i {
    top: 1px !important;
}

.question-close-btn {
    right: 0 !important;
}

.fields-form [data-repeater-item]:last-child hr,
.fields-form [data-repeater-item]:first-child [data-repeater-delete] {
    display: none !important;
}

@media (min-width: 768px) {
    .fields-form .card-body .row > .mb-3 {
        margin-bottom: 0 !important;
    }
}

.card .tagify__tag > div::before {
    background-color: rgba(168, 170, 174, 0.16);
    box-shadow: none !important;
}

.card .tagify__tag__removeBtn:hover + div::before {
    background-color: rgba(234, 84, 85, 0.3);
    box-shadow: none !important;
}

.conversion-icon {
    width: 32px; 
    height: 32px; 
    border-radius: 100px; 
    line-height: 38px; 
    text-align: center;
}

.nav-link,
.nav-link > i {
    font-size: 30px !important;
} 

.nav-link {
    display: flex;
    align-items: center; 
}

@keyframes blink {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}                                                                                                                                                                                                                                  

@-webkit-keyframes blink {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}

.blink {
    animation: blink 2000ms infinite;
    -webkit-animation: blink 2000ms infinite;
}

#support-articles>button{
    position: fixed;
    right: -62px;
    top: 45%;
    bottom: 0;
    rotate: 270deg;
    height: fit-content;
    border-radius: 6px 6px 0px 0px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .07) !important;
}

#support-articles .offcanvas-body p {
    margin-bottom: 0px;
}

@media (max-width: 1199px) {
    .tour-link {
        display: none;
    }
}

.wb-data-field {
    min-width: 120px;
}

.wb-word-break {
    word-break: break-word;
}