﻿:root {
    --primiry-color: #1376bb;
    --primiry-color-dark: #2e485c;
    --header-height: 100%;
}

input:autofill,
input:-webkit-autofill,
input:focus,
input:active,
input:target {
    background-color: #fff;
}

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px white inset !important;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "Arial";
    font-size: 10px;
    background-color: #fff;
}

a {
    text-decoration: none;
}

.ck-balloon-panel {
    z-index: 9999999 !important;
}

.slides {
    position: relative;
}

    .slides .arrow-content {
        margin: 0 25px;
    }

    .slides .dots {
        text-align: center;
    }

    .slides .dot {
        cursor: pointer;
        height: 7px;
        width: 7px;
        margin: 0 2px;
        background: #c0c8ce !important;
        border-radius: 50%;
        display: inline-block;
        transition: all 0.6s ease;
    }

        .slides .active,
        .slides .dot:hover {
            background: #586d7d !important;
            height: 9px;
            width: 9px;
            transition: all 0.6s ease;
        }

    .slides .prev-slide {
        position: absolute;
        left: 0;
        top: calc(50% - 22px);
        width: 18px;
        cursor: pointer;
    }

    .slides .next-slide {
        position: absolute;
        right: 0;
        top: calc(50% - 22px);
        width: 18px;
        cursor: pointer;
    }

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.public-footer {
    display: flex;
    flex: 1;
    justify-content: center;
    background-color: #fafafa;
    margin-top: 20px;
}

    .public-footer > .footer-cl {
        width: 428px;
        background-color: #f5f6f7;
        padding: 64px;
    }

        .public-footer > .footer-cl > img {
            margin-bottom: 64px;
        }

    .public-footer > .footer-cr {
        flex: 1;
        padding-left: 60px;
        margin-top: 64px;
    }

        .public-footer > .footer-cr > .footer-links {
            display: flex;
            gap: 30px;
            flex: 1;
        }

            .public-footer > .footer-cr > .footer-links > dl {
                display: flex;
                flex-direction: column;
                gap: 12px;
                flex: 1;
            }

                .public-footer > .footer-cr > .footer-links > dl > dt {
                    font-size: 14px;
                    font-weight: 600;
                    color: #2e485c;
                }

                .public-footer > .footer-cr > .footer-links > dl > dd {
                    font-size: 14px;
                    font-weight: 400;
                    color: #2e485c;
                }

                    .public-footer > .footer-cr > .footer-links > dl > dd > a {
                        font-size: 14px;
                        font-weight: 400;
                        color: #2e485c;
                    }

                        .public-footer > .footer-cr > .footer-links > dl > dd > a:hover {
                            text-decoration: underline;
                        }

        .public-footer > .footer-cr > .social-networks {
            display: flex;
            flex-direction: column;
            padding-top: 20px;
            gap: 10px;
            flex: 1;
        }

            .public-footer > .footer-cr > .social-networks h6 {
                font-size: 14px;
            }

            .public-footer > .footer-cr > .social-networks > div {
                display: flex;
                gap: 10px;
                height: 100px;
            }

                .public-footer > .footer-cr > .social-networks > div > a > img {
                    width: 24px;
                    height: 24px;
                }

                    .public-footer > .footer-cr > .social-networks > div > a > img:hover {
                        opacity: 0.5;
                    }

    .public-footer > .footer-cl .contact-info {
    }

        .public-footer > .footer-cl .contact-info .contact-location {
            border-bottom: 1px solid #ccc;
            padding-bottom: 18px;
        }

            .public-footer > .footer-cl .contact-info .contact-location > p {
                padding: 18px 10px 0;
                cursor: pointer;
                font-weight: 500;
                font-size: 14px;
                color: #2e485c;
            }

                .public-footer > .footer-cl .contact-info .contact-location > p > span {
                    float: right;
                    font-size: 20px;
                    color: #c4c4c4;
                }

            .public-footer > .footer-cl .contact-info .contact-location > div {
                display: flex;
                flex-direction: column;
                padding-top: 18px;
            }

            .public-footer > .footer-cl .contact-info .contact-location div > address {
                padding: 5px 15px;
                font-size: 14px;
                font-weight: 400;
                color: #2e485c;
                font-style: normal;
                display: flex;
                gap: 5px;
                align-items: start;
            }

.footer {
    padding: 20px 0;
    display: flex;
    flex: 1;
    justify-content: center;
}

    .footer > div {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: center;
    }

.counter-section {
    display: flex;
    width: 100%;
    font-size: 11px;
    justify-content: end;
    color: #2e485c;
    margin-top: -30px;
}

@media screen and (max-width: 767px) {
    .public-footer,
    .public-footer > .footer-cr > .footer-links {
        display: block !important;
    }

    #intel-ddo-section-reverse {
        flex-direction: column;
    }

    .public-footer > .footer-cl {
        width: auto;
        padding: 20px;
    }

    .public-footer > .footer-cr {
        padding: 20px;
    }

        .public-footer > .footer-cr > .footer-links > dl,
        .public-footer > .footer-cr > .social-networks {
            width: 50%;
            float: left;
            min-height: 240px;
        }

        .public-footer > .footer-cr > .social-networks {
            display: block;
            width: 100%;
            min-height: auto;
            padding-bottom: 20px;
        }
}

.navbar-menu a {
    color: inherit;
}

.arrow-hide {
    display: none;
}

.arrow-down {
    display: none;
}

.arrow-show {
    display: inline-block;
}

.solutions-li {
    position: relative;
    display: inline-block;
}

.solutions-li-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    left: -17px;
    top: 20px;
    z-index: 1;
}

.solutions-li-menu-show {
    display: flex;
    flex-flow: column;
    background: white;
    color: black;
}

.arrow-down {
    transform: scaleY(-1);
}

.more-menu-button:hover > .more-menu {
    display: flex;
}

.more-menu {
    background-color: #fff;
    padding: 10px 20px;
    position: absolute;
    right: 10px;
    top: 40px;
    width: max-content;
    box-shadow: 0 0 10px #bfbfbf;
    list-style-type: none;
    display: none;
    flex-direction: column;
    border-radius: 3px;
}

    .more-menu > a {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 5px;
        line-height: 30px;
        color: #2e485c;
        font-size: 11px;
        font-weight: bold;
        text-decoration: none;
    }

        .more-menu > a > img {
            width: 16px;
        }

.menu-box {
    position: relative;
    font-size: 14px;
}

.organization-menu {
    background-color: #fff;
    min-width: 326px;
    padding: 10px 20px;
    position: absolute;
    left: 10px;
    top: 65px;
    width: max-content; /*box-shadow: 0 0 10px #bfbfbf;*/
    list-style-type: none; /*display: none !important;*/
    flex-direction: column;
    border-radius: 3px;
}

    .organization-menu > a {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 5px;
        line-height: 30px;
        color: #586d7d;
        font-size: 12px;
        font-weight: 400;
        text-decoration: none;
    }

        .organization-menu > a > img {
            width: 16px;
        }

.cart-items {
    background: #1376bb;
    height: 18px;
    width: 18px;
    text-align: center;
    color: white;
    border-radius: 50%;
    position: relative;
    left: -16px;
    top: -10px;
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.mobile-menu {
    width: 100%;
    height: 100vh;
    z-index: 999;
    top: 70px;
    background-color: white;
    position: fixed;
    padding: 24px;
    display: none;
}

    .mobile-menu > ul {
        list-style-type: none;
    }

        .mobile-menu > ul > li {
            font-size: 20px;
            font-weight: 500;
            line-height: 28px;
            color: #586d7d;
            margin-bottom: 12px;
        }

    .mobile-menu > .acc-button {
        width: 100%;
        margin-top: 35px;
    }

        .mobile-menu > .acc-button > a.acc-button {
            background: #f5f6f7;
            border-radius: 64px;
            color: var(--primiry-color);
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            width: 81px;
            height: 48px;
            padding: 12px 16px;
            gap: 8px;
            margin-right: 16px;
        }

            .mobile-menu > .acc-button > a.acc-button.active {
                background-color: var(--primiry-color);
                color: #fff;
            }

.show-mobile-menu {
    display: block;
}

.hide-mobile-menu {
    display: none;
}

.more-menu-button:hover > .more-menu {
    display: flex;
}

.more-menu {
    background-color: #fff;
    padding: 10px 20px;
    position: absolute;
    right: 10px;
    top: 40px;
    width: max-content;
    box-shadow: 0 0 10px #bfbfbf;
    list-style-type: none;
    display: none;
    flex-direction: column;
    border-radius: 3px;
}

    .more-menu > a {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 5px;
        line-height: 30px;
        color: #2e485c;
        font-size: 11px;
        font-weight: bold;
        text-decoration: none;
    }

        .more-menu > a > img {
            width: 16px;
        }

.menu-box {
    position: relative;
    font-size: 14px;
}

/* .organization-menu {
            background-color: #fff;
            min-width: 294px;
            padding: 10px 20px;
            position: absolute;
            left: 10px;
            top: 65px;
            width: max-content;
            box-shadow: 0 0 10px #bfbfbf;
            list-style-type: none;
            display: none !important;
            flex-direction: column;
            border-radius: 3px;
        }*/

.organization-menu > a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
    line-height: 30px;
    color: #586d7d;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

    .organization-menu > a > img {
        width: 16px;
    }

/*.menu-box:hover > .organization-menu {
    display: flex !important;
}*/

.cart-items {
    background: #1376bb;
    height: 18px;
    width: 18px;
    text-align: center;
    color: white;
    border-radius: 50%;
    position: relative;
    left: -16px;
    top: -10px;
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.mobile-menu {
    width: 100%;
    height: 100vh;
    z-index: 999;
    top: 70px;
    background-color: white;
    position: fixed;
    padding: 24px;
    display: none;
}

    .mobile-menu > ul {
        list-style-type: none;
    }

        .mobile-menu > ul > li {
            font-size: 20px;
            font-weight: 500;
            line-height: 28px;
            color: #586d7d;
            margin-bottom: 12px;
        }

    .mobile-menu > .acc-button {
        width: 100%;
        margin-top: 35px;
    }

        .mobile-menu > .acc-button > a.acc-button {
            background: #f5f6f7;
            border-radius: 64px;
            color: var(--primiry-color);
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            width: 81px;
            height: 48px;
            padding: 12px 16px;
            gap: 8px;
            margin-right: 16px;
        }

            .mobile-menu > .acc-button > a.acc-button.active {
                background-color: var(--primiry-color);
                color: #fff;
            }

.show-mobile-menu {
    display: block;
}

.hide-mobile-menu {
    display: none;
}

.organization-menu-show {
    display: flex !important;
}

.organization-menu-hide {
    display: none !important;
}

.inteligeunce-para {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #435a6c;
}

.solution-li-full-content-div-mobile {
    margin-bottom: 10px;
}

    .solution-li-full-content-div-mobile img {
        padding: 10px 1px 1px 7px;
        float: right;
    }

#solutions-li-menu-mobile a {
    color: #babdbf;
    display: block;
}

.solutions-li-menu-mobile-hide {
    display: none;
}

.solutions-li-menu-mobile-show {
    display: block;
}

.unstyled a:visited {
    color: #586d7d;
}

.organization-items {
    border-radius: 8px;
    width: 100%;
    display: flex;
    gap: 10px;
    height: 74px;
    padding-left: 8px;
}

.account-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #2e485c;
}

.profile-image-menu {
    align-self: center;
}

.account-details {
    display: flex;
    flex-direction: column;
    line-height: 10px;
    justify-content: center;
}

.account-title1 {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px; /* identical to box height, or 117% */
    letter-spacing: 0.02em; /* Grey/Grey 80 */
    color: #586d7d;
}

.account-title2 {
    font-weight: 400;
    font-size: 11px;
    margin-top: 5px; /* identical to box height, or 10px */
    letter-spacing: 0.04em; /* Grey/Grey 70 */
    color: #6d7f8d;
    line-height: 15px;
}

.menu-arrow {
    cursor: pointer;
}

    .menu-arrow img {
        transition: all 250ms ease-in-out;
    }

    .menu-arrow.show img {
        transform: rotate(180deg);
        transition: all 250ms ease-in-out;
    }

.search {
    background: white;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    z-index: 10;
}

    .search .container {
        width: 100%;
        max-width: 1200px;
        margin: 10px auto;
    }

    .search .header {
        background-color: #f5f5f5;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .search .header > div {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

            .search .header > div span {
                font-size: 24px;
            }

        .search .header .search-input {
            position: relative;
        }

            .search .header .search-input .icon {
                position: absolute;
                top: 10px;
                left: 15px;
            }

        .search .header > div input[type="search"] {
            height: 44px;
            width: 350px;
            background: none;
            border: solid 1px #b1b1b1;
            border-radius: 25px;
            padding: 0 25px 0 50px;
            font-size: 14px;
        }

        .search .header > div input[type="button"] {
            height: 44px;
            background: #1376bb;
            border: solid 1px #1376bb;
            border-radius: 25px;
            color: white;
            width: 130px;
            font-size: 17px;
        }

    .search .result-count {
        font-size: 12px;
        color: #525a60;
        margin: 20px 0 10px 0;
    }

    .search .search-result-item {
        border-bottom: solid 1px #eaeaea;
        padding: 10px 0;
    }

        .search .search-result-item h3 {
            font-size: 18px;
            line-height: 30px;
            color: #525a60;
            font-weight: 600;
        }

        .search .search-result-item p {
            font-size: 16px;
            line-height: 30px;
            color: #525a60;
        }

        .search .search-result-item .mark {
            background-color: #fffadd;
        }

header {
    display: flex;
}

    header > div.logo {
        width: 1280px;
    }

    header > img.logo {
        padding: 10px;
        width: 100%;
        height: auto;
    }

.main-container {
    display: flex;
    width: 100%;
    overflow-x: hidden;
    /*height: 100vh;*/
}

.content-container {
    width: 100%;
    border-left: 1px solid silver;
    padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .content-container {
        margin-top: 70px;
        width: 100%;
    }
}

.content-container > h1 {
    font-size: 20px;
    font-weight: 500;
    color: #2e485c;
    border-bottom: solid 1px #b5b5c6;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 70px;
    background-color: #fff;
    z-index: 1;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 2px;
    background: #6d6d6d;
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.text-red {
    color: darkred !important;
}

.side-bar {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    margin-top: 14px;
    min-height: calc(100vh - 80px);
}

    .side-bar > .menu-bar {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
        position: sticky;
        top: 85px;
    }

        .side-bar > .menu-bar > a {
            display: flex;
            text-decoration: none;
            justify-content: flex-start;
            padding: 8px 15px;
            align-items: center;
            gap: 10px;
            color: #2e485c;
            font-size: 12px;
            font-weight: 500;
            margin: 0 15px;
            border-radius: 5px;
            background-color: transparent;
            transition: all ease-in-out 0.2s;
            height: 40px;
        }

            .side-bar > .menu-bar > a > svg {
                width: 20px;
                height: 20px;
                fill: #586d7d;
            }

            .side-bar > .menu-bar > a > span {
                flex: 1;
                height: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .side-bar > .menu-bar > a .badge-green {
                padding: 4px 6px;
                background-color: #05944f;
                border-radius: 15px;
                color: #fff;
                font-size: 10px;
                font-weight: normal;
                letter-spacing: 1px;
                font-style: inherit;
            }

            .side-bar > .menu-bar > a.active,
            .side-bar > .menu-bar > a:hover {
                color: #1376bb;
                background: rgba(19, 118, 187, 0.2);
            }

                .side-bar > .menu-bar > a.active svg,
                .side-bar > .menu-bar > a:hover svg {
                    fill: #1376bb;
                }

            .side-bar > .menu-bar > a > img {
                width: 22px;
                height: 22px;
            }

            .side-bar > .menu-bar > a.active > img {
                filter: brightness(100);
            }

@media screen and (max-width: 767px) {
    .side-bar {
        margin-top: 80px;
    }

        .side-bar > .menu-bar {
            max-height: 450px;
            overflow-y: auto;
            padding-top: 28px;
        }
}

main {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-top: 70px;
    height: 100vh;
}

header {
    display: flex;
}

nav {
    display: flex;
    height: 70px;
    border-bottom: 1px solid #ccc;
    width: 100%;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
}

    nav > div.user-profile {
        background-color: #fff;
        display: flex;
        height: var(--header-height);
    }

        nav > div.user-profile > .logo {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: start;
            height: 70px;
            border-bottom: 1px solid #ccc;
            max-width: 250px;
        }

            nav > div.user-profile > .logo > img {
                margin: 12px;
                width: 154px;
            }

        nav > div.user-profile > .menu-box {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 34px;
            padding-left: 24px;
            padding-right: 27px;
            background: #fafafa;
            width: 325px;
        }

            nav > div.user-profile > .menu-box h5 {
                font-weight: 500;
                font-size: 14px;
                line-height: 20px;
                letter-spacing: 0.02em;
                color: #2e485c;
            }

            nav > div.user-profile > .menu-box h6 {
                font-weight: 400;
                font-size: 11px;
                line-height: 100%;
                letter-spacing: 0.04em;
                color: #6d7f8d;
            }

            nav > div.user-profile > .menu-box > img {
                border-radius: 50%;
            }

            nav > div.user-profile > .menu-box > div {
                display: flex;
                gap: 4px;
                flex-direction: column;
                background: #fafafa;
                max-width: 320px;
            }

.organization-items:hover {
    background: #eaedef;
}

nav > div.user-profile > .menu-box > span {
    display: flex;
    gap: 4px;
    width: 30px;
}

nav > div.user-profile > .menu-box h6 {
    color: #6d7f8d;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
}

nav > div.user-profile > .menu-box h5 {
    color: var(--primiry-color-dark);
    font-weight: 500;
}

nav > div.header-icons {
    padding: 0 10px;
    display: flex;
    gap: 15px;
    margin-left: auto;
}

    nav > div.header-icons > a.acc-button {
        background-color: #fff;
        border-radius: 25px;
        color: var(--primiry-color);
        font-weight: 500;
        font-size: 13px;
        width: auto;
        padding: 0 20px;
    }

nav > div.menu-items {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    padding: 0 40px;
    height: var(--header-height);
}

    nav > div.menu-items > a {
        color: var(--primiry-color-dark);
        text-decoration: none;
        font-size: 13px;
        height: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
        border-bottom: 2px solid transparent;
    }

        nav > div.menu-items > a:hover {
            border-bottom: 2px solid var(--primiry-color);
        }

        nav > div.menu-items > a.active {
            border-bottom: 2px solid var(--primiry-color);
        }

nav > div.header-icons > a.acc-button.active {
    background-color: var(--primiry-color);
    color: #fff;
}

nav > div.header-icons > a,
nav > div.header-icons > div {
    display: flex;
    align-items: center;
    justify-content: end;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

    nav > div.header-icons > a:hover {
        background-color: #fafafa;
    }

@media screen and (max-width: 767px) {
    nav > div.user-profile > .logo {
        display: block;
        min-width: auto !important;
    }

        nav > div.user-profile > .logo > img {
            margin: 20px 0 0 10px;
            width: 100px;
        }

    .menu-itemss {
        margin: 0 0 0 10px !important;
        padding: 0 !important;
    }

    nav > div.user-profile > .menu-box {
        position: absolute;
        width: 100%;
        top: 70px;
        right: 0;
        height: 100%;
        padding: 0 !important;
        padding-left: 20px !important;
    }

        nav > div.user-profile > .menu-box a img {
            height: 30px;
            width: 30px;
        }

        nav > div.user-profile > .menu-box > span {
            margin-left: auto;
            margin-right: 15px;
        }

        nav > div.user-profile > .menu-box > div {
            max-width: 100% !important;
            width: 100%;
            padding-top: 0%;
            padding-bottom: 0%;
        }
}

.tab {
    list-style: none;
    border-bottom: solid 1px #b5b5c6;
    padding: 0 20px;
}

    .tab li {
        display: inline-block;
        padding: 13px 10px;
        border-bottom: solid 4px transparent;
        margin-bottom: -2px;
        position: relative;
    }

        .tab li a {
            text-decoration: none;
            font-size: 14px;
            color: #2e485c;
        }

        .tab li.active {
            color: #2e485c;
            font-weight: 500;
            border-bottom: solid 4px #1376bb;
            font-size: 14px;
        }

.button {
    padding: 12px 16px;
    background-color: #1376bb;
    color: white;
    border: none;
    border-radius: 64px;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.02em;
    font-family: "Poppins", sans-serif;
}

.input {
    border: solid 2px #2e485c;
    border-radius: 4px;
    padding: 8px 16px;
}

.select {
    border: solid 1px #d8dadb;
    border-radius: 4px;
    padding: 8px 16px;
}

.select {
    border: solid 1px #d8dadb;
    border-radius: 4px;
    padding: 8px 16px;
}

/* Radio and checkbox */
.radio,
.checkbox {
    display: inline-block;
    height: 18px;
    width: 18px;
    overflow: hidden;
    margin-top: 2px;
    margin-left: 7px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #cccccc;
    transition: 0.2s ease-in-out;
    transition-property: background-color, border;
}

.checkbox {
    border-radius: 5px;
}

.radio {
    border-radius: 50%;
}

.checkbox:focus {
    outline: none;
    border-color: #1376bb;
}

.checkbox:checked,
.checkbox:indeterminate {
    background-color: #1376bb;
    border-color: transparent;
}

    .checkbox:checked:focus,
    .checkbox:indeterminate:focus {
        background-color: #1376bb;
    }

.radio:checked,
.radio:focus {
    background-color: #fff;
    border-color: #1376bb;
}

.radio:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%231376BB%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

.checkbox:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.checkbox:indeterminate {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

.radio:disabled,
.checkbox:disabled {
    background-color: #f8f8f8;
    border-color: #e5e5e5;
}

    .radio:disabled:checked {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
    }

    .checkbox:disabled:checked {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
    }

    .checkbox:disabled:indeterminate {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
    }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 32px;
    border-radius: 8px;
    min-width: 450px;
    max-height: 90%;
    overflow-y: auto;
}

.modal .modal-header {
    display: flex;
    margin-bottom: 20px;
}

    .modal .modal-header h3 {
        font-size: 20px;
        color: #2e485c;
        font-weight: 500;
        flex: 1;
        margin-bottom: 34px;
        line-height: 22px;
        letter-spacing: -0.015em;
        font-weight: 500;
        margin-top: 18px;
    }

.modal .modal-footer {
    display: flex;
    justify-content: center;
    margin-top: 44px;
    gap: 10px;
}

.modal .modal-body {
    font-size: 15px;
}

.modal .modal-close {
    cursor: pointer;
}

/*.modal-body input*/
.overlay {
    display: none;
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8) url(../image/loader.svg) center no-repeat;
    background-size: 120px 90%;
}
.whitText {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 130px;
    font-size: 1rem;
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8) url(../image/loader.svg) center no-repeat;
    background-size: 120px 90%;
}

@media screen and (max-width: 767px) {
    .modal-content {
        min-width: auto;
        width: 90% !important;
    }

    .continue .module {
        width: 100% !important;
    }

    .record {
        flex-direction: column !important;
    }

    .continue-desc {
        flex-direction: column !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

        .continue-desc > div {
            justify-content: left !important;
        }
}

div.loading {
    min-height: 80px;
    overflow: hidden;
    /*filter:blur(1px);*/
}

    div.loading .overlay {
        /*display: block;*/
    }

.primary-button {
    color: #fff;
    background: linear-gradient( 90deg, rgba(0, 44, 163, 1) 0%, rgba(19, 118, 187, 1) 100% );
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.secondary-button {
    color: #fff;
    background: #2e485c;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

    .primary-button[disabled],
    .secondary-button[disabled] {
        opacity: 0.8;
    }

.transparent-button {
    color: #2e485c;
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

th > span {
    display: flex;
    align-items: center;
    justify-content: start;
}

th .order-by,
th .client-order-by {
    display: inline-flex;
    flex-direction: column;
}

    th .order-by > span,
    th .client-order-by > span {
        padding: 3px 5px;
        cursor: pointer;
        display: flex;
    }

img.profile-image-menu {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.input-form {
    position: relative;
    margin: 20px 0;
}

    .input-form label {
        position: absolute;
        font-size: 14px;
        left: 0;
        top: 20px;
        transform: translateY(-50%);
        background-color: white;
        color: #2e485c;
        padding: 0 0.3rem;
        margin: 0 0.5rem;
        transition: 0.1s ease-out;
        transform-origin: left top;
        pointer-events: none;
        font-weight: 400;
    }

    .input-form input,
    .input-form textarea,
    .input-form select {
        font-size: 14px;
        outline: none;
        border: 1px solid #2e485c;
        border-radius: 5px;
        padding: 10px 16px;
        color: #2e485c;
        transition: 0.1s ease-out;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }

        .input-form input:focus,
        .input-form textarea:focus {
            border-color: #2e485c;
            font-size: 15px;
        }

            .input-form input:focus + label,
            .input-form textarea:focus + label {
                color: #2e485c;
                top: 0;
                transform: translateY(-50%) scale(0.9) !important;
            }

        .input-form input:not(:placeholder-shown) + label,
        .input-form textarea:not(:placeholder-shown) + label {
            top: 0;
            transform: translateY(-50%) scale(0.9) !important;
            font-size: 12px;
        }

        .input-form input:not(:focus)::placeholder,
        .input-form textarea:not(:focus)::placeholder {
            opacity: 0;
        }

    .input-form select {
        background-color: white;
    }

        .input-form select[placeholder] + label {
            top: 0;
            transform: translateY(-50%) scale(0.9) !important;
            font-size: 12px;
        }

    .input-form input,
    .input-form textarea,
    .input-form select {
        width: 100%;
    }

    .input-form textarea {
        resize: vertical;
    }

.default-button-v2,
.primary-button-v2 {
    font-family: "Poppins", sans-serif;
    border-radius: 65px;
    padding: 12px 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #f5f6f7;
    color: #1376bb;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-weight: 500;
    font-size: 14px;
}

.primary-button-v2 {
    background-color: #1376bb;
    color: white;
}

.select2-selection--single {
    height: 40px !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    line-height: 40px !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    height: 40px !important;
}

.select2-results__option {
    text-transform: capitalize;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    text-transform: capitalize;
    font-weight: normal;
    font-size: 16px;
    padding-left: 14px;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    margin-bottom: 15px;
}

.footer img {
    width: 20px;
    margin: 0 5px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #1376bb;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 80px;
    font-size: 17px;
}

    #snackbar.red {
        background-color: darkred !important;
    }

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.ck-editor__editable {
    min-height: 150px;
}

.menu-itemss {
    padding: 0 10px;
    margin-left: 20px;
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 100% !important;
    position: relative;
}

    .menu-itemss img {
        width: 18px;
        height: 18px;
    }

.submenu-items {
    position: absolute;
    display: none;
    width: 170px;
    background: #ffffff;
    box-shadow: 0px 4px 16px rgba(46, 72, 92, 0.19);
    border-radius: 8px;
    list-style-type: none;
    top: 110%;
    right: 0;
}

    .submenu-items li {
        display: flex;
        height: 50px;
    }

        .submenu-items li.logout a {
            color: #d13d2b;
        }

.menu-itemss a {
    color: var(--primiry-color-dark);
    text-decoration: none;
    font-size: 13px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-bottom: 2px solid transparent;
    gap: 8px;
}

.menu-itemss img {
    /* padding-left: 5px; */
    margin-right: 5px;
    text-align: center;
}

.abs-msg {
    color: #990000;
    font-size: 12px;
    padding-left: 1%;
    padding-top: 1%;
}

.help-inline {
    font-size: 12px;
    color: #990000;
    padding-left: 12px;
}

.nodata-block {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #2e485c;
    padding-right: 38%;
    width: 100%;
    padding-top: 3%;
    height: 300px;
}

.footerTerms {
    text-align: center;
    padding: 6px 0;
    border-top: #d5dade 2px solid;
    color: #586d7d;
    font-family: Poppins;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.02em;
    background: #fafafa;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
}

.home-header-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .footerTerms {
        padding-right: 0px !important;
    }

    .side-bar {
        display: none;
        z-index: 100;
        position: absolute;
        background: white;
    }

    #side-bar-show {
        display: block !important;
    }

    .side-bar > .menu-bar > a {
        font-size: 14px;
    }

    .home-header-mobile {
        display: flex;
        gap: 10px;
        padding: 10px 25px 10px 25px;
    }

    .cancel-icon {
        display: block;
        text-align: right;
        padding-top: 10px;
        padding-right: 10px;
        position: absolute;
        right: 0;
        z-index: 1000;
    }

    .home-header-mobile {
        display: flex;
    }

        .home-header-mobile h1 {
            font-size: 16px;
            color: #2e485c;
            font-weight: 500;
        }

    .hide-in-moblie {
        display: none;
    }
}

.footerTerms a {
    color: #586d7d;
}

/* The element to hover over */
[data-tooltip] {
    --width: 100px;
    --bg: #444444;
    padding-left: 6px;
    padding-right: 6px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

    [data-tooltip]:before {
        content: attr(data-tooltip);
        width: calc(var(--width) * 3);
        padding: 16px;
        text-align: initial;
        font-size: 14px;
        line-height: 1.6;
        border-radius: 4px;
        background-color: #1376bb;
        color: #fff;
        position: absolute;
        bottom: calc(100% + 20px);
        left: 50%;
        transform: translateX(-50%);
        cursor: default;
        opacity: 0;
        visibility: hidden;
        transition: 400ms all 150ms ease-in-out;
        z-index: 1000;
    }

    [data-tooltip]:hover:before {
        bottom: calc(100% + 10px);
        opacity: 1;
        visibility: visible;
        transition: all 150ms ease-in-out;
        z-index: 1000;
    }

    [data-tooltip]:after {
        content: "";
        display: inline-block;
        border: 8px solid transparent;
        border-top-color: #1376bb;
        position: absolute;
        bottom: calc(100% + 5px);
        left: calc(50% - 8px);
        opacity: 0;
        visibility: hidden;
        transition: 400ms all 150ms ease-in-out;
        z-index: 1000;
    }

    [data-tooltip]:hover:after {
        bottom: calc(100% - 5px);
        opacity: 1;
        visibility: visible;
        transition: all 150ms ease-in-out;
        z-index: 1000;
    }

/* Scroller styling */
.scroller-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #2e485c;
    width: 30px;
}

.scroller {
    height: 20px;
    line-height: 20px;
    position: relative;
    overflow: hidden;
    width: 250px;
}

    .scroller > span {
        position: absolute;
        top: 0;
        animation: slide 60s infinite;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #2e485c;
    }

@keyframes slide {
    0% {
        top: 0;
    }

    2.3% {
        top: -20px;
    }

    4.6% {
        top: -40px;
    }

    6.9% {
        top: -60px;
    }

    9.2% {
        top: -80px;
    }

    11.5% {
        top: -100px;
    }

    13.8% {
        top: -120px;
    }

    16.1% {
        top: -140px;
    }

    18.4% {
        top: -160px;
    }

    20.7% {
        top: -180px;
    }

    23% {
        top: -200px;
    }

    25.3% {
        top: -220px;
    }

    27.6% {
        top: -240px;
    }

    29.9% {
        top: -260px;
    }

    32.2% {
        top: -280px;
    }

    34.5% {
        top: -300px;
    }

    36.8% {
        top: -320px;
    }

    39.1% {
        top: -340px;
    }

    41.4% {
        top: -360px;
    }

    43.7% {
        top: -380px;
    }

    46% {
        top: -400px;
    }

    48.3% {
        top: -420px;
    }

    50.6% {
        top: -440px;
    }

    52.9% {
        top: -460px;
    }

    55.2% {
        top: -480px;
    }

    57.5% {
        top: -500px;
    }

    59.8% {
        top: -520px;
    }

    62.1% {
        top: -540px;
    }

    64.4% {
        top: -560px;
    }

    66.7% {
        top: -580px;
    }

    69% {
        top: -600px;
    }

    71.3% {
        top: -620px;
    }

    73.6% {
        top: -640px;
    }

    75.9% {
        top: -660px;
    }

    78.2% {
        top: -680px;
    }

    80.5% {
        top: -700px;
    }

    82.8% {
        top: -720px;
    }

    85.1% {
        top: -740px;
    }

    87.4% {
        top: -760px;
    }

    89.7% {
        top: -780px;
    }

    92% {
        top: -800px;
    }

    94.3% {
        top: -820px;
    }

    96.6% {
        top: -840px;
    }

    98.9% {
        top: -860px;
    }

    100% {
        top: -880px;
    }
}

@media screen and (min-width: 930px) {
    .hide-in-mobile {
        display: block;
    }

    .show-in-mobile {
        display: none !important;
        width: 24px;
    }
}

@media screen and (max-width: 930px) {
    .hide-in-mobile {
        display: none !important;
    }

    .show-in-mobile {
        display: block !important;
        width: 24px;
    }
}

.cart-badge {
    background-color: #1376bb;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 12px;
}

.d-hide {
    display: none !important;
}

.d-block {
    display: block;
}

.theme-buttons {
    color: #fff;
    background: #1376bb;
    padding: 8px 15px;
    border: none;
    border-radius: 64px;
}

.department-columns {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #2e485c;
}

.white-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    height: 38px;
    background: #f5f6f7;
    border-radius: 64px;
    flex: none;
    flex-grow: 0;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    align-items: center;
    letter-spacing: 0.02em;
    color: #2e485c;
    border: none;
    cursor: pointer;
}

.blue-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    height: 38px;
    background: #1376bb;
    border-radius: 64px;
    flex: none;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    letter-spacing: 0.02em;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

    .white-button > img,
    .blue-button > img {
        width: 24px;
        height: 24px;
    }

.organization-menu {
    left: 0 !important;
}

.modal-ddo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    border-radius: 8px;
    min-height: 200px;
}

.modal-header-ddo h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #2e485c;
}

.modal-body-ddo {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #2e485c;
    margin-bottom: 16px;
}

.modal-content-ddo {
    width: 284px;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.modal-footer-ddo {
    margin-bottom: 25px;
}

.moblie-only {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .announcements {
        margin-top: 10px;
    }

    .moblie-only {
        display: flex !important;
    }

    .menu-itemss a {
        padding: 0 10px;
    }
}

.header-gap {
    margin-top: 70px;
}

.ddo-adv {
    width: 100% !important;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 3px 14px 16px;
    gap: 8px;
    left: 12px;
    top: 1243px;
    border: 1px solid rgba(0, 116, 223, 1);
    border-radius: 8px;
}

    .ddo-adv .ddo-txt {
        color: #21323f;
        font-family: "Poppins";
        font-style: normal;
        font-weight: 400;
        font-size: 11px;
        line-height: 16px;
        display: flex;
        align-items: center;
        letter-spacing: 0.02em;
    }

    .ddo-adv .ddo-a {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        /* identical to box height */

        display: flex;
        align-items: center;
        letter-spacing: 0.02em;
        color: #1376bb;
    }

        .ddo-adv .ddo-a img {
            padding-left: 5px;
        }

.fitlter-buttons {
    display: flex;
    gap: 32px;
    align-items: center;
}

    .fitlter-buttons .clear-btn {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #1376bb;
        letter-spacing: 0.02em;
        cursor: pointer;
    }

    .fitlter-buttons .apply-btn {
        font-family: "Poppins", sans-serif;
        cursor: pointer;
        border: none;
        padding: 12px 16px;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #ffffff;
        background: #1376bb;
        border-radius: 64px;
        letter-spacing: 0.02em;
    }

sup {
    font-weight: normal;
    font-size: 10px;
}

.submenu-items > .cads-point {
    background: #1376bb;
    border-radius: 4px 4px 0 0;
}

    .submenu-items > .cads-point > a {
        font-weight: 400;
        font-size: 11px;
        line-height: 12px;
        color: #ffffff;
    }

        .submenu-items > .cads-point > a > .total-score > span {
            font-weight: 500;
            font-size: 16px;
            line-height: 20px;
            color: #ffffff;
        }

#learning-path-container {
    display: none !important;
}

.form-text > a {
    font-size: 1em;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.eye-slash {
    background: url("../image/show_eye.jpg") no-repeat 0 0;
    width: 21px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

    .eye-slash.hide {
        background: url("../image/hide_eye.jpg") no-repeat 0 0;
    }
