/********** Template CSS **********/
:root {
    --primary: #16eb18;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: var(--dark);
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--light);
    font-weight: 500;
    border-left: 3px solid var(--secondary);
    border-radius: 0 30px 30px 0;
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--dark);
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--secondary);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--light);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--light);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.content .navbar .dropdown-item {
    color: var(--light);
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

#bugger_xx {
    width: 80px;
    white-space: nowrap;
    text-overflow: ellipsis !important;
    overflow: hidden;
}

.box-fixed {
    float: left;
    width: 100%;
    height: 89.9%;
    position: relative;
    font-family: 'Plus Jakarta Sans';
}

.box-fixed .box-left {
    position: absolute;
    padding: 15px;
    left: 0;
    bottom: 0;
    top: 0;
    width: 350px;
    background-color: rgb(6, 8, 10);
    overflow: auto;
    border-right: 1px solid rgb(77, 89, 94);
}

.box-fixed .box-left ul {
    float: left;
    width: 100%;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 100%;
    row-gap: 10px;
}

.box-fixed .box-left ul li {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 6px;
}



.box-fixed .box-left ul li .right {
    color: black;
    position: relative;
}

.box-fixed .box-left ul li .right h3 {
    font-weight: 400;
    margin: 0;
    font-family: 'Plus Jakarta Sans';
    margin-bottom: 10px;
    font-size: 1rem;
    color: rgb(235, 242, 245);
}

.box-fixed .box-left ul li .right div {
    font-size: 12px;
    display: flex;
    justify-content: left;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
}

.box-fixed .box-left ul li .right div b {
    margin: 0px;
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: "Plus Jakarta Sans", sans-serif, "Spline Sans Mono", monospace;
    font-weight: 700;
    color: rgb(235, 242, 245);
}

.box-fixed .box-left ul li .right div p {
    margin: 0;
    width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: rgb(119, 135, 143);
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: "Plus Jakarta Sans", sans-serif, "Spline Sans Mono", monospace;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

.box-fixed .box-left ul li .left {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 500%;
}

.box-fixed .box-left ul li .left img {
    width: 45px;
    border-radius: 50%;
    height: 45px;
    object-fit: cover;
}

.box-fixed .box-left ul li .left b {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: green;
    position: absolute;
    bottom: 2px;
    right: 3px;
    border: 3px solid rgb(6, 8, 10);
}

.box-fixed .box-left ul li .right span {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 11px;
    color: rgb(156, 174, 184);
}

.box-fixed .box-left input {
    width: 100%;
    margin-bottom: 10px;
    height: 40px;
    border-radius: 6px;
    border: none;
    padding-inline: 10px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    background: rgb(27, 33, 36);
    color: rgb(235, 242, 245);
}

.box-fixed .box-main {
    position: absolute;
    padding: 15px;
    bottom: 0;
    right: 0;
    top: 0;
    left: 350px;
    background-color: rgb(6, 8, 10);
    overflow: auto;
}

.box-fixed .box-main .top-main {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 70px;
    display: flex;
    justify-content: left;
    padding-inline: 20px;
    align-items: center;
    background: rgb(6, 8, 10);
    border-bottom: 1px solid rgb(77, 89, 94);
}

.box-fixed .box-main .top-main h3 {
    font-size: 20px;
    color: rgb(156, 174, 184);
    font-family: 'Plus Jakarta Sans';
}

.box-fixed .box-main .top-main svg {
    position: absolute;
    right: 20px;
    background: rgb(27, 33, 36);
    padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.box-fixed .box-main .box-list {
    position: absolute;
    top: 70px;
    bottom: 100px;
    left: 0;
    right: 0;
    overflow: auto;
    background-color: rgb(6, 8, 10);
    padding-inline: 50px;
    padding-block: 20px;
}

.box-fixed .box-main .box-list .right,
.box-fixed .box-main .box-list .left {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    position: relative;
}

.box-fixed .box-main .box-list .right {
    padding-left: 30%;
}

.box-fixed .box-main .box-list .left {
    padding-right: 30%;
}


.box-fixed .box-main .box-list b {
    margin: 0;
    width: 100%;
    float: left;
    font-weight: 400;
    margin-top: -10px;
    font-size: 12px;
    font-family: 'Plus Jakarta Sans';
}

.box-fixed .box-main .box-list .right .msg {
    float: right;
    width: 100%;
    background: rgb(88, 155, 243);
    color: rgb(10, 27, 48);
    border-radius: 16px 0px 16px 16px;
}

.box-fixed .box-main .box-list .right b {
    text-align: right;
}

.box-fixed .box-main .box-list .left .msg {
    float: left;
    width: 100%;
    background: rgb(27, 33, 36);
    color: rgb(235, 242, 245);
    border-radius: 0px 16px 16px 16px;
}

.box-fixed .box-main .box-list .msg {
    padding: 15px;
    font-family: 'Plus Jakarta Sans';
    font-size: 0.875rem;
}

.box-fixed .box-main .bottom-main {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-inline: 20px;
    gap: 20px;
    border-top: 1px solid rgb(77, 89, 94);
}

.box-fixed .box-main .bottom-main div {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    background: rgb(27, 33, 36);
    padding-inline: 20px;
    border-radius: 8px;
    padding-block: 15px;
}

.box-fixed .box-main .bottom-main textarea {
    width: 100%;
    background: rgb(27, 33, 36);
    resize: none;
    margin: 0;
    outline: none;
    border: none;
    overflow: hidden;
    font-weight: 500;
    color: rgb(235, 242, 245);
    font-size: 16px;
}

.box-fixed textarea::placeholder,
.box-fixed input::placeholder {
    color: rgb(77, 89, 94);
}

.box-fixed .box-main .bottom-main button {
    background: rgb(38, 45, 48);
    color: rgb(119, 135, 143);
    border: none;
    padding-inline: 20px;
    padding-block: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
    font-weight: 600;
}


.box-fixed .box-left ul li.active {
    background: rgba(88, 155, 243, 0.24);
}

.box-fixed .box-left ul li:hover {
    background: #111417;
}

.top-art-5 {
    float: left;
    margin-bottom: 20px;
}

.top-art-5 .hh3 {
    float: left;
    width: 100%;
    font-size: 15px;
    margin-bottom: 20px;
}


.top-art-5 .long-first {
    width: 100%;
    float: left;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.top-art-5 .long-first div {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

.top-art-5 .long-first div label {
    float: left;
    white-space: nowrap;
    font-size: 14px;
}

.form-data {
    width: 80%;
    float: left;
    display: grid;
    grid-template-columns: 1fr 320px;
    column-gap: 20px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-inline: 10%;
}


.form-data .card-1 .form-bx {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    background-color: #191C24 !important;
    padding: 20px;
}

.form-data .card-1 .form-bx .view_form {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    column-gap: 20px;
    float: left;
    width: 100%;
}

.form-data .card-1 .form-bx .long {
    float: left;
    width: 100%;
    margin-bottom: 12px;
}

.form-data .card-1 .form-bx .long-x {
    grid-column: span 2;
}

.form-data .card-1 .form-bx .long-x .table-x {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
}

.form-data .card-1 .form-bx .long-x .table-x .line {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    border-bottom: 1px solid rgb(158, 158, 158);
}

.form-data .card-1 .form-bx .long-x .table-x .line div {
    border: 1px solid rgb(158, 158, 158);
    display: flex;
    justify-content: left;
    align-items: center;
    padding-inline: 20px;
    font-weight: 600;
    border-right: none;
    border-bottom: none;
}

.form-data .card-1 .form-bx .long-x .table-x .line div:nth-child(even) {
    border-top: none;
}

.form-data .card-1 .form-bx .long-x .table-x .line div.center {
    justify-content: center;
}

.form-data .card-1 .form-bx .long-x .table-x .line span {
    border: 1px solid rgb(158, 158, 158);
    text-align: center;
    border-bottom: none;
}

.form-data .card-1 .form-bx .long-x .table-x .line input {
    border: 1px solid rgb(48 48 48);
    border-bottom: none;
    background: rgb(25 28 36);
    border-radius: 0;
    height: 30px;
    text-align: center;
    font-weight: 600;
}

.form-data .card-1 .form-bx .input {
    float: left;
    width: 100%;
    position: relative;
}

.form-data .card-1 .form-bx h2 {
    text-align: center;
    font-size: 20px;
    grid-column: span 2;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

.form-data .card-1 .form-bx .input span {
    position: absolute;
    right: 10px;
    top: 12px;
    font-weight: 600;
    font-size: 13px;
}

.form-data .card-1 .form-bx .btn {
    grid-column: span 2;
}

.form-data .card-1 .form-bx button {
    padding-inline: 40px;
    height: 45px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50px;
    background: rgba(50, 89, 232, 1);
    color: rgb(255, 255, 248);
    font-weight: 500;
    font-size: 14px;
    float: left;
    margin-top: 10px;
}

.form-data .card-1 .form-bx .short {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    margin-bottom: 12px;
}

.form-data .card-1 .form-bx .short-x {
    column-gap: 10px;
}

.form-data .card-1 .form-bx label {
    float: left;
    width: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 13px;
}

.form-data .card-1 .form-bx input,
.form-data .card-1 .form-bx select,
.form-data .card-1 .form-bx textarea {
    width: 100%;
    height: 40px;
    padding-inline: 10px;
    border: 1px solid rgb(52, 52, 52);
    border-radius: 6px;
    color: rgb(210 210 210);
    outline: none;
    background: #242833;
    float: left;
    white-space: nowrap;
}

.form-data .card-1 .form-bx textarea {
    padding-block: 10px;
    white-space: wrap;
    overflow: hidden;
    resize: none;
}

.form-data .card-1 .form-bx .textarea {
    height: 60px;
}

.form-data .card-1 .form-bx input:focus,
.form-data .card-1 .form-bx select:focus,
.form-data .card-1 .form-bx textarea:focus {
    border: 2px solid rgba(50, 89, 232, 1);
    background: #191C24 !important;
    ;
}

.form-data .card-1 .title {
    float: left;
    text-align: left;
    font-size: 22px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

.form-data .card-1 .title svg {
    cursor: pointer;
}

.form-data .card-2 {
    width: 100%;
}

.form-data .card-2 ul {
    float: left;
    width: 100%;
    list-style-type: none;
    font-size: 14px;
}

.form-data .card-2 ul li {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.form-data .card-2 ul li div {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid rgb(215, 212, 212);
    display: flex;
    justify-content: left;
    align-items: center;
}

.form-data .card-2 ul li span {
    margin-left: 10px;
}

.form-data .card-2 ul li div svg {
    display: none;
}

.form-data .card-2 ul li.active div svg {
    display: block;
    fill: rgb(255, 255, 255);
    stroke-width: 1px;
    stroke: rgb(255, 255, 225);
}

.form-data .card-2 ul li.active div {
    background: rgba(50, 89, 232, 1);
    border: none;
}

.form-data .card-2 .plan {
    background-color: #191C24 !important;
    float: left;
    padding: 20px;
    width: 100%;
}

.form-data .card-2 .plan h3 {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}