@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 280px;
    transition: all 0.3s;
    width: 250px;
    height: 100vh;
    border-right: 0.4px solid #969696;
    background: #fff;
    z-index: 999;
}

@media only screen and (max-width: 768px) {
    .sidebar {
        position: absolute;
        width: 100%;
        transform: translateX(-100%);
    }
}

@media only screen and (max-width: 480px) {
    .sidebar {
        max-width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .sidebar.collapsed {
        width: 72px;
    }
}

@media only screen and (max-width: 768px) {
    .sidebar.active {
        width: 100%;
        transform: translateX(0);
    }
}

.sidebar-container {
    width: 100%;
    height: 100%;
}

.sidebar-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-header {
    width: 100%;
    border-bottom: 1px solid #969696;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header .logo-md {
    width: 135.561px;
    height: 57.319px;
    display: block;
}

.sidebar-header .logo-md img {
    width: 100%;
    height: 100%;
}

.sidebar-header .logo-sm {
    display: none;
    width: 35.781px;
    height: 57.319px;
}

.sidebar-header .logo-sm img {
    width: 100%;
    height: 100%;
}

.sidebar-header .sidebar-close {
    font-size: 30px;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .sidebar-header .sidebar-close {
        display: none;
    }
}

.sidebar-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 68px 20px;
}

.sidebar-content .nav {
    display: flex;
    flex-direction: column;
    row-gap: 33px;
    padding: 0 !important;
}

.sidebar-content .nav .nav-item {
    width: 100%;
}

.sidebar-content .nav .nav-item .nav-link {
    padding: 0 !important;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.sidebar-content .nav .nav-item .nav-link svg {
    width: 15px;
}

.sidebar-content .nav .nav-item .nav-link span {
    color: #919191;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.09px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: 1;
    transition: 0.8s;
    font-feature-settings: "liga" off, "clig" off;
}

.sidebar-content .nav .nav-item .nav-link.active {
    height: 47px;
    padding: 10px !important;
    border-radius: 12px;
    background: #e4e7ff;
}

.sidebar-content .nav .nav-item .nav-link.active svg clipPath rect {
    fill: #387ff8;
}

.sidebar-content .nav .nav-item .nav-link.active svg path {
    fill: #387ff8;
}

.sidebar-content .nav .nav-item .nav-link.active span {
    color: #387ff8;
}

.sidebar-content .sidebar-btn-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.sidebar-content .sidebar-btn-group .toggle-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
}

.sidebar-content .sidebar-btn-group .toggle-btn img {
    transform: rotate(180deg);
}

@media only screen and (max-width: 768px) {
    .sidebar-content .sidebar-btn-group .toggle-btn {
        display: none;
    }
}

.sidebar-content .sidebar-btn-group .logout-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.sidebar-content .sidebar-btn-group .logout-btn span {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.09px;
}

.sidebar-footer {
    width: 100%;
    border-top: 1px solid #969696;
    padding: 24px 20px 36.29px 20px;
}

.sidebar-footer-inner {
    display: flex;
    align-items: center;
    -moz-column-gap: 11px;
    column-gap: 11px;
}

@media only screen and (min-width: 768px) {
    .sidebar.collapsed .sidebar-header .logo-md {
        display: none;
    }

    .sidebar.collapsed .sidebar-header .logo-sm {
        display: block;
    }

    .sidebar.collapsed .sidebar-content .nav .nav-item .nav-link {
        justify-content: center;
    }

    .sidebar.collapsed .sidebar-content .nav .nav-item .nav-link svg {
        width: 20px;
    }

    .sidebar.collapsed .sidebar-content .nav .nav-item .nav-link.active {
        height: 27px;
        padding: 0px !important;
        border-radius: 0;
        background: transparent;
    }

    .sidebar.collapsed .sidebar-content .nav .nav-item .nav-link span {
        display: none;
        opacity: 0;
    }

    .sidebar.collapsed .sidebar-content .sidebar-btn-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 35px;
    }

    .sidebar.collapsed .sidebar-content .sidebar-btn-group .toggle-btn img {
        transform: rotate(0deg);
    }

    .sidebar.collapsed .sidebar-content .sidebar-btn-group .logout-btn {
        width: 42px;
        padding: 10px !important;
    }

    .sidebar.collapsed .sidebar-content .sidebar-btn-group .logout-btn span {
        display: none;
    }

    .sidebar.collapsed .sidebar-footer span {
        display: none;
    }
}

.hamburger-menu {
    display: none;
    width: 100%;
}

.hamburger-menu i {
    font-size: 30px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
}

#content {
    width: calc(100% - 250px);
    margin-left: 250px;
    transition: all 0.3s;
}

@media only screen and (max-width: 768px) {
    #content {
        width: 100%;
        margin-left: 0;
    }
}

#sidebar.collapsed ~ #content {
    width: calc(100% - 72px);
    margin-left: 72px;
}

@media only screen and (max-width: 768px) {
    #sidebar.collapsed ~ #content {
        width: 100%;
        margin-left: 0;
    }
}

.page-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.page-header .search-bar {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .page-header .search-bar {
        display: none;
    }
}

.page-header .search-bar .search-bar-inner {
    width: 610px;
}

.page-header .search-bar .search-bar-inner .search-input {
    display: flex;
    width: 100%;
    padding: 10px 15px;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    background: #fff;
}

.page-header .search-bar .search-bar-inner .search-input input {
    border: none;
    outline: none;
    color: #979797;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.08px;
    padding: 0;
}

.page-header .search-bar .search-bar-inner .search-input input::-moz-placeholder {
    color: #979797;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.08px;
}

.page-header .search-bar .search-bar-inner .search-input input::placeholder {
    color: #979797;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.08px;
}

.page-header .search-bar .search-bar-inner .search-input input:focus {
    outline: none;
    box-shadow: none;
}

@media only screen and (max-width: 1024px) {
    .page-header .search-bar .search-bar-inner {
        width: 400px;
    }
}

@media only screen and (max-width: 768px) {
    .page-header .search-bar .search-bar-inner {
        width: 80%;
    }
}

.page-header .lang-dropdown .dropdown-menu {
    min-width: 76px;
}

.page-header .lang-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
}

.page-header .lang-dropdown .dropdown-item {
    display: flex;
    align-items: center;
}

.page-header .lang-dropdown .flag-icon {
    width: 20px;
    height: 20px;
    overflow: hidden;
    margin-right: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .lang-dropdown .flag-icon img {
    width: 100%;
    height: 100%;
}

.table-container {
    width: 100%;
    padding: 32px 25px;
    border-radius: 12px;
    background: #fff;
    margin-top: 32px;
    overflow: hidden;
}

.table-container .table-container-inner {
    width: 100%;
    max-height: 709px;
    overflow: auto;
}

.table-container .table-container-inner::-webkit-scrollbar-track {
    border-radius: 99px;
    background: #ececec;
}

.table-container .table-container-inner::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container .table-container-inner::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: #387ff8;
}

.table-container .table-container-inner .table {
    width: 100%;
    min-width: 892px;
    margin-bottom: 0 !important;
}

.table-container .table-container-inner .table .table-primary {
    --bs-table-bg: #387ff8 !important;
}

.table-container .table-container-inner .table .table-primary th {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 0.3px solid #fff;
}

.table-container .table-container-inner .table .table-primary th:nth-child(1) {
    border-radius: 8px 0px 0px 0px;
}

.table-container .table-container-inner .table .table-primary th:nth-last-child(1) {
    border-radius: 0px 8px 0px 0px;
}

.table-container .table-container-inner .table tr td img {
    cursor: pointer;
}

.modal.settings-modal .modal-dialog {
    max-width: 360px;
}

@media only screen and (max-width: 768px) {
    .modal.settings-modal .modal-dialog {
        max-width: var(--bs-modal-width);
    }
}

.modal.settings-modal .modal-dialog .modal-content .modal-header {
    justify-content: center;
    border-bottom: none;
}

.modal.settings-modal .modal-dialog .modal-content .modal-header .modal-title {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.modal#addCustomerModal .modal-dialog {
    max-width: 80%;
}

@media only screen and (max-width: 768px) {
    .modal#addCustomerModal .modal-dialog {
        max-width: var(--bs-modal-width);
    }
}

.modal .modal-dialog .btn-close {
    top: 30px;
    right: 30px;
    z-index: 555;
    cursor: pointer;
}

.modal .modal-dialog .modal-content .modal-header {
    justify-content: center;
    border-bottom: none;
}

.modal .modal-dialog .modal-content .modal-header .modal-title {
    color: #000;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.modal .modal-dialog .modal-content .modal-body label {
    color: rgba(130, 130, 130, 0.87);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.modal .modal-dialog .modal-content .modal-body input {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #c1c1c1;
}

.modal .modal-dialog .modal-content .modal-body .form-select {
    height: 52px;
    border: 1px solid #c1c1c1;
}

.modal .modal-dialog .modal-content .modal-body .position-relative {
    position: relative;
}

.modal .modal-dialog .modal-content .modal-body .bi {
    position: absolute;
    right: 12px;
    top: 68%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    color: #888;
}

.modal .modal-dialog .modal-content .modal-body .bi:hover {
    color: #555;
}

.modal .modal-dialog .modal-content button {
    min-width: 250px;
}

@media only screen and (max-width: 768px) {
    .modal .modal-dialog .modal-content button {
        min-width: 100%;
    }
}

.modal .modal-dialog .modal-content .modal-footer {
    border: 0;
}

.bootstrap-select .dropdown-menu li a span.check-mark {
    display: none;
}

.dropdown-menu-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #f9f9f9;
}

.dropdown-menu-footer .btn-reset {
    color: #007bff;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-menu-footer .btn-ok {
    background-color: #007bff;
    color: white;
}

.bootstrap-select .dropdown-menu li a {
    padding-left: 35px;
    position: relative;
    display: flex;
}

.bootstrap-select .dropdown-menu li a span.check-mark {
    display: none !important;
}

.bootstrap-select .dropdown-menu li a::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
}

.bootstrap-select .dropdown-menu li a.selected::before {
    content: "✓";
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 16px;
    background-color: #387ff8;
}

.bootstrap-select .inner.show {
    max-height: 155px !important;
}

.bootstrap-select .inner.show::-webkit-scrollbar-track {
    border-radius: 99px;
    background: #ececec;
}

.bootstrap-select .inner.show::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.bootstrap-select .inner.show::-webkit-scrollbar-thumb {
    border-radius: 9px;
    background: #387ff8;
}

.hidden-footer {
    display: none;
}

.sms-header-dropdown-1,
.sms-header-dropdown-2 {
    position: relative;
}

.sms-header-dropdown-1.bootstrap-select .dropdown-toggle:focus,
.sms-header-dropdown-2.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.sms-header-dropdown-1::before,
.sms-header-dropdown-2::before {
    content: "\f282";
    font-family: bootstrap-icons !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    text-rendering: auto;
    pointer-events: none;
    font-size: 16px;
}

.sms-header-dropdown-1 button,
.sms-header-dropdown-2 button {
    background-color: transparent;
    border: none;
}

.sms-header-dropdown-1 button .filter-option-inner-inner,
.sms-header-dropdown-2 button .filter-option-inner-inner {
    color: #fff;
    text-align: right;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 10px;
}

@media only screen and (max-width: 380px) {
    .sms-header-dropdown-1 button .filter-option-inner-inner,
    .sms-header-dropdown-2 button .filter-option-inner-inner {
        font-size: 16px;
    }
}

.sms-header-dropdown-1 button::after,
.sms-header-dropdown-2 button::after {
    display: none;
}

.sms-header-dropdown-1 button:hover,
.sms-header-dropdown-2 button:hover {
    background-color: transparent;
}

.sms-header-dropdown-1 button:focus, .sms-header-dropdown-1 button.show,
.sms-header-dropdown-2 button:focus,
.sms-header-dropdown-2 button.show {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.page-title-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .page-title-container {
        flex-direction: column;
    }
}

.page-title-container .page-title {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
}

.page-title-container .page-title-select-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title-container .page-title-select-group .select-box .dropdown {
    width: -moz-fit-content;
    width: fit-content;
}

.page-title-container .page-title-select-group .select-box .dropdown button {
    background-color: #fff;
}

@media only screen and (max-width: 768px) {
    .page-title-container .page-title-select-group .select-box .dropdown {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .page-title-container .page-title-select-group .select-box {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .page-title-container .page-title-select-group {
        flex-direction: column;
        width: 100%;
    }
}

.page-card {
    margin-top: 9px;
}

.page-card .page-card-container {
    border-radius: 12px;
    background-color: #fff;
    padding: 25px 0;
}

@media only screen and (max-width: 768px) {
    .page-card .page-card-container {
        padding: 25px;
    }
}

.page-card .page-card-container .page-card-inner {
    padding: 0 20px;
}

@media only screen and (max-width: 768px) {
    .page-card .page-card-container .page-card-inner {
        flex-direction: column-reverse;
        row-gap: 30px;
    }
}

.page-card .page-card-container .page-card-inner .table-filter-form {
    max-width: 825px;
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
}

@media only screen and (max-width: 768px) {
    .page-card .page-card-container .page-card-inner .table-filter-form .select-box {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .page-card .page-card-container .page-card-inner .table-filter-form .select-box .bootstrap-select {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .page-card .page-card-container .page-card-inner .table-filter-form button {
        width: 100%;
    }
}

.page-card .page-card-container .page-card-inner .page-card-add-btn {
    min-width: 141px;
    color: #fff;
    text-align: right;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.page-card .page-card-container .page-card-inner .page-card-add-btn span {
    font-size: 24px;
}

@media only screen and (max-width: 768px) {
    .page-card .page-card-container .page-card-inner .page-card-add-btn {
        width: 100%;
    }
}

.dropdown-menu-custom {
    width: 150px;
    z-index: 1000;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    display: none;
    position: absolute;
    transition: all 0.4s;
}

.dropdown-menu-custom.show {
    display: block;
}

.dropdown-menu-custom ul {
    padding: 10px 8px;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.dropdown-menu-custom ul li {
    list-style: none;
}

.dropdown-menu-custom ul li:hover {
    background-color: #ccc;
}

.dropdown-menu-custom ul li a {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    display: flex;
    -moz-column-gap: 4px;
    column-gap: 4px;
}

.login-page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(246deg, #dcc2fc 3.32%, #a4c6fc 92.9%);
}

.login-page .login-logo {
    width: 300px;
}

.login-page .login-logo img {
    width: 100%;
}

.login-page .login-card {
    width: 500px;
    height: 550px;
    padding: 77.5px 69.5px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #fdfdfd;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    row-gap: 64px;
}

@media only screen and (max-width: 768px) {
    .login-page .login-card {
        width: 90%;
    }
}

@media only screen and (max-width: 480px) {
    .login-page .login-card {
        padding: 50px 35px;
    }
}

.login-page .login-card-title {
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.login-page .login-card form input {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #c1c1c1;
    color: #979797;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-page .login-card form input::-moz-placeholder {
    color: #979797;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-page .login-card form input::placeholder {
    color: #979797;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-page .login-card form input:nth-child(1) {
    margin-bottom: 24px;
}

.login-page .login-card form label {
    color: rgba(130, 130, 130, 0.87);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
}

.login-page .login-card form button {
    display: flex;
    height: 56px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    margin-top: 64px;
}

.index-page {
    width: 100%;
    background-color: #f6f6f6;
    display: flex;
}

.index-page .page-body {
    width: 100%;
    min-height: 100vh;
    padding: 42px 70px;
}

@media only screen and (max-width: 1200px) {
    .index-page .page-body {
        padding: 42px 50px;
    }
}

@media only screen and (max-width: 1024px) {
    .index-page .page-body {
        padding: 42px 30px;
    }
}

@media only screen and (max-width: 768px) {
    .index-page .page-body {
        padding: 15px;
    }
}

.index-page .page-body .page-body-content {
    width: 100%;
}

.sms-container {
    width: 100%;
    padding: 32px 25px;
    border-radius: 12px;
    margin-top: 32px;
}

@media only screen and (max-width: 380px) {
    .sms-container {
        padding: 32px 20px;
    }
}

.sms-container .title {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media only screen and (max-width: 768px) {
    .sms-container .title {
        text-align: center;
    }
}

.sms-container .sms-header {
    max-width: 656px;
    width: 656px;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
    .sms-container .sms-header {
        width: auto;
    }
}

@media only screen and (max-width: 768px) {
    .sms-container .sms-header {
        flex-direction: column;
    }
}

.sms-container .sms-header .sms-header-dropdown-group {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .sms-container .sms-header .sms-header-dropdown-group {
        width: 100%;
        justify-content: space-between;
    }
}

.sms-container .sms-header .sms-header-dropdown-group .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto;
}

.sms-container .sms-container-inner {
    background-color: #fff;
    max-width: 656px;
    width: 656px;
    border-radius: 12px;
    padding: 22px 40px;
}

@media only screen and (max-width: 1200px) {
    .sms-container .sms-container-inner {
        width: auto;
    }
}

.sms-container .sms-container-inner form {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.sms-container .sms-container-inner form label {
    color: rgba(0, 0, 0, 0.87);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sms-container .sms-container-inner form input,
.sms-container .sms-container-inner form select,
.sms-container .sms-container-inner form textarea {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #777;
}

.sms-container .sms-container-inner form textarea {
    height: 116px;
}

.sms-container .sms-container-inner form .position-relative i {
    font-size: 18px;
    right: 10px;
    top: 67%;
    transform: translateY(-50%);
}

/*# sourceMappingURL=style.css.map */


::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.section-404 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-404 h1 {
    font-size: 66px;
    font-weight: bold;
}

.section-404 a {
    text-decoration: none;
    font-size: 18px;
    color: rgba(25, 106, 180, 1);
}

@media only screen and (max-width: 991px) {
    .section-404 h1 {
        font-size: 36px;
    }

    .section-404 a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    .section-404 h1 {
        font-size: 24px;
    }

    .section-404 a {
        font-size: 12px;
    }
}

.pagination .page-link {
    color: #0d6efd !important;
    background-color: #fff !important;
    width: 33px !important;
    border-color: #0d6efd !important;
}

.pagination .active span {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #fff !important;
}

.logo-img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 gray;
    transition: .3s all ease-in-out;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.logo-img img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.company-logo {
    width: 200px;
    display: block;
    margin-bottom: 50px;
}

.logo-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 5px 0 gray;
}

html {
    overflow-x: hidden;
}

.home-page {
    background: linear-gradient(246deg, #dcc2fc 3.32%, #a4c6fc 92.9%);
    width: 100vw;
    min-height: 100vh;
    padding: 50px;
}

.bg-danger-class {
    background-color: rgba(255, 0, 0, 0.8) !important;
    color: #fff !important;
}
