.voice-visualizer__buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    row-gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.voice-visualizer__btn-center {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff;
    border: 4px solid #c5c5c5;
    outline: none;
    cursor: pointer;
    transition: border-color .3s, background-color .3s
}

.voice-visualizer__btn-center:disabled {
    opacity: .85;
    cursor: default
}

.voice-visualizer__btn-center:hover {
    background-color: #eaeaea;
    border: 4px solid #9f9f9f
}

.voice-visualizer__btn-center>img {
    width: auto;
    height: 50%;
    max-height: 30px
}

.voice-visualizer__btn-center.voice-visualizer__btn-center-pause {
    background-color: #ff3030
}

.voice-visualizer__btn-center.voice-visualizer__btn-center-pause:hover {
    background-color: #ff4f4f
}

.voice-visualizer__btn-center.voice-visualizer__btn-center-pause>img {
    height: 50%;
    max-height: 16px
}

.voice-visualizer__btn-center.voice-visualizer__btn-center--border-transparent {
    border-color: transparent
}

.voice-visualizer__btn-center.voice-visualizer__btn-center--border-transparent:hover {
    background-color: #fff
}

.voice-visualizer__btn-left {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ff3030;
    border: 4px solid #c5c5c5;
    outline: none;
    cursor: pointer;
    transition: border-color .3s, background-color .3s, opacity .3s
}

.voice-visualizer__btn-container {
    min-width: 100px;
    display: flex;
    justify-content: flex-end
}

.voice-visualizer__btn-left:hover {
    background-color: #ff4f4f
}

.voice-visualizer__btn-left:disabled {
    opacity: .6;
    background-color: #ff3030;
    cursor: default
}

.voice-visualizer__btn-left.voice-visualizer__btn-left-microphone {
    background-color: #fff
}

.voice-visualizer__btn-left.voice-visualizer__btn-left-microphone>img {
    width: auto;
    height: 50%;
    max-height: 30px
}

.voice-visualizer__btn-left>img {
    width: auto;
    height: 50%;
    max-height: 16px
}

.voice-visualizer__btn-left:hover {
    border: 4px solid #9f9f9f
}

.voice-visualizer__btn {
    box-sizing: border-box;
    min-width: 100px;
    min-height: 60px;
    padding: 5px 20px;
    border-radius: 40px;
    font-size: 15px;
    background-color: #f0f0f0;
    transition: background-color .3s, opacity .3s
}

.voice-visualizer__btn:disabled {
    opacity: .8;
    background-color: #f0f0f0;
    cursor: default
}

.voice-visualizer__btn:hover {
    background-color: #bebebe
}

.voice-visualizer__canvas-container {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    overflow: hidden
}

.voice-visualizer__canvas-container canvas {
    display: block
}

.voice-visualizer__canvas-microphone-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 12%;
    min-width: 24px;
    height: 50%;
    max-height: 100px;
    background-color: transparent;
    border: none;
    outline: none;
    transform: translate(-50%, -50%)
}

.voice-visualizer__canvas-microphone-icon {
    width: 100%;
    height: 100%;
    will-change: transform;
    transition: transform .3s
}

.voice-visualizer__canvas-microphone-btn:hover .voice-visualizer__canvas-microphone-icon {
    transform: scale(1.03)
}

.voice-visualizer__canvas-audio-wave-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 40%;
    height: 40%;
    max-height: 100px;
    transform: translate(-118%, -50%) scale(-1)
}

.voice-visualizer__canvas-audio-wave-icon2 {
    transform: translate(18%, -50%)
}

.voice-visualizer__canvas-audio-processing {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%)
}

.voice-visualizer__progress-indicator-hovered {
    position: absolute;
    top: 0;
    pointer-events: none;
    height: 100%;
    width: 1px;
    background-color: #85858599
}

.voice-visualizer__progress-indicator-hovered-time {
    position: absolute;
    top: 3%;
    left: 1px;
    width: fit-content;
    margin: 0;
    padding: 0 7px;
    opacity: .8;
    font-size: 12px;
    border-radius: 0 4px 4px 0;
    background-color: #575757;
    text-align: left
}

.voice-visualizer__progress-indicator-hovered-time.voice-visualizer__progress-indicator-hovered-time-left {
    left: unset;
    right: 1px;
    border-radius: 4px 0 0 4px
}

.voice-visualizer__progress-indicator {
    position: absolute;
    top: 0;
    pointer-events: none;
    height: 100%;
    width: 1px;
    background-color: #efefef
}

.voice-visualizer__progress-indicator-time {
    position: absolute;
    top: 3%;
    left: 1px;
    width: fit-content;
    box-sizing: border-box;
    min-width: 37px;
    margin: 0;
    padding: 0 7px;
    font-size: 12px;
    border-radius: 0 4px 4px 0;
    text-align: left;
    color: #000;
    font-weight: 500;
    background-color: #efefef
}

.voice-visualizer__progress-indicator-time.voice-visualizer__progress-indicator-time-left {
    left: unset;
    right: 1px;
    border-radius: 4px 0 0 4px
}

.voice-visualizer__audio-info-container {
    box-sizing: border-box;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px
}

.voice-visualizer__audio-info-time {
    margin: 15px 0;
    min-width: 38px;
    text-align: left
}

.voice-visualizer__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 4px solid #c5c5c5;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden
}

.relative {
    position: relative
}

.spinner__wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center
}

.spinner {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(197, 197, 197, .5);
    border-radius: 50%;
    border-top-color: #b7b7b7;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.sidebar {
    width: 260px; /* Default expanded width */
    transition: width 0.3s ease;
}

.sidebar.collapsed {
    width: 60px; /* Collapsed width */
}

.collapsed #toggleButton {
    display: none;
}

.collapsed #overlayToggleButton {
    display: block;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px; /* Adjusted width for collapsed state */
    height: 100%;
    background-color: #fcfcfc;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

.visible {
    opacity: 1;
    visibility: visible;
}

.toggle-btn {
    position: fixed;
    top: 25px; /* Adjust for web version */
    left: 210px; /* Adjust for web version */
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1000;
}

.overlay-btn {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
}


.search-type-btn {
display: none;
}

.popup-container {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
z-index: 1000; /* Make sure the popup is above other content */
}

.popup {
background-color: white;
padding: 20px;
border-radius: 10px 10px 0 0;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.popup-option {
padding: 15px;
text-align: center;
font-size: 18px;
cursor: pointer;
}

.hidden {
transform: translateY(100%);
}

.show {
transform: translateY(0);
}

/* Mobile tab menu styling */
.mobile-tab-menu {
display: none; /* Hidden by default */
}
.mobile-tab-menu .tab-button {
    display: none;
}
.mobile-tab-menu .tab-button svg {
    display: none;
}

/* Icon styling */
/* Media query for mobile screens */
@media screen and (max-width: 784px) {
    .mobile-tab-menu {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 8%;
        /*background-color: #ffffff;*/
        border-top: 1px solid #cccccc; /* Thin top border */
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 1000;
        }
          /* Styling for individual tab buttons */
          .mobile-tab-menu .tab-button {
            display: flex;
        text-align: center;
        flex-grow: 1;
        color: #333;
        font-size: 14px;
        text-decoration: none;
    }

    .mobile-tab-menu .tab-button svg {
        display: flex;
            margin-bottom: 5px; /* Spacing between icon and text */
            stroke: #333; /* Icon color */
            }
        .sidebar {
            display: none; /* Initially hide sidebar */
    }

    .sidebar-open {
        display: block; /* Show the sidebar fully when open */
        width: 100vw; /* Sidebar takes full width of the screen */
    }

    .sidebar-closed {
        display: none; /* Sidebar completely hidden */
    }

    .toggle-btn {
        display: block;
        position: fixed;
        top: 30px;
        left: 20px;
        z-index: 9999;
    }

    .overlay-btn {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 9999;
    }
    /* Hide the overlay by default */
    .overlay.hidden {
        display: none;
    }
    .d_flex.items_center.gap_10px.flex_column.w_md.mx_auto.mt_29vh {
        position: fixed;
        width: 100%; /* for centeralize */
        max-width: 750px;
        margin-top: 10vh;
    }
    .search-type-btn {
        display: block;
        position: fixed;
        top: 20px;
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 16px;
        cursor: pointer;
        z-index: 1001; /* Ensure it appears above other elements */
    }

    /*els*/
    .d_flex.items_center.gap_10px.flex_column.w_md.mx_auto.mt_29vh p {
        display: none;

    }

    .fusion-text.fusion-text-13.fusion-text-no-margin{
        display: none;
    }

    /* Adjust the main content to take up full width */
    .main-content {
        width: 100%;
    }

    /* Position the outer-box just above the search box */
    .outer-box {

        position: fixed;
        bottom: 100px; /* Place 100px above the bottom (or adjust as needed) */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 750px;
        z-index: 999; /* Ensure it is placed above other content */
    }

    .d_flex.flex_column.w_50vw.max-w_750px.border-w_1px.border-style_solid.shadow_md.rounded_md.overflow_hidden.bg_white.mx_auto {
        position: relative;
        visibility: hidden;
        position: fixed;
        left: 50%;
        bottom: 100px;
        transform: translateX(-50%);
        width: 90%;
        max-width: none;
        z-index: 1000;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    .d_flex.gap_2.justify_space-between.items_flex-start.pr_2.pl_5.pt_2.pb_2.bg_white.rounded_lg.border-w_1px.border-style_solid.w_100\%.ml_auto.mr_auto.mb_0.mt_2.max-h_400px {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        visibility: visible;
        display: flex;
        position: relative;
        width: 100%;
        max-width: none
    }

    /* Disable horizontal scrolling */
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
}

/* Optional: You can also make the sidebar collapse on smaller screens but still visible */
.trend-header {
    font-size: 20px;
    /*font-weight: bold;*/
    margin-left: 3vh;
    margin-bottom: 15px;
    color: #333;
}
.trend-container {
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    max-width: 750px;
    max-height: 220px;
    height: 100%;
    margin: 40px auto;
    background-color: #f9f9f9;
    border-radius: 2px;
    border: solid 0px;
    border-color: #bbbbbb;
    padding: 5px;
    text-align: left;
    padding-top: 15px;
}
.trends-list {
    margin-left: 3vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px; /* Add space between items */
}
.trend-item {
    width: 80%;
    font-size: 16px;
    text-align: left;
    list-style: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trend-item:last-child {
    border-bottom: none;
}

.trend-number {
    width: auto; /* Remove the fixed width to make it auto-adjust */
    background-color: transparent; /* Remove the background color */
    color: black; /* Change the number color to black */
    font-size: 12px;
    font-weight: bold;
    margin-right: 15px;
    border: none; /* Remove the border */
    box-shadow: none; /* Remove the shadow */
    display: flex;
    align-items: center;
}

.trend-title {
    font-size: 0.9em;
    color: #333;
}

.trend-timestamp {
    text-align: right;
    font-size: 14px;
    color: #aaa;
    margin-top: 20px;
}

#nprogress {
    pointer-events: none;
}

#nprogress .bar {
    background: black;

    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;
}

/* Fancy blur effect */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px black, 0 0 5px black;
    opacity: 1;

    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;

    /* fixes because of react-voice-visualizer */
    height: 0 !important;
    width: 18px !important;
    border: none;
    border-radius: unset;
    animation: none !important;
    -webkit-animation: none !important;
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;

    border: solid 2px transparent;
    border-top-color: black;
    border-left-color: black;
    border-radius: 50%;

    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes intercom-lightweight-app-launcher {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes intercom-lightweight-app-gradient {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes intercom-lightweight-app-messenger {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    40% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.intercom-lightweight-app {
    position: fixed;
    z-index: 2147483001;
    width: 0;
    height: 0;
    font-family: intercom-font, "Helvetica Neue", "Apple Color Emoji", Helvetica, Arial, sans-serif;
}

.intercom-lightweight-app-gradient {
    position: fixed;
    z-index: 2147483002;
    width: 500px;
    height: 500px;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at bottom right,
            rgba(29, 39, 54, 0.16) 0%,
            rgba(29, 39, 54, 0) 72%);
    animation: intercom-lightweight-app-gradient 200ms ease-out;
}

.intercom-lightweight-app-launcher {
    position: fixed;
    z-index: 2147483003;
    padding: 0 !important;
    margin: 0 !important;
    border: none;
    bottom: 20px;
    right: 20px;
    max-width: 48px;
    width: 48px;
    max-height: 48px;
    height: 48px;
    border-radius: 50%;
    background: #6D56FA;
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
    transition: transform 167ms cubic-bezier(0.33, 0.00, 0.00, 1.00);
    box-sizing: content-box;
}


.intercom-lightweight-app-launcher:hover {
    transition: transform 250ms cubic-bezier(0.33, 0.00, 0.00, 1.00);
    transform: scale(1.1)
}

.intercom-lightweight-app-launcher:active {
    transform: scale(0.85);
    transition: transform 134ms cubic-bezier(0.45, 0, 0.2, 1);
}


.intercom-lightweight-app-launcher:focus {
    outline: none;


}

.intercom-lightweight-app-launcher-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    transition: transform 100ms linear, opacity 80ms linear;
}

.intercom-lightweight-app-launcher-icon-open {

    opacity: 1;
    transform: rotate(0deg) scale(1);

}

.intercom-lightweight-app-launcher-icon-open svg {
    width: 24px;
    height: 24px;
}

.intercom-lightweight-app-launcher-icon-open svg path {
    fill: rgb(255, 255, 255);
}

.intercom-lightweight-app-launcher-icon-self-serve {

    opacity: 1;
    transform: rotate(0deg) scale(1);

}

.intercom-lightweight-app-launcher-icon-self-serve svg {
    height: 44px;
}

.intercom-lightweight-app-launcher-icon-self-serve svg path {
    fill: rgb(255, 255, 255);
}

.intercom-lightweight-app-launcher-custom-icon-open {
    max-height: 24px;
    max-width: 24px;


    opacity: 1;
    transform: rotate(0deg) scale(1);

}

.intercom-lightweight-app-launcher-icon-minimize {

    opacity: 0;
    transform: rotate(-60deg) scale(0);

}

.intercom-lightweight-app-launcher-icon-minimize svg path {
    fill: rgb(255, 255, 255);
}

.intercom-lightweight-app-messenger {
    position: fixed;
    z-index: 2147483003;
    overflow: hidden;
    background-color: white;
    animation: intercom-lightweight-app-messenger 250ms cubic-bezier(0, 1, 1, 1);
    transform-origin: bottom right;


    width: 400px;
    height: calc(100% - 40px);
    max-height: 704px;
    min-height: 250px;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);


    border-radius: 16px;
}

.intercom-lightweight-app-messenger-header {
    height: 64px;
    border-bottom: none;
    background: #1f2152
}

.intercom-lightweight-app-messenger-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    font-size: 14px;
    line-height: 21px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);

}

@media print {
    .intercom-lightweight-app {
        display: none;
    }
}

/* Centered Popup Container */
.popup-overlay {
    position: fixed;
    top: 50;
    left: 160;
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 780px;
}

.background-span {
    display: inline-block; /* Required to apply dimensions */
    background-size: cover; /* Cover the span area */
    background-repeat: no-repeat; /* Prevent background from repeating */
    color: white; /* Set text color for contrast */
    text-align: center; /* Center text */
    line-height: 50px; /* Match line-height to height for vertical centering */
    margin-right: 10px;
}

/* Image Button Styling */
.image-button {
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-image: url('/static/assets/images/focus-search.svg');
    background-size: cover;
    border: none;
    outline: none;
}

/* Grid Layout for Menu Items */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four items per row */
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.menu-item {
    align-items: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    transition: background 0.3s;
}

.menu-item:hover {
    background-color: #f0f0f0;
}

.menu-icon {
    font-size: 24px;
    margin-right: 10px;
}

.menu-text {
    font-weight: bold;
    color: #333;
}

.menu-description {
    font-size: 12px;
    color: #666;
}

/* Close Button Styling */
.close-btn {
    display: none;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

/* Style for the upload container */
.upload-container {
    display: inline-block;
}

/* Hide the default file input */
#file-upload {
    display: none;
}

/* Style for the custom file upload button */
.custom-file-upload {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    margin-left: 75px;
    padding: 2px 10px 0px 10px;
    font-size: 12px;
    color: #555;
    background-color: #eeeeee;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

/* Icon styling */
.custom-file-upload .attach-icon {
    font-size: 10px; /* Adjust the icon size */
    background-image: url('/static/assets/images/attach.svg');
    background-size: cover;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Hover effect */
.custom-file-upload:hover {
    background-color: #e0e0e0;
}

.scr_container {
  display: flex;

}

.scr_box {
  padding: 2px;
  border: 0px solid #000;
  text-align: center;
}

/* Button to open modal */
.open-modal-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Modal Background (hidden by default) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal Container */
.modal {
    position: relative;
    transform: translate(0%, -15%); /* Shift content slightly */
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

/* Modal Options */
.modal-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.modal-option:last-child {
    border-bottom: none;
}

/* Icons */
.modal-option img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Text */
.modal-option .title {
    font-weight: bold;
    margin-bottom: 2px;
}

.modal-option .description {
    font-size: 12px;
}
