* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-y: hidden;
    font-family: "Roboto", serif;
}

.navbar li a {
    color: white;
}

.navbar .dropdown-menu a {
    color: black;
}

#phoneNavbar {
    display: none;
}

#desktopNavbar .navbar-nav .nav-link.active-nav {
    color: black;
}

/* Button Setting */
/* Button Styles */
.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition:
        background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.3s ease,
        box-shadow 0.4s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.button-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(110, 142, 251, 0.4),
            rgba(167, 119, 227, 0.4));
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.button-content::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    z-index: -1;
}

.button-content:hover::before {
    opacity: 1;
}

.button-content:hover::after {
    transform: scale(1);
}

.button-content:hover {
    background: linear-gradient(135deg, #a777e3, #6e8efb);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px) scale(1.03);
}

.button-content:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.text {
    font-size: 13px;
    font-weight: 600;
    margin-right: 12px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: letter-spacing 0.3s ease;
}

.button-content:hover .text {
    letter-spacing: 1px;
}

.share-icon {
    fill: white;
    transition:
        transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        fill 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.button-content:hover .share-icon {
    transform: rotate(180deg) scale(1.1);
    fill: #ffffff;
}

@media(max-width: 768px) {
    .button-content {
        padding: 10px 20px;
        font-size: 12px
    }

    .button-content .text {
        font-size: 12px;
    }

    .homepageIframe {
        transform: scale(0.229);
    }
}

/* Homepage Setting */
#pages_table {
    position: relative;
    border-radius: 20px;
}

#editorHtmlData {
    display: none;
}

#htmlCss_box {
    display: flex;
    justify-content: center;
}

#previewFrame {
    width: 100%;
    height: calc(100vh - 50px);
    padding-left: 63px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
}


.masonry-container .card {
    position: relative;
    text-decoration: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

.masonry-container #information-box {
    position: absolute;
    display: flex;
    gap: 5px;
    top: 0;
    right: 0;
}

.masonry-container #information-box i {
    background-color: white;
    width: 30px;
    height: 30px;
    border-radius: 0 0 0 10px;
    box-shadow: -1px 1px 0px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.masonry-container .card:hover {
    box-shadow: unset;
    transform: translateY(10px);
}

.masonry-container .card span {
    font-weight: 500;
    text-transform: uppercase;
}

.masonry-container {
    column-count: 4;
    column-gap: 1.5rem;
    padding: 30px 15px;
    /* Spacing between columns */
}

.masonry-item {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.masonry-item img {
    width: 100%;
    /* Make images responsive */
    display: block;
    /* Avoid extra space caused by inline-block */
}

.accordion-button[aria-expanded="true"] {
    color: #0c63e4;
    background-color: #e7f1ff;
}

.accordion-button {
    border: 1px solid rgba(0, 0, 0, .125);
}

/* Home page */


/* Selected Page */
.massege-display-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.recentEdit_page {
    padding: 30px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.recentEdit_page .card {
    flex-basis: calc(33.33% - 22.5px);
    border: unset;
}

.recentEdit_page .img_box {
    position: relative;
    border: 10px solid white;
    height: 270px;
    overflow: hidden;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
}

.recentEdit_page .img_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.recentEdit_page .img_box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#pages_table .card-title {
    color: black;
    padding: 5px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 16px;
    text-transform: uppercase;
    flex-basis: calc(100% - 2.5px) !important;
}

/* Toggle input */

.main_custom_box {
    height: 20px;
    margin: auto 8px auto 0;
}

.control_box {
    margin-top: auto;
}

.main_custom_box input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    display: none;
}

.main_custom_box input[type=checkbox]:checked+label {
    background: #bada55;
}

.main_custom_box input[type=checkbox]:checked+label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

.main_custom_box label {
    cursor: pointer;
    text-indent: -9999px;
    width: 40px;
    height: 20px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
}

.main_custom_box label:after {
    content: '';
    position: absolute;
    top: 2.5px;
    left: 2px;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.main_custom_box label:active:after {
    width: 10px;
}

/* Selected Page */


/* Pages Setting */
#pages_table thead .col-3 {
    width: 20%;
}

#pages_table thead .col-6 {
    width: 50%;
}

#pages_table thead .col-4 {
    width: 50%;
}

#pages_table #section_container {
    max-height: calc(100vh - 145px);
    overflow-y: auto;
}

/* Editor Setting */
.reponsiveChanges {
    position: absolute;
    top: 0;
    left: 0;
}

.accordion-item {
    border: unset;
}

.accordion-item .badge {
    margin-left: 10px !important;
}

.ql-container.ql-snow {
    background-color: #eeeeee;
}

.tool-outer-box {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

#restoreBackup::before,
#btnOpenModal::before,
#savePageButton::before,
#versionControl::before,
#backPageButton::before,
#goToHomepage::before,
#undoButton::before,
#redoButton::before,
#translate_box::before {
    position: absolute;
    content: "Edit";
    font-size: 12px;
    padding: 5px 5px 5px 15px;
    width: 55px;
    left: 23%;
    top: 10px;
    opacity: 0;
    visibility: hidden;
}

#restoreBackup::before {
    content: "Restore";
    width: 65px;
}

#goToHomepage::before {
    content: "Home";
}

#undoButton::before {
    content: "Undo";
}

#redoButton::before {
    content: "Redo";
}

#savePageButton::before {
    content: "Save";
    padding-left: 20px;
    width: 75px;
}

#versionControl::before {
    content: "Restore";
    padding-left: 20px;
    width: 75px;
}

#translate_box::before {
    content: "Language";
}

.swal2-container.swal2-center {
    overflow-y: hidden !important;
}
.swal2-container .swal2-show {
    padding-bottom: 5px;
}
.swal2-container .swal2-actions {
    margin-top: unset;
}

#image_data_box {
    gap: 10px;
    max-height: calc(100vh - 476px);
    overflow-y: auto;
    padding-bottom: 10px;
}

.fastEdit_img_component #image_data_box {
    max-height: 320px;
    overflow-x: hidden;
    overflow-y: auto;
}

.fastEdit_img_component .img_box img, #image_data_box .img_box img {
    width: 100%;
    height: 80px;
}

.pressToEditBox .fast_edit_button {
    padding: 5.5px 15px;
    cursor: not-allowed;
    opacity: 0.5;
}

#image_data_box .img_box {
    flex-basis: calc(33.33% - 7px);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.1);
}

#image_data_box .img_box img {
    object-fit: contain;
}

#image_data_box .img_box {
    position: relative;
}

#image_data_box .img_box i {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: black;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    font-size: 18px;
    opacity: 0;
    width: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#image_data_box .img_box i span {
    font-size: 12px;
    font-style: normal;
}

#image_data_box .img_box:hover i {
    opacity: 1;
}

#image_data_box .img_box:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
}

#img_title_box h3 {
    font-size: 16px;
    margin-top: 50px;
}


/* #restoreBackup:hover::before,
#btnOpenModal:hover::before,
#savePageButton:hover::before,
#versionControl:hover::before,
#backPageButton:hover::before,
#goToHomepage:hover::before,
#undoButton:hover::before,
#redoButton:hover::before {
    opacity: 1;
    visibility: visible;
} */


/* Toast Setting */
.toast-container {
    right: unset !important;
    bottom: unset !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#success-toast-message #liveToast {
    border: 1px solid #69ff00;
}

#success-toast-message .toast-body {
    background-color: #75BA45;
    color: white;
}

#failed-toast-message #liveToast {
    border: 1px solid #ff0000;
}

#failed-toast-message .toast-body {
    background-color: #EA4B4B;
    color: white;
}

/* Icon Setting */
#searchContentBtn {
    padding: 0;
    border: unset;
    background-color: unset;
}

#searchContentBtn img {
    width: 30px;
    height: auto;
    filter: opacity(0.6);
}

.search-box {
    width: 100%;
    height: fit-content;
    position: relative;
}


.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: black;
    background-color: transparent;
    pointer-events: painted;
}

.btn-search~.input-search {
    width: 100%;
    border-radius: 0px;
    padding: 10px;
    border: unset;
    border-bottom: 1px solid black;
    background-color: transparent;
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}


/* Image Setting */
#tag-main .img-fluid {
    height: 200px;
    object-fit: contain;
}

[id^="tag-main"] div.btn {
    border: 1px solid lightblue;
    padding: 10px !important;
    background-color: #eeeeee;
}

.tag-content-box {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#pages_table tbody #action_box img {
    width: 25px;
}

/* Text Setting */
#pages_table .table td p {
    background-color: #b1b1b1;
    color: #000000;
    border-radius: 50px;
    font-size: 13px;
    padding: 5px 10px;
}

.component-settings img {
    width: 100%;
    height: 180px !important;
    padding: 10px;
    border: 1px solid lightblue;
    border-radius: 8px;
    height: auto;
    object-fit: contain;
}
.fastEdit_img_component .component-settings img {
    height: 200px;
}

.component-settings.fastEdit_img_component img {
    height: 200px;
}

.component-settings .img-size-box span {
    font-size: 13px;
}

/* Button Setting */
#component_settings .back-to-components img {
    width: 15px;
}

/* CK Editor */
.ck-content.ck-editor__editable {
    min-height: 400px !important;
}

/* Quill Editor */
.ql-color .ql-picker-options [data-value=color-picker] {
    position: relative;
    display: block !important;
    width: 100% !important;
    background-color: white !important;
    border: 1px solid black !important;
    padding: 10px !important;
}

.ql-color .ql-picker-options [data-value=color-picker]::before {
    position: absolute;
    content: 'Pick Color';
    font-size: 12px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
}

/* Toast Setting */
#toast-box .toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#toast-box .toast {
    border: 2px solid #26bd4f !important;
    background-color: rgb(233 250 237 / 86%) !important;
}

#toast-box .toast-header {
    background-color: unset !important;
}

#toast-box .toast-header strong {
    color: black !important;
}


/* Navbar Setting */
#navbar {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.top_title {
    display: inline-block;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bolder;
    color: black;
    text-align: center;
    letter-spacing: 2px;
    padding-left: 15px;
}

#user-box.navbar-nav .nav-link {
    color: black;
}

#user-box.navbar-nav .nav-link:hover {
    color: #0066cb;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #6b6b6b;
}

.navbar-nav .nav-item a {
    text-align: center;
}

#navbar .navbar-nav .nav-item i {
    font-size: 25px;
}


.homepageIframe {
    border-radius: 15px;
    width: 1663px;
    height: 118vh;
    transform: scale(0.275);
    transform-origin: 0px 0px;
}

.homepageIframe html {
    overflow: hidden;
}

#homepage .card-body {
    background-color: rgba(0, 0, 0, 0.1);
}

#homepage .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: black;
}

#homepage .navbar .container-fluid {
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    margin-bottom: auto;
}

#homepage .navbar-nav {
    flex-direction: column !important;
    gap: 15px;
}

.navbar-brand {
    margin: unset;
    text-align: center;
    text-wrap: wrap;
    width: 110px;
    font-weight: 900;
}

#homepage .navbar-brand {
    border-bottom: 1px solid #6b6b6b;
    padding-bottom: 15px;
}

#homepage #manage-box {
    margin-top: 70px;
}

#homepage #navbar-child .navbar-nav {
    text-align: left;
}

.navbar-brand img {
    width: 50px;
    height: 50px;
}

.navbar-brand span {
    font-size: 13px;
    color: #6b6b6b;
    text-transform: uppercase;
}

.navbar-collapse {
    margin-top: 20px;
    justify-content: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link span {
    font-size: 13px;
}

/* Navbar child */
#navbar-child {
    position: sticky;
    text-align: center;
    top: 0;
    left: 0;
    height: 100vh;
    width: 220px;
    padding: 15px;
}

#navbar-child .navbar-nav {
    padding-top: 20px;
}

#navbar-child .navbar-nav .btn:focus {
    box-shadow: unset;
}

#navbar-child .navbar-nav .nav-item.activeNav,
#navbar-child .navbar-nav .nav-item:hover {
    background-color: white;
    border-radius: 5px;
    border-color: black;
    box-shadow: 0 0 0 1px black;
}

#phoneNavbar #navbar-child .nav-item {
    padding: 10px;
}

#navbar-child .navbar-nav .nav-item.activeNav button span,
#navbar-child .navbar-nav .nav-item:hover button span {
    color: black;
}

#navbar-child .navbar-nav button span {
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
    color: #6b6b6b;
}

#navbar-child .close-btn {
    width: 100%;
    text-align: right;
}

.fade-right {
    animation: fade-right 0.3s ease-in-out;
}

.fade-out-right {
    animation: fadeOutRight 0.3s ease-in-out forwards;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-15%);
    }
}

@keyframes fade-right {
    from {
        opacity: 0;
        transform: translateX(-15%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navbar Setting */



/* Sitebar Setting */
.fixed-top,
#layoutSidenav_nav,
.sb-nav-fixed .sb-topnav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

#layoutSidenav {
    display: flex;
}

#layoutSidenav_nav .page-nav {
    margin-top: 9px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

#layoutSidenav_nav {
    flex-basis: 225px;
    flex-shrink: 0;
    transition: transform 0.15s ease-in-out;
    z-index: 1038;
    transform: translateX(-225px);
}

#layoutSidenav #layoutSidenav_content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    flex-grow: 1;
    min-height: calc(100vh - 56px);
    background-color: rgba(0, 0, 0, 0.1);
    /* margin-left: -225px; */
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
    transform: translateX(0);
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1037;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}


.nav .nav-link .sb-nav-link-icon,
.sb-sidenav-menu .nav-link .sb-nav-link-icon {
    margin-right: 0.5rem;
}

.sidenav-special {
    width: auto;
}

.sb-sidenav-full-width {
    width: 260px;
}

.sb-nav-fixed .navbar-expand .navbar-nav {
    margin-left: auto !important;
}

.sb-topnav {
    padding-left: 0;
    height: 65px;
    z-index: 1039;
}

.sb-topnav .navbar-brand {
    /* width: 225px; */
    width: 100%;
    margin: 0;
}

.sb-topnav.navbar-dark #sidebarToggle {
    color: rgba(255, 255, 255, 0.5);
}

.sb-topnav.navbar-light #sidebarToggle {
    color: #212529;
}

.sb-sidenav {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-wrap: nowrap;
}

.sb-sidenav .sb-sidenav-menu {
    flex-grow: 1;
}

.sb-sidenav .sb-sidenav-menu .sidebar_icon_box {
    background-color: #fff !important;
    border-right: 1px solid #dfe5eb;
    gap: 10px;
}

.sb-sidenav .sb-sidenav-menu .nav {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 10px;
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
    padding: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #d7d7d7;
}

.sb-sidenav .sb-sidenav-menu .nav .site_menu_content {
    height: calc(100% - 48.8px);
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link {
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: relative;
    color: black;
    font-size: 13px;
}


.site_menu_items_box .site_menu, .site_menu_items_box .site_sub_menu{
    position: relative;
    display: block;
    padding: 10px;
    width: 100%;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}


.site_menu_items_box .site_menu_box, .site_sub_menu_box {
    position: relative;
    padding-left: 10px;
}
.site_menu_items_box .site_menu_box .icon_box, .site_sub_menu_box .icon_box {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.site_sub_menu_box::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #3498db;
    z-index: 2;
}


.site_menu_items_box div.mb-2 {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.site_menu_items_box div.mb-2::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #d6e6fe;
    z-index: 1;
}


.sb-sidenav .sb-sidenav-menu .site_menu_items_box .nav-link:hover, .sb-sidenav .sb-sidenav-menu .nav-link:hover, .sb-sidenav .page-nav .left_side_content_box li a:hover {
    background-color: #d6e6fe !important;
    color: #0057e1 !important;
}

.sb-sidenav .sb-sidenav-menu .site_menu_items_box>div a {
    display: flex !important;
    justify-content: space-between;
    gap: 5px;
}

.sb-sidenav .sb-sidenav-menu .site_menu_items_box>div a i {
    font-size: 10px;
}

.sb-sidenav .page-nav .right_side_content_box {
    flex-basis: calc(70%);
    padding: 15px 15px 0 15px;
    gap: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 130px);
}


.sb-sidenav .page-nav .homepage_banner_box {
    flex-direction: column;
}
.sb-sidenav .page-nav .homepage_banner_box .banner_box {
    position: relative;
    width: 100%;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
    max-height: 150px;
}
.sb-sidenav .page-nav .homepage_banner_box .banner_box:hover {
    box-shadow: unset;
    transform: translateY(2px);
}

.sb-sidenav .page-nav .homepage_banner_box .banner_box a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sb-sidenav .page-nav .site_page_box {
    display: none;
}

.page-nav .left_side_content_box {
    flex-basis: calc(30%);
}

/* Start Card Setting */
.pages_outer_box {
    display: none;
    background-color: white;
}

.nav.page-nav {
    width: 100%;
}


/* Container Styles */
.tooltip-container {
    position: relative;
    display: inline-block;
    font-family: "Arial", sans-serif;
    overflow: visible;
}

.homepageIframe body {
    overflow: hidden;
    position: relative;
}

.homepageIframe body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

/* End Card Setting */



.sb-sidenav .page-nav .left_side_content_box ul {
    flex-direction: column;
    text-align: left;
    height: 100%;
    padding: 15px 15px 0 15px;
    background-color: #f7f8f8;
    border-right: 1px solid #dfe5eb;
}

.sb-sidenav .page-nav .left_side_content_box li {
    list-style-type: none;
}

.sb-sidenav .page-nav .left_side_content_box li a {
    display: block;
    color: black;
    margin: 0 0 10px;
    font-size: 12px;
    text-align: center;
    padding: 7px 5px;
    font-weight: 500;
    border-radius: 30px;
}

.sb-sidenav .page-nav .left_side_content_box li a.active_link {
    background-color: #d6e6fe;
    color: #0057e1;
    border-radius: 30px;
}


.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
    font-size: 0.9rem;
    color: black;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
    display: inline-block;
    margin-left: auto;
    color: black;
    transition: transform 0.15s ease;
    margin-left: 10px;
}

.sb-sidenav .sb-sidenav-menu #collapsePages {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    width: 90%;
    margin-left: 10px;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
    transform: rotate(-90deg);
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
    margin-left: 1.5rem;
    flex-direction: column;
}

.sb-sidenav .sb-sidenav-footer {
    padding: 0.75rem;
    flex-shrink: 0;
}

.sb-sidenav-dark {
    background-color: #212529;
    color: rgba(255, 255, 255, 0.5);
}

.sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
    color: black;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
    color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
    color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover,
.sb-sidenav-dark .sb-sidenav-menu .nav-link:focus {
    background-color: grey;
    color: white;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover svg,
.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover i,
.sb-sidenav-dark .sb-sidenav-menu .nav-link:focus svg,
.sb-sidenav-dark .sb-sidenav-menu .nav-link:focus i {
    color: white;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
    color: black;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
    color: black;
}

.sb-sidenav-dark .sb-sidenav-footer {
    background-color: #343a40;
}

.sb-sidenav-light {
    background-color: #f8f9fa;
    color: #212529;
}

.sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
    color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link {
    color: #212529;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
    color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
    color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
    color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active {
    color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
    color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-footer {
    background-color: #e9ecef;
}

.sb-nav-fixed .sb-topnav {
    background-color: white !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.sb-topnav .navbar-brand,
.sb-topnav.navbar-dark #sidebarToggle {
    color: black !important;
    font-weight: 700;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #4e4e4e;
}

@media (min-width: 992px) {
    #layoutSidenav_nav {
        transform: translateX(0);
    }

    #layoutSidenav #layoutSidenav_content {
        margin-left: 0;
        transition: margin 0.15s ease-in-out;
    }

    .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
        transform: translateX(-225px);
    }

    .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
        margin-left: -225px;
    }

    .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
        display: none;
    }
}

.sb-nav-fixed .sb-topnav {
    z-index: 1039;
}

#layoutSidenav_nav {
    max-width: 0;
    height: 100vh;
    z-index: 1038;
}

#layoutSidenav_nav .sb-sidenav {
    padding-top: 56px;
}

#layoutSidenav_nav #media_manage_box .d-flex.flex-wrap {
    gap: 15px;
    max-height: calc(100vh - 185px);
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}

#layoutSidenav_nav #media_manage_box div .img_box {
    flex-basis: calc(50% - 7.5px);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

#layoutSidenav_nav #media_manage_box div .img_box img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    background-color: #e5e5e5;
}


#layoutSidenav_nav #media_manage_box .upload_img_box button {
    background-color: rgb(139, 61, 255);
    padding: 10px;
    width: 100%;
    color: white;
    font-size: 13px;
    margin: 15px 0;
}

/*#layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
        overflow-y: auto;
    }*/

.sb-nav-fixed #layoutSidenav #layoutSidenav_content {
    padding-left: 60px;
    top: 56px;
}

.changing_site_menu {
    max-width: 445px;
}

/*Sitebar Setting*/


/* Add Theme Page */
.add_theme_section.container {
    max-width: 100% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.add_theme_section #information-tab-pane .information_inner_box {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.add_theme_section #information-tab-pane .right_outer_box {
    border: 5px solid rgba(0, 0, 0, 0.3);
    border-style: dashed;
    height: 100%;
    flex-basis: calc(35% - 2.5rem);
    height: 100%;
}

.add_theme_section #information-tab-pane .left_outer_box {
    flex-basis: calc(65% - 2.5rem);
}

.add_theme_section #information-tab-pane .right_outer_box img {
    height: auto;
    width: 100%;
}

.add_theme_section #html-tab-pane,
.add_theme_section #style-tab-pane {
    margin: 100px 0 20px;
}

.add_theme_section label {
    font-size: 12px;
}

.add_theme_section .form-floating>label {
    left: 15px;
}

.add_theme_section #section_code,
.add_theme_section #style_code,
.add_theme_section #html_code {
    min-height: 300px;
}

/* Text Setting */
.hint_add_component_box {
    color: white;
    background-color: #b6b6b6;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 10px 10px 0;
    border-bottom: unset;
    border-radius: 5px 5px 0 0;
}

.title_name {
    font-size: 12px;
    margin: 0;
    font-weight: 700;
}

/* Alert Setting */
.alert.alert-primary {
    margin-bottom: 0;
    padding: 11px;
    font-size: 13px;
    border-radius: 8px 8px 0 0;
}

.alert.alert-primary .bi {
    height: 15px;
    width: 17px;
}

@media(max-width:768px) {
    .add_theme_section #information-tab-pane {
        margin: 60px 0;
    }

    .add_theme_section #information-tab-pane .information_inner_box {
        flex-wrap: wrap;
    }

    .add_theme_section #information-tab-pane .left_outer_box,
    .add_theme_section #information-tab-pane .right_outer_box {
        flex-basis: 100%;
    }

    .add_theme_section.container {
        position: unset;
        transform: unset;
    }

    .add_theme_section #html-tab-pane,
    .add_theme_section #style-tab-pane {
        margin: 25px 0;
    }

    /* Navbar */
    #deviceSelector {
        display: none;
    }

    #image_data_box .img_box {
        flex-basis: calc(50% - 7px);
    }
}

/* Add Theme Page */


/* 
label {
    font-weight: 700;
    margin-bottom: 10px;
} */


/* Original Theme */
.edit_form_section h1 {
    font-size: 30px;
    font-weight: 800;
    color: white;
}

.add_theme_section.edit_form_section h1 {
    color: black;
    font-size: 15px;
    margin: 0 10px 10px;
}

/* Selection Page */
.selection_page {
    padding-bottom: 50px;
}

.selection_page .container-fluid {
    max-width: 1200px;
}

.selection_page .img_box {
    position: relative;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.15);
    transition: 0.5s ease-in-out;
}

.selection_page .content_outer_box {
    margin-bottom: 5%;
    padding: 0 30px;
}

.selection_page .img_box::-webkit-scrollbar {
    width: 5px;
}

.selection_page .img_box::-webkit-scrollbar-track {
    border: 1px solid #dfdfdf;
    padding: 2px 0;
    width: 10px;
    background-color: #dfdfdf;
    border-radius: 15px;
}

.selection_page .img_box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #737272;
    border: 1px solid #737272;
}

/* Edit Form */
#sel_editor_form .card.card-body {
    border: unset;
    padding: 0px 15px 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.loading-button .loader {
    width: 20px;
    height: 20px;
    border: 3px solid #767171;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#editorNav {
    position: sticky;
    height: 65px;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    padding-right: 15px !important;
    z-index: 1060;
}

#editorNav .navbar-collapse {
    margin-top: unset;
    flex-grow: unset !important;
}

#editorNav .navbar-nav {
    gap: 5px;
}

#editorNav .navbar-nav li img {
    width: 25px;
    height: 25px;
}

#editorNav .navbar-nav li .btn {
    font-size: 20px;
}

#editorNav .navbar-nav li .btn.bi-pen-fill {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    -webkit-background-clip: text;
    background-clip: text;
}

#editorNav .navbar-nav li #update_notification {
    font-size: 12px;
    font-weight: 900;
    cursor: default;
}

#editorNav .navbar-nav li #update_notification #readyToApplyChange {
    color: grey;
}

.warningToApply {
    color: white !important;
    background-color: red;
    padding: 5px 10px;
    border-radius: 5px;
}

#editorNav .navbar-nav li #update_notification #appliedChanges {
    color: green;
    padding: 5px 10px;
}

#editorNav .navbar-nav li:hover .btn,
#deviceSelector .btn:hover {
    color: #0066cb;
}

#editorNav .navbar-nav li {
    font-size: 15px;
    margin: auto 0;
    cursor: pointer;
}


#editorNav .navbar-nav #undoButton,
#editorNav .navbar-nav #redoButton {
    display: flex;
    align-items: center;
    opacity: 0.5;
    cursor: not-allowed;
}


#editorNav .navbar-nav #redoButton img {
    transform: scaleX(-1);
}

#editorNav .nav_icon {
    padding-left: 15px;
    margin-right: 20px;
    padding-left: 15px;
    margin-right: 20px;
}

#editorNav .nav_icon img {
    width: auto;
    max-height: 50px;
}

/* Card Setting */
.selection_page .content_outer_box .card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.selection_page .card {
    border: unset;
    position: relative;
}

.selection_page .button {
    width: 35px;
    height: 35px;
}

.selection_page .button:hover {
    animation: doidoi_animation 0.5s ease-in-out;
}

.selection_page .card .theme_btn_box .button img {
    width: 100%;
}

/* Icon Setting */
@keyframes doidoi_animation {

    0%,
    100% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}


/* Loading animation */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #333;
    font-weight: bold;
    z-index: 9999;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

#rightModal .img-box .backgroundColorSetting::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9998;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section_title {
    margin: 30px 0 !important;
    text-align: center;
    background-color: lightsteelblue;
    padding: 10px;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
}

.edit_form_section>.row {
    position: relative;
    width: 100%;
}

.edit_form_section p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.edit_form_section .form-control {
    border-color: black;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}


.add_theme_section.edit_form_section .form-control {
    background-color: unset;
    color: black;
}

.content_inner_box {
    display: flex;
}

.content_inner_box .content_box {
    gap: 10px;
}

.content_inner_box .content_box .card-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    margin-bottom: 0;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

.img_class {
    width: 100%;
    margin-bottom: 30px;
}

/* All Components */
.all_components #cancel_component.btn,
.all_components #save_component.btn,
#save_specific_component.btn {
    width: 35px;
    padding: 0;
}

.all_components .btn img {
    width: 100%;
}

.all_components .edit_box {
    padding: 0 10px;
}

.all_components #cancel_component img {
    background-color: white;
    border-radius: 50%;
}

.all_components .modal-header {
    position: relative;
}

#sel_editor_form .listing_box .btn {
    padding: 10px;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 15px;
    display: flex;
    gap: 5px;
    background-color: #e9e9e9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.35s ease-in-out;
    text-align: left;
}

#sel_editor_form .listing_box .btn:hover {
    box-shadow: unset;
    transform: translateY(5px);
}

#sel_editor_form .listing_box .btn .img_box {
    width: 20px;
    margin-left: auto;
}

#sel_editor_form .form-control {
    border-color: rgba(0, 0, 0, 0.3);
}

/* Input Setting */
.all_components textarea {
    min-height: 200px !important;
}


[data_id^="np_editor_"].selected {
    border: 2px solid black;
}

[data_id^="np_editor_"]:hover {
    border: 2px solid black !important;
}

/* Button Setting */
.all_components #cancel_component {
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: 1;
}

.btn_box {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: flex;
    gap: 15px;
    transition: 0.5s ease-in-out;
    z-index: 1050;
}

.btn_box.open_edit_form {
    opacity: 0;
}

.theme_btn_box {
    display: flex;
    justify-content: end;
    gap: 5px;
}

/* Edit Button */
#edit_icon {
    position: relative;
    cursor: pointer;
    position: absolute;
    left: -15px;
    top: -15px;
    transition: 0.3s ease-in-out;
}

#edit_icon img {
    display: block;
    width: 20px;
    height: 20px;
}

#edit_icon:hover {
    filter: drop-shadow(2px 2px 2px black);
    transform: translateY(-5px);
}

/* .border_selected {
        position: relative;
    }
    .border_selected::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid black;
    } */



/* Loading Effect */
.spinner {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Right Side Edit form */
#mySidenav {
    position: fixed;
    width: 0;
    right: -10%;
    top: 0;
    height: 100%;
    transition: 0.5s linear;
    overflow-y: unset;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#edit_box {
    position: fixed;
    top: 10px;
    right: 10px;
    transition: 0.5s ease-in-out;
    z-index: 1;
}

#edit_box.close_edit_box {
    right: -10%;
}

#edit_box img {
    width: 25px;
}

#tagBox option {
    min-height: 250px;
    padding: 10px;
    font-size: 16px;
}

.edit_form_section .cancel_edit_box {
    position: fixed;
    width: auto;
    top: 0%;
}

.edit_form_section .cancel_edit_box a {
    cursor: pointer;
    display: block;
    width: 50px;
}

.edit_form_section .cancel_edit_box a img {
    width: 100%;
}

#mySidenav.edit_form_section.open_edit_style {
    width: 100%;
    overflow-y: auto;
    opacity: 1;
    border-radius: 15px;
    right: 0%;
    z-index: 2;
}

.close_edit_style {
    width: 0%;
    overflow-y: unset;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    right: -10%;
    z-index: 0;
}

/* edit form */
#inputGenerateForm .col-md-6:nth-child(n+2) label {
    margin: 20px 0 10px;
}


/* Edit selected form */
.pickr .pcr-button {
    height: 1.3em !important;
    width: 2.5em !important;
    padding: 0.5em !important;
}

/* .pickr .pcr-button::after, .pickr .pcr-button::before {
    border-radius: 50% !important;
} */
/* [id^="color_pickr_"] */


/* Navbar Setting */

#sidebarToggle,
#sideManagePage {
    margin: 10px;
    padding: 0;
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.company_box {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.company_box img {
    width: auto;
    max-height: 50px;
}

#theme_top_nav {
    position: sticky;
    top: 0;
    left: 0;
    height: 75px;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(5px);
    z-index: 1050;
}

#myTab {
    height: 100%;
    align-content: end;
}

#theme_top_nav .nav-item .nav-link {
    color: white;
}

#theme_top_nav .nav-item .nav-link.active {
    color: black;
}

#main-nav {
    position: sticky;
    padding: 20px 0 !important;
    margin-bottom: 50px;
    height: 75px;
    top: 0;
    left: 0;
    color: white !important;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(5px);
    z-index: 1050;
    /* background-color: #ff6f4a !important; */
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.10' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}

#main_nav .app-logo {
    flex: 0 0 25px;
    width: 40px;
    height: 40px;
    align-self: center;
}

#main_nav_logo_wrapper {
    color: white;
    text-decoration: none;
}


/* End Navbar */


/* Code Editor */
.container-device-changes {
    max-width: 375px !important;
}

#editor_ace,
#editor_ace_sytle,
#editor_ace_add_theme,
#editor_add_theme_sytle {
    min-height: 600px;
    width: 100% !important;
    border: 1px solid #ccc;
}

#myTabContent .ace-monokai .ace_print-margin {
    left: 0 !important;
}

/* End Code Editor */


/* Partial Setting */
#liveAlertPlaceholder {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

/* Responsive */
@media(max-width:992px) {

    /* Navbar Setting */
    #main-nav {
        height: 100px;
    }

    .navbar-toggler-icon {
        filter: brightness(20);
    }

    /* Navbar Setting */


    .recentEdit_page {
        padding: 30px 5px;
        gap: 15px;
    }

    .recentEdit_page .card {
        flex-basis: calc(50% - 10px);
    }

    /* Navbar Setting */
    .collapse:not(.show) {
        display: flex;
    }
}

@media(max-width:768px) {


    #homepage .top_title {
        margin: 15px 0 0;
    }

    /* Original Theme */
    .edit_form_section h1 {
        font-size: 4vw;
    }

    #inputGenerateForm .col-md-6:nth-child(1) {
        margin-bottom: 20px;
    }

    .theme_btn_box {
        flex: 0 0 100%;
    }

    /* Navbar Setting */

    .company_box {
        flex: 0 0 70%;
    }

    #user-box {
        justify-content: end;
    }

    #layoutSidenav #layoutSidenav_content {
        justify-content: center !important;
    }


    #desktopNavbar {
        display: none;
    }

    .recentEdit_page .card {
        flex-basis: 100% !important;
    }

    .recentEdit_page .card-title {
        font-size: 12px;
        flex-basis: calc(100% - 2.5px) !important;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: end;
        width: 100%;
        padding: 10px 0;
        gap: unset;
    }

    #restoreBackup,
    #btnOpenModal,
    #savePageButton,
    #versionControl,
    #backPageButton,
    #goToHomepage,
    #undoButton,
    #redoButton,
    #translate_box {
        position: relative;
    }

    #restoreBackup::before,
    #btnOpenModal::before,
    #savePageButton::before,
    #versionControl::before,
    #backPageButton::before,
    #goToHomepage::before,
    #undoButton::before,
    #redoButton::before,
    #translate_box::before {
        background-color: unset;
        color: black;
        visibility: visible;
        opacity: 1;
        left: unset;
        text-align: left;
        padding: 5px 20px 5px 5px;
        width: 50px;
        right: 55px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        align-items: center;
    }

    .navbar .container-fluid {
        flex-direction: unset;
        padding-right: 15px !important;
    }

    .collapse:not(.show) {
        display: none;
    }

    .navbar-collapse {
        display: flex;
        justify-content: center;
    }

    .navbar-toggler {
        margin-left: auto;
        color: #a5a5a5 !important;
        border-color: #c3c3c3 !important;
        border: 2px solid;
    }

    .navbar-brand {
        font-size: 11px;
    }

    /* Card Setting */
    .main_custom_box label {
        width: 30px;
        height: 15px;
    }

    .main_custom_box label:after {
        width: 10px;
        height: 10px;
    }

    .main_custom_box {
        height: 15px;
    }

    .recentEdit_page .img_box {
        height: 165px;
    }
}
