@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

.background-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    /* Optional spacing */
    background-image: linear-gradient(to right, #ffffff, #e5efea, #00000066);
}

.container {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.error-message {
    font-size: 12px;
    color: red;
}

.left-section {
    display: flex;
    padding: 0;
}

.viola-login-image {
    width: 100%;
}

.viola-logo {
    width: 180px;
}

.right-section {
    background-color: #f7f5f3;
}

.loginPage-heading {
    color: #2f2f2f;
    font-size: 20px;
    font-weight: 600;
}

.loginPage-text {
    color: #2f2f2f;
    font-size: 14px;
}

    .loginPage-text:hover {
        color: #2f2f2f;
    }

@media (max-width: 767px) {
    .loginPage-heading {
        font-size: 16px;
    }

    .loginPage-text {
        color: #2f2f2f;
        font-size: 12px;
    }
}

.forgot-password {
    color: #4c433a;
    font-size: 12px;
    font-weight: 600;
}

.remember-text {
    font-size: 12px;
    color: #4d453f;
}

.brown-button {
    background-color: #645a51;
    border: none;
    border-radius: 10px;
    width: max-content;
    font-size: 15px;
}

@media (max-width: 767px) {
    .brown-button {
        font-size: 12px;
    }
}

.brown-button:focus {
    outline: none;
}

.custom-input {
    background: #f3f3f3;
    border: 1px solid #d0c4bc4d;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #6d6259;
    box-shadow: none !important;
    padding-right: 45px !important;
}

    .custom-input::placeholder {
        color: #d0c4bc;
    }

    .custom-input:focus {
        background: #f3f3f3;
    }

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8179;
    font-size: 14px;
    cursor: pointer;
}

.otp-container {
    gap: 12px;
}

.otp-input {
    width: 35px;
    height: 35px;
    border: 1px solid #b5aea9;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    background: #fff;
}

    .otp-input:focus {
        border-color: #6b5f58;
    }

@media (max-width: 767px) {
    .otp-container {
        gap: 8px;
    }

    .otp-input {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

:root {
    --sidebar-width: 200px;
    --sidebar-collapse: 70px;
    --header-height: 70px;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
}

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f5f3f1;
}
.session-countdown {
    font-size: 42px;
    font-weight: 700;
    color: #8B5E3C;
    letter-spacing: 2px;
    margin: 10px 0 20px;
}

#sessionTimeoutModal .modal-content {
    border-radius: 18px;
}

#sessionTimeoutModal .modal-footer {
    padding-bottom: 25px;
}

#sessionTimeoutModal .modal-body {
    padding-top: 0;
}
.countdown-box {
    background: #F8F5F2;
    border: 1px solid #E7DED6;
    border-radius: 12px;
    padding: 14px 40px;
}

    .countdown-box span {
        font-size: 36px;
        font-weight: 700;
        color: #8B5E3C;
        letter-spacing: 2px;
    }
/* ===========================
   SIDEBAR
=========================== */

.sidebar {
    width: var(--sidebar-width);
    background: #ebe8e5;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1050;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #ddd;
    transition: all 0.35s ease;
}

    .sidebar.collapsed {
        width: var(--sidebar-collapse);
    }

/* ===========================
   LOGO
=========================== */

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-full {
    max-width: 95px;
    transition: 0.3s;
}

.logo-mini {
    width: 28px;
    display: none;
}

.sidebar.collapsed .logo-full {
    display: none;
}

.sidebar.collapsed .logo-mini {
    display: block;
}

/* ===========================
   MENU
=========================== */

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

    .sidebar-menu li {
        border-radius: 12px;
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }

        .sidebar-menu li a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px;
            font-size: 12px;
            text-decoration: none;
            color: #5d5651;
        }

        .sidebar-menu li:hover {
            background: #fff;
            transform: translateX(4px);
        }

        .sidebar-menu li.active {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

            .sidebar-menu li.active a {
                color: #000;
                font-weight: 600;
            }

        .sidebar-menu li i {
            min-width: 20px;
            font-size: 16px;
        }

.sidebar.collapsed .sidebar-menu span {
    display: none;
}

.sidebar.collapsed .sidebar-menu li a {
    justify-content: center;
}

.sidebar.collapsed .sidebar-menu li i {
    margin: 0;
    min-width: auto;
    font-size: 18px;
}

/* ===========================
   PROFILE
=========================== */

.logout-button {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    border: none;
    font-size: 16px;
    color: #4C433A;
    font-weight: bold;
}

    .logout-button:focus {
        outline: none;
    }


.logout-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #64584d;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-icon {
    width: 60px;
}

@media (max-width: 767px) {

    .logout-button {
        font-size: 14px;
    }

    .logout-circle {
        width: 22px;
        height: 22px;
    }

    .logout-icon {
        width: 30px;
    }
}

/* Logout button when sidebar collapsed */
.sidebar.collapsed .logout-button {
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0 auto;
    background: transparent;
    justify-content: center;
}

    .sidebar.collapsed .logout-button .logout-text {
        display: none;
    }

.sidebar.collapsed .logout-circle {
    margin-left: 0 !important;
}



.sidebar.collapsed .profile-info {
    display: none;
}

.sidebar.collapsed .profile-card {
    justify-content: center;
}

.sidebar-menu li a {
    overflow: hidden;
}

    .sidebar-menu li a span {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

/* ===========================
   MAIN WRAPPER
=========================== */

.main-wrapper {
    width: 100%;
    margin-left: var(--sidebar-width);
    transition: all 0.35s ease;
}

    .main-wrapper.expanded {
        margin-left: var(--sidebar-collapse);
    }

/* ===========================
   HEADER
=========================== */

.top-header {
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    height: var(--header-height);
    background: #f5f3f1;
    border-bottom: 1px solid #e4dfdb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    transition: all 0.35s ease;
}

    .top-header.expanded {
        left: var(--sidebar-collapse);
    }

/* ===========================
   TOGGLE
=========================== */

.toggle-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .toggle-btn i {
        font-size: 18px;
    }

/* ===========================
   SEARCH
=========================== */

.search-box {
    height: 42px;
    background: #efebe8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

    .search-box input {
        border: none;
        outline: none;
        background: transparent;
        width: 100%;
    }

    .search-box i {
        color: #888;
    }

/* ===========================
   CONTENT
=========================== */

.page-content {
    padding: 90px 20px 20px;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        width: 240px;
    }

        .sidebar.show {
            transform: translateX(0);
        }

    .main-wrapper {
        margin-left: 0 !important;
    }

    .top-header {
        left: 0 !important;
    }

    .sidebar.collapsed {
        width: 240px;
    }

        .sidebar.collapsed .sidebar-menu span,
        .sidebar.collapsed .profile-info {
            display: block;
        }

        .sidebar.collapsed .logo-full {
            display: block;
        }

        .sidebar.collapsed .logo-mini {
            display: none;
        }

        .sidebar.collapsed .sidebar-menu li a {
            justify-content: flex-start;
            padding: 8px;
        }
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

    .sidebar-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.vision-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.banner-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.green-status-badge {
    background: #e7f7e9;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.grey-status-badge {
    background: #e8e1dd;
    color: #4d453f;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.banner-type {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .banner-actions a {
        color: #5b504a;
        font-size: 18px;
        text-decoration: none;
    }

    .banner-actions .fa-trash-can {
        color: #d62828;
    }

.visibility-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visibility-text {
    font-size: 11px;
    color: #666;
}

/* Toggle */

.switch {
    position: relative;
    width: 46px;
    height: 24px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    inset: 0;
    background: #d7d1cc;
    border-radius: 50px;
    cursor: pointer;
}

    .slider:before {
        content: "";
        width: 18px;
        height: 18px;
        background: white;
        position: absolute;
        left: 3px;
        top: 3px;
        border-radius: 50%;
        transition: 0.3s;
    }

.switch input:checked + .slider {
    background: #6a5d55;
}

    .switch input:checked + .slider:before {
        transform: translateX(22px);
    }

/* Responsive */

@media (max-width: 991px) {
    .banner-actions {
        width: 100%;
        justify-content: space-between;
    }
}

.banner-image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    .banner-image-overlay img {
        display: block;
        width: 100%;
        border-radius: 12px;
    }

    .banner-image-overlay::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.18);
        border-radius: 12px;
    }

.inactive-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
}

/* Modal Size */
.modal-dialog {
    max-width: 900px !important;
    width: 95% !important;
    margin: 1rem auto;
}

/* Modal Container */
.custom-banner-modal {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

    /* Header */
    .custom-banner-modal .modal-header {
        padding: 16px 24px;
        flex-shrink: 0;
    }

    /* Scrollable Body */
    .custom-banner-modal .modal-body {
        padding: 20px 24px;
        overflow-y: auto;
        max-height: calc(90vh - 140px);
    }

    /* Footer */
    .custom-banner-modal .modal-footer {
        padding: 8px 12px;
        flex-shrink: 0;
    }

/* Mobile */
@media (max-width: 768px) {
    .modal-dialog {
        width: 98% !important;
        margin: 10px auto;
    }

    .custom-banner-modal .modal-header,
    .custom-banner-modal .modal-body,
    .custom-banner-modal .modal-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .custom-banner-modal .modal-body {
        max-height: calc(90vh - 120px);
    }
}

.modal-title {
    font-size: 16px;
}

.popup-labl-text {
    font-size: 14px;
}

.btn-link {
    font-size: 16px;
}

@media (max-width: 767px) {
    .popup-labl-text {
        font-size: 12px;
    }

    .btn-link {
        font-size: 12px;
    }
}

.upload-box {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.upload-preview {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.change-image-btn {
    border: none;
    background: transparent;
    color: #666;
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.modal-dialog {
    max-width: 1100px;
}

.editor {
    overflow: hidden;
}

.ql-toolbar.ql-snow {
    border: 1px solid #e4e4e4;
    border-bottom: none;
    background: #fafafa;
    padding: 10px;
    border-radius: 4px 4px 0 0;
}

.ql-container.ql-snow {
    border: 1px solid #e4e4e4;
    border-radius: 0 0 4px 4px;
}

.ql-editor {
    height: 90px !important;
    min-height: 90px;
    max-height: 90px;
    overflow-y: auto;
    font-size: 14px;
    padding: 0.375rem 0.75rem !important;
    color: #495057 !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ql-toolbar button:hover {
    background: #f0f0f0;
    border-radius: 6px;
}

.modal-backdrop.show {
    z-index: 1060 !important;
    opacity: 0.6 !important;
}

.modal {
    z-index: 1070 !important;
}

.service-image-wrapper {
    position: relative;
}

.services-img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    height: 25vh;
    display: block;
}

.service-actions {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .action-btn:focus {
        outline: none;
    }

    .action-btn:hover {
        transform: translateY(-2px);
    }

.edit-btn {
    color: #5b504a;
}

.delete-btn {
    color: #d62828;
}
/* Delete Modal */

.delete-service-dialog {
    max-width: 500px !important;
}

.delete-service-modal {
    border: none;
    border-radius: 20px;
}

.delete-service-body {
    padding: 0 30px 25px !important;
}

.delete-service-icon {
    width: 70px;
    height: 70px;
    background: #fdecec;
    color: #d62828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.delete-service-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f3f1;
    padding: 15px;
    border-radius: 12px;
}

    .delete-service-preview img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 10px;
    }

.delete-service-cancel-btn {
    max-width: max-content;
    border: 1px solid #999;
    border-radius: 10px;
    font-size: 14px;
}

.delete-service-confirm-btn {
    max-width: max-content;
    background: #d62828;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
}

    .delete-service-confirm-btn:hover {
        color: #fff;
    }

.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-slider-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: galleryScroll 25s linear infinite;
}

@keyframes galleryScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gallery-slider-wrapper:hover .gallery-slider-track {
    animation-play-state: paused;
}

@media (max-width: 991.98px) {
    .gallery-slider-track {
        gap: 12px;
        animation-duration: 20s;
    }
}

@media (max-width: 767.98px) {
    .gallery-slider-track {
        gap: 10px;
        animation-duration: 16s;
    }
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #d4ccc5;
    color: #6d6259;
    padding: 10px 28px;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: #6d6259;
        color: #fff;
        border-color: #6d6259;
    }

    .filter-btn:focus {
        outline: none;
    }

.gallery-item {
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 14px;
        transition: 0.4s ease;
        display: block;
    }

.gallery-delete-btn {
    position: absolute;
    top: 10px;
    right: 28px; /* adjust if needed */
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 25%;
    background: rgba(255, 255, 255, 0.95);
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 2;
}

    .gallery-delete-btn:focus {
        outline: none;
    }

    .gallery-delete-btn:hover {
        transform: scale(1.1);
    }

@media (max-width: 767px) {
    .gallery-delete-btn {
        top: 10px;
        right: 25px;
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 991px) {
    .gallery-filters {
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .gallery-filters {
        gap: 6px;
    }

    .gallery-item img {
        border-radius: 12px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 8px 18px;
    }
}


.gallery-upload-modal {
    border: none;
    border-radius: 20px;
}

.gallery-modal-subtitle {
    color: #8a8179;
    font-size: 14px;
}

.gallery-upload-box {
    border: 2px dashed #e5ddd7;
    border-radius: 16px;
    padding: 50px 20px;
    text-align: center;
    cursor: pointer;
}

.upload-cloud-icon {
    font-size: 36px;
    color: #8a8179;
    margin-bottom: 12px;
}

.gallery-upload-box h6 {
    color: #4d453f;
    margin: 0;
    font-size: 14px;
}

.gallery-upload-box small {
    color: #8a8179;
}

.gallery-upload-modal .form-control {
    height: 50px;
    border-radius: 10px;
}

.gallery-upload-modal textarea.form-control {
    height: auto;
    resize: none;
}

#uploadGalleryModal .modal-dialog {
    max-width: 700px !important;
}

.policy-content {
    display: none;
}

    .policy-content.active {
        display: block;
    }

.policy-tab-btn {
    background: none;
    border: none;
    background: transparent;
    border: none;
    padding: 0 0 6px;
    margin-right: 40px;
    position: relative;
    color: #8a817c;
}

    .policy-tab-btn:focus {
        outline: none;
    }

    .policy-tab-btn.active {
        color: #5b4f48;
        font-weight: 600;
    }

        .policy-tab-btn.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background: #5b4f48;
            border-radius: 20px;
        }

.btn-outline-secondary {
    border-radius: 10px;
    width: max-content;
    font-size: 16px;
}

@media (max-width: 767px) {
    .btn-outline-secondary {
        font-size: 12px;
    }
}

.btn-outline-secondary:focus {
    outline: none;
}

#privacyEditor {
    height: 400px;
}

#termsEditor {
    height: 400px;
}

@media (max-width: 1024px) {
    #privacyEditor {
        height: 300px;
    }

    #termsEditor {
        height: 300px;
    }
}

@media (max-width: 767px) {
    #privacyEditor {
        height: 200px;
    }

    #termsEditor {
        height: 200px;
    }
}

.social-netword-card {
    background-color: #f2f2f2;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.ql-undo::before {
    content: "\f2ea";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.ql-redo::before {
    content: "\f2f9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Social Edit Modal */

.social-modal-dialog {
    max-width: 500px !important;
}

.social-edit-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

    .social-edit-modal .modal-title {
        font-size: 20px;
        font-weight: 600;
        color: #2f2f2f;
    }

.social-toggle-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f3f1;
    border-radius: 14px;
    padding: 16px 18px;
}

    .social-toggle-card i {
        font-size: 18px;
        color: #645a51;
    }

    .social-toggle-card small {
        color: #8a8179;
        font-size: 12px;
    }

@media (max-width: 767px) {
    .social-modal-dialog {
        max-width: 95% !important;
    }

    .social-toggle-card {
        padding: 14px;
    }
}

.ql-toolbar.ql-snow .ql-picker-label {
    border: 1px solid #ccc !important;
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="12px"]::before {
    content: "12px";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="14px"]::before {
    content: "14px";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="16px"]::before {
    content: "16px";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="18px"]::before {
    content: "18px";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="20px"]::before {
    content: "20px";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="24px"]::before {
    content: "24px";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="28px"]::before {
    content: "28px";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="32px"]::before {
    content: "32px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="12px"]::before {
    content: "12px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="14px"]::before {
    content: "14px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="16px"]::before {
    content: "16px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="18px"]::before {
    content: "18px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="20px"]::before {
    content: "20px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="24px"]::before {
    content: "24px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="28px"]::before {
    content: "28px";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="32px"]::before {
    content: "32px";
}

.add-section-box {
    border: 2px dashed #6B5F57;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6B5F57;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .add-section-box:hover {
        background-color: #f8f8f8;
    }

    .add-section-box i {
        font-size: 14px;
    }

    @media(max-width: 767px) {
        .add-section-box {
            font-size: 12px;
        }
            .add-section-box i {
                font-size: 12px;
            }
    }

.section-divider {
    border-top: 2px solid rgba(0,0,0,.1);
}

