body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@import url(https://fonts.googleapis.com/css?family=Audiowide);

@media (min-width: 1200px) {
    .container {
        max-width: 1224px;
    }
}

.pos-relative {
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

.sidebar {
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
}

.sidebar-left {
    height: 100%;
    color: var(--sidebar-text);
    background: var(--sidebar-bg);
    min-width: 250px;

    transform: translateX(-100%);
    animation: slideInFromLeft 300ms ease-in-out forwards;
}

@keyframes growRight {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.sidebar-right {
    height: 100%;
    flex: 1;
}

.container {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

.top-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 15px 10px 15px;
}

.logo-part {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rotate-270 {
    transform: rotate(270deg);
}

.expand-button {
    user-select: none;
    background: transparent;
    border-radius: 5px;
    border: 1px solid var(--border-strong);
    cursor: pointer;
    width: 32px;
    height: 32px;
    transition: 0.2s;
    color: var(--text-primary);
}

.expand-button:hover {
    background: var(--bg-tertiary);
}

.center-container {
    padding: 5px 15px 5px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--sidebar-text);
}


.center-hover {
    background: var(--sidebar-active) !important;
    color: #ffffff !important;
}

.main-func {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.center-item {
    color: var(--sidebar-text);
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.center-item:hover {
    background: var(--sidebar-hover);
    color: var(--text-primary);
}

.social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 25px;
}

.social-container svg {
    color: var(--text-muted);
}

.sidebar-footer {
    padding: 15px;
    font-size: 11px;
}

.sidebar-footer a {
    color: var(--text-muted);
    text-decoration: none;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
}

.bottom-container {
    background: var(--sidebar-bg);
    border-top: 1px solid var(--border-color);
}

.login-footer {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 10px 20px;
}

.login-footer .sign-a {
    width: 46%;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
    text-align: center;
    padding: 5px;
}

.high-light-a {
    background-color: #2871de !important;
    border: 1px solid #2871de !important;
    color: #ffffff !important;
}

.flex-1 {
    flex: 1;
}

header .navbar-brand {
    font-size: 1.4em;
    font-weight: 200;
    font-family: "Audiowide", cursive;
}

.nav-item {
    margin-left: 15px;
    border-radius: 5px;
}

.nav-item:hover {
    background: var(--bg-hover);
}

.markdownx .markdownx-editor {
    border-style: none solid solid solid;
    width: 100%;
    margin-bottom: 25px;
}

.page-header {
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-header h1 {
    margin: 0;
    font-weight: 100;
    font-size: 2em;
}

.no-data {
    text-align: center;
    padding: 1em 0;
}

button:focus {
    outline: 0px;
}

.sign-in-button {
    display: flex;
    align-items: center;
    margin-left: 10px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0);
    padding: 3px 6px;
    border-radius: 6px;
}

.sign-in-button:hover {
    background: var(--bg-hover);
}

.sign-a {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    font-size: 16px !important;
    font-weight: normal !important;
}

.sign-a:hover {
    text-decoration: none;
}

.sign-in-button>a {
    color: var(--text-primary) !important;
    text-decoration: none;
}

.sign-up-button {
    display: flex;
    align-items: center;
    margin-left: 10px;
    background: rgba(40, 113, 222, 1);
    border-radius: 6px;
    padding: 3px 6px;
}

.sign-up-button:hover {
    background: rgba(76, 142, 241, 1);
}

.sign-up-button>a {
    color: white !important;
    text-decoration: none;
}

.navbar-right {
    display: flex;
    justify-content: end;
}

#notifications {
    font-size: 1.2em;
    padding: 0px;
    color: var(--text-secondary);
}

#notifications.new-notifications {
    color: #428bca;
}


.alert-debug {
    color: black;
    background-color: white;
    border-color: #d6e9c6;
}

.alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.popover {
    max-width: 350px;
    width: 350px;
}

.popover ul {
    padding: 0;
    margin: 0;
}

.popover ul li {
    list-style: none;
    border-bottom: 1px solid var(--border-color);
    padding: .4em 0;
}

.popover ul li:last-child {
    border-bottom: none;
}

.popover ul li .user-picture {
    width: 45px;
    float: left;
}

.popover ul li p {
    font-size: .9em;
    padding: 0 0 0 .6em;
    margin-left: 45px;
    margin-bottom: 0;
}

mark {
    white-space: nowrap;
    background: rgba(0, 0, 0, 0);
    background-image: linear-gradient(to right, #2871de, #27aadc);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    padding: 0px;
}

.space-wrap {
    white-space: normal !important;
}

.blur-div {
    position: absolute;
    border-radius: 50%;
    top: 75px;
    left: 50%;
    width: 1000px;
    max-width: 100%;
    transform: translateX(-50%);
    height: 158px;
    background: linear-gradient(91deg, #29025B 47.22%, #EAAFFF 110.53%);
    filter: blur(100px);
    z-index: 0;
    user-select: none;
    content: "";
    pointer-events: none;
}

.intro-background {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(200, 237, 245, 0.5) 100%);
    min-height: 80vh;
}

.intro-background-rv {
    background-image: linear-gradient(to bottom, rgba(149, 226, 243, 1), rgba(255, 255, 255, 1));
}

.blur-background {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

a.nav-link {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 0px;
    color: var(--text-primary);
}

.space-between {
    display: flex;
    justify-content: space-between;
}

nav.navbar {
    border-bottom: 1px solid var(--navbar-border);
    width: 100vw;
    padding: 2px 15px;
}

a.navbar-logo {
    margin-right: 0.5rem;
    display: inline-block;
}

.u-click {
    pointer-events: none;
}

.ssp-font {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.account-menu {
    right: 0;
    left: auto;
}


.height-150 {
    height: 150px;
}

.bg-black {
    background-color: #312B41;
}

.margin-0 {
    margin: 0px;
}

.margin-top-1 {
    margin-top: 1rem !important;
}

.pad-0 {
    padding: 0px;
}

.pad-5 {
    padding: 5px;
}

.pad-10 {
    padding: 10px;
}

.pad-t-2 {
    padding-top: 2px;
}

.pad-t-5 {
    padding-top: 5px;
}

.pad-t-10 {
    padding-top: 10px;
}

.pad-t-20 {
    padding-top: 20px;
}

.pad-tb-2 {
    padding-top: 2px;
    padding-bottom: 2px;
}

.pad-tb-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pad-tb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pad-tb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.pad-tb-20 {
    padding: 20px 0px !important;
}

.padding-tb-30 {
    padding: 30px 0px !important;
}

.padding-tb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.pad-b-5 {
    padding-bottom: 5px;
}

.pad-b-10 {
    padding-bottom: 10px;
}

.p-t-30 {
    padding-top: 30px;
}

.pad-tb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}


.p-t-50 {
    padding-top: 50px !important;
}

.p-t-100 {
    padding-top: 100px !important;
}

.padding-bottom-50 {
    padding-bottom: 50px !important;
}

.padding-bottom-6rem {
    padding-bottom: 6rem;
}

.padding-lr-5 {
    padding: 0px 5px 0px 5px;
}

.padding-lr-10 {
    padding: 0px 10px;
}

.padding-lr-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.padding-lr-50 {
    padding: 0px 50px;
}

.m-t-20 {
    margin-top: 20px;
}

.mar-0 {
    margin: 0px;
}

.mar-l-5 {
    margin-left: 5px;
}

.mar-l-8 {
    margin-left: 8px;
}

.mar-l-10 {
    margin-left: 10px;
}

.mar-b-10 {
    margin-bottom: 10px;
}

.mar-b-20 {
    margin-bottom: 20px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-l-15 {
    margin-left: 15px;
}

.mar-tb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}


.margin-l-5 {
    margin: 0px 0px 0px 5px;
}

.margin-r-5 {
    margin: 0px 5px 0px 0px;
}

.margin-t-20 {
    margin-top: 20px;
}

.margin-lr-15 {
    margin: 0px 15px 0px 15px !important;
}

.margin-tb-10 {
    margin: 10px 0px !important;
}

.margin-tb-20 {
    margin: 20px 0px;
}

.margin-tb-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.margin-tb-60 {
    margin: 60px 0px;
}

.margin-tb-80 {
    margin: 80px 0px;
}

.margin-tb-100 {
    margin: 100px 0px;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.gap-5px {
    gap: 5px;
}

.gap-10px {
    gap: 10px;
}

.gap-20px {
    gap: 20px;
}

.h-line-bb {
    height: 1px;
    border-bottom: 1px solid var(--border-color) !important;
}

.text-gray-900 {
    color: var(--text-primary);
}

.text-gray-700 {
    color: var(--text-secondary);
}

.font-11 {
    font-size: 11px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-15 {
    font-size: 15px;
}

.font-normal {
    font-weight: normal;
}

.body-component {
    margin: 0rem 0rem 6rem 0rem;
    z-index: 1;
    position: relative;
}

.font-semibold {
    font-weight: 700;
}

.text-justify {
    text-align: justify;
}

.text-small {
    font-size: 0.8rem;
    line-height: 1.0rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
}

.text-3xl {
    font-size: 1.2rem;
    line-height: 2.5rem;
    font-weight: bold;
}

.normal-weight {
    font-weight: normal;
}

.white-text {
    color: white;
}

.gray-text {
    color: var(--text-muted);
}

.text-align-center {
    text-align: center !important;
}

.circle-s {
    font-size: 0.8rem;
    line-height: 1.0rem;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #474358;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.dl-div {
    margin-top: 2rem;
}

.aligned-span {
    text-align: justify;
    /* Căn đều về cả hai phía */
    display: block;
}

.center-text {
    text-align: center;
}

.border-radius-5 {
    border-radius: 5px;
}

.border-radius-10 {
    border-radius: 10px;
}

.bg-light-gray {
    background-color: #F4F4F4;
}

.bg-light-blue {
    background-color: #DBEAFE;
}

.bg-orange {
    background-color: #FFEDD5;
}

.bg-light-green {
    background-color: #DCFCE7;
}

.bg-white {
    background-color: white;
}

.footer-component {
    border-top: 1px solid var(--border-color);
    padding: 5px 25px 0px 25px;
    display: flex;
    justify-content: space-between;
}

.footer-component h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
    padding: 10px 0px;
    user-select: none;
    margin-bottom: 0px;
}

.footer-li {
    padding: 10px 0px;
    flex: 0 0 auto;
    width: 100%;
}

.footer-li a {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
    list-style-type: none;
    text-decoration: none !important;
}

.footer-li a:hover {
    color: var(--text-muted);
}

.svg-twitter {
    color: var(--text-secondary);
}

.svg-twitter:hover {
    color: #1DA1F2;
}

.svg-linkedin {
    color: var(--text-secondary);
}

.svg-linkedin:hover {
    color: #0077B5;
}

.svg-facebook {
    color: var(--text-secondary);
}

.svg-facebook:hover {
    color: #1977F3;
}

.svg-instagram {
    color: var(--text-secondary);
}

.svg-instagram:hover {
    color: #C32AA3;
}

.svg-youtube {
    color: var(--text-secondary);
}

.svg-youtube:hover {
    color: #D9252A;
}

.dropdown-content {
    width: inherit;
    overflow: auto;
    box-shadow: var(--shadow-md);
    z-index: 3;
    position: absolute;
    top: 100%;
    border-radius: 8px;
    font-size: 0.88rem;
    background-color: var(--dropdown-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hide {
    display: none !important;
}

.my-dropdown-item {
    flex-wrap: nowrap;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-content: center;
    width: 100%;
    transition: 0.2s;
}

.my-dropdown-item:hover {
    padding: 12px 20px;
}

.my-dropdown-item span {
    background-color: rgba(0, 0, 0, 0);
    padding: 0px 10px !important;
    pointer-events: none
}

.small-text span {
    font-size: 0.825rem !important;
    font-weight: 500 !important;
}

.small-text:hover span {
    font-size: 0.85rem !important;
    font-weight: bold !important;
}

.medium-text span {
    font-size: 0.95rem !important;
    font-weight: bold !important;
}

.medium-text:hover span {
    font-size: 1rem !important;
    font-weight: bold !important;
}

.align-left {
    position: absolute;
    left: 0px;
}

.align-right {
    position: absolute;
    right: 0px;
}

.super-center {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center !important;
    justify-content: center !important;
}

.use-case-item {
    margin-top: 10px;
}

.use-case-img {
    border-radius: 15px;
    width: 100%;
}

.pad-x {
    flex: 0 1 auto
}

.pad-y {
    flex: 1 0 auto
}

.svg-button {
    border: 0px;
    margin: 0px;
    padding: 0px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    animation: animate 0.8s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #343a40;
    border-radius: 50%;
}

.line-progress {
    background: rgba(0, 0, 0, 0);
    background-image: linear-gradient(to right, #2871de, #27aadc);
}

.circle-loading {
    position: absolute;
    z-index: 100;
    width: 58px;
    height: 58px;
    text-align: center;
}

.circle-loading span {
    padding: 3px;
    font-size: 12px;
    user-select: none;
}

.circle-loading>div {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.circle-loading .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.circle-loading .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.circle-btn {
    border-radius: 60px;
}

.svg-button.btn-l {
    width: 50px;
    height: 50px;
}

.svg-button.btn-m {
    width: 30px;
    height: 30px;
}

.svg-ml {
    width: 36px;
    height: 36px;
    margin-right: 2px;
}

.svg-m {
    width: 26px;
    height: 26px;
    margin-right: 2px;
}

.svg-sm {
    width: 18px;
    margin-right: 0px;
}

.svg-s {
    width: 16px;
    height: 16px;
    margin-right: 0px;
}

.svg-n {
    width: 12px;
    height: 12px;
    margin-right: 0px;
}

.svg-20 {
    width: 20px;
    height: 20px;
}

.svg-16 {
    width: 16px;
    height: 16px;
}

.gray-svg {
    stroke: #64748b;
}

.gray-svg:hover {
    stroke: #000000;
}

.white-svg {
    stroke: #ffffff;
    fill: #ffffff;
}

.white-svg:hover {
    stroke: #cccccc;
    fill: #cccccc;
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-white {
    background-color: #ffffff;
    border-color: #ffffff;
}

.m-t-55 {
    margin-top: 55px;
}

.height-220 {
    height: 220px;
}

.height-180 {
    height: 180px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.cursor-default {
    cursor: default !important;
}

.title {
    text-align: center;
    margin-top: 150px;
}

.paragraph {
    margin: 20px 0px 20px 0px;
}

.para-header h2 {
    font-size: 1.5rem;
}

.para-content {
    text-align: justify;
}

.para-content>p {
    text-indent: 0em;
}

button.confirm {
    background-color: #2871de !important;
}

.para-container {
    padding-left: 200px;
    padding-right: 200px;
}

.para-container>img {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.error-container {
    padding-top: 80px;
    height: 85vh;
}

.height-10vh {
    height: 10vh;
}

.height-25vh {
    height: 25vh;
}

.form-control {
    font-size: 14px;
}

.success {
    color: #28a745;
}

.btn-primary {
    color: #fff;
    background-color: #2871de;
    border-color: #2871de;
}

.btn-primary:hover {
    color: #fff;
    background-color: #4c8ef1;
    border-color: #4c8ef1;
}

.swal2-popup {
    border-radius: 20px;
}


.mtooltip {
    position: relative;
}

.mtooltip .tooltiptext {
    visibility: hidden;
    color: #E6E6E6;
    font-size: 13px;
    font-weight: normal;
    position: absolute;
    white-space: nowrap;
    pointer-events: none;

    background-color: #333333;
    z-index: 2;
    left: calc(100% + 10px);
    top: calc(50%);
    transform: translateY(-50%);
    padding: 3px 6px;
    border-radius: 6px;
}

.mtooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #333333 transparent transparent;
}

.mtooltip:hover .tooltiptext {
    visibility: visible;
}

.width-fit-content {
    width: fit-content;
}

.width-50p {
    width: 50%;
}

.form-control:focus {
    box-shadow: 0px 0px 1px rgba(88, 88, 88, 0.88);
}

.navbar-toggler:focus {
    box-shadow: none;
}

button.navbar-toggler:hover {
    background: var(--bg-tertiary);
}

.footer-links {
    max-width: 680px;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }

    .paragraph {
        padding: 0px 10px 0px 10px;
    }

    .mobile-padding-lr-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .mobile-padding-lr-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .mobile-margin-lr-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .height-220 {
        height: 200px !important;
    }

    .para-container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (max-width: 500px) {
    .height-220 {
        height: 168px !important;
    }

    .end-footer-item {
        display: flex !important;
        justify-content: center !important;
    }

    .footer-li a {
        font-size: 15px;
    }

    .footer-component h2 {
        font-size: 15px;
    }
}

[data-bs-theme="light"] .blur-div {
    background: linear-gradient(90deg, #beff8380 47.22%, #ffc107 110.53%);
    opacity: 0.68;
}