@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINPro400.otf");
    font-display: swap;
}
@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProMedium500.otf");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProBold700.otf");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProBold700.otf");
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProItalic400.otf");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProMediumItalic500.otf");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProBoldItalic700.otf");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProBoldItalic900.otf");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url("/assets/fonts/dinpro/DINProBoldItalic700.otf");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    font-stretch: condensed;
    margin: 0;
    padding: 0;
    min-height: 100%;
    direction: ltr;
    position: relative;
    background: #eee;
    font-family: "DIN Pro", sans-serif;
    font-size: 12px;
}

html:has(.filters-bar-redesign) {
    background: var(--redesign-main-background);
}

#left-panel {
    background: #1b1e24;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 220px;
    z-index: 500;
    overflow-y: scroll;
}
/* WebKit Scrollbar */
#left-panel::-webkit-scrollbar {
    width: 1px;
}
#left-panel::-webkit-scrollbar * {
    background: transparent;
}
#left-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 0, 0) !important;
}
/* Firefox scrollbar */
#left-panel {
    scrollbar-width: none;
}
#sidebar-logo {
    padding: 20px 0;
    text-align: center !important;
    border-bottom: 1px solid #464b54;
}
#sidebar-logo img {
    max-height: 48px;
}

@media only screen and (max-width: 1400px) {
    #left-panel {
        /*width: 180px;*/
    }
    #left-panel nav ul li a {
        padding: 10px 0 10px 11px;
    }
}
/* Global */
#left-panel nav {
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    padding-bottom: 70px;
}
#left-panel nav > ul {
    position: relative;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}
/* Breaker */
#left-panel nav > ul > li.breaker {
    padding: 15px 10px 15px 11px;
}
#left-panel nav > ul > li.breaker.active:before {
    display: block;
    position: absolute;
    left: 6px;
    top: 9px;
    height: 27px;
    width: calc(100% - 16px);
    border-radius: 4px;
    background: #22bb69;
    z-index: -1;
    content: "";
}
#left-panel nav > ul > li.breaker.active span,
#left-panel nav > ul > li.breaker.active i.icon {
    color: #fff;
}
#left-panel nav > ul > li.breaker span {
    color: #96989c;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}
#left-panel nav > ul > li.breaker i.icon {
    color: #8a8f97;
    margin-right: 7px;
    position: relative;
}
/* First level */
#left-panel nav ul {
    width: 100%;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1em;
    list-style: none;
    position: relative;
    overflow-x: inherit;
    overflow-y: inherit;
    border-bottom: 1px solid #464b54;
}
#left-panel nav > ul > li.active {
    /*background-color: #22BB69;*/
}
/* Icon */
#left-panel nav > ul > li > a > i {
    margin-right: 7px;
    position: relative;
}
/* Link */
#left-panel nav ul li a {
    line-height: normal;
    font-size: 14px;
    padding: 10px 10px 10px 11px;
    color: #8a8f97;
    display: block;
    font-weight: normal;
    text-decoration: none !important;
    position: relative;
}
#left-panel nav ul li a:hover,
#left-panel nav > ul > li.active > a > span,
#left-panel nav > ul > li.active > a > i,
#left-panel nav > ul > li.active > ul > li.active a span {
    color: #f0f0f0;
    text-decoration: none;
}
#left-panel nav > ul > li.active > a > i {
    color: #22bb69;
}
/* Second level */
#left-panel nav ul ul {
    margin: 0;
    padding: 7px 0;
    display: none;
    border: solid #30333a;
    border-width: 1px 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    background: #121519;
}
#left-panel nav ul li.active ul,
#left-panel nav ul li.select ul {
    display: block;
}

/* Link */
#left-panel nav ul ul li > a {
    padding-left: 42px;
    font-size: 13px;
    font-weight: normal;
    outline: 0;
}
#left-panel nav > ul > li > ul > li > a {
    padding-top: 2px;
    padding-bottom: 6px;
}
/* Lines and dots */
#left-panel nav ul li li {
    position: relative;
}
/* Horizontal line */
#left-panel nav ul li ul::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 19px;
    top: 0;
    bottom: 19px;
    border-left: 1px solid #464b54;
}
/* Dot */
#left-panel nav > ul ul li::before {
    content: "";
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    left: 15px;
    top: 7px;
    border: 1px solid #464b54;
    background: #1b1e24;
    border-radius: 30px;
    z-index: 1;
}
#left-panel nav > ul ul li:hover::before,
#left-panel nav > ul ul li.active::before {
    border: solid 1px #22bb69;
    background-color: #22bb69;
}
/* Badge with counter */
#left-panel nav ul li a > .badge,
#left-panel nav > ul > li > ul > li > a > .badge {
    margin-left: 0.75rem;
}

/* Header layout */
#header-wrapper,
#header-local-wrapper {
    min-width: 980px;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
#header-global {
    z-index: 100;
    height: 50px;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 20px 0 8px;
}
#header-local,
#header-local-sub {
    z-index: 11;
    height: 64px;
}
#header-local-sub {
    height: 32px;
    z-index: 10;
}
#header-local:empty,
#header-local-sub:empty {
    height: 0;
    border-top: 0;
}
.header-global-fixed,
.header-local-fixed,
.header-local-sub-fixed {
    top: 0;
    right: 0;
    width: auto;
    left: 220px;
    min-width: 980px;
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.header-local-sub-fixed {
    top: 64px;
}
/* Important: this correlates with sidemenu.css */
@media only screen and (max-width: 1400px) {
    .header-local-fixed,
    .header-local-sub-fixed {
        left: 180px;
    }
}
/* Header inputs and buttons */
#header-wrapper input,
#header-wrapper select {
    padding: 8px;
    font-size: 15px;
    line-height: 1;
    border-radius: 4px;
    border-color: #dadada;
}
#header-wrapper select {
    padding: 0 10px;
    height: 36px;
}
#search-box button,
#export_form button {
    font-weight: bolder;
    border-radius: 0 4px 4px 0;
    padding-left: 20px;
    padding-right: 20px;
}
#export_form select,
#search-box input {
    width: 250px;
    border-radius: 4px 0 0 4px;
}
.extra-input input,
.extra-input select {
    width: 180px !important;
}
/* Search icon */
#search-box input {
    padding-left: 30px;
}
#search-box .form-control-feedback {
    position: absolute;
    z-index: 12;
    display: block;
    padding: 12px 5px 9px 9px;
    line-height: 1rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}
/* Nav pills */
#header-local ul.nav li {
    margin: 0 24px 0 0;
}
#header-local ul.nav li a {
    padding: 6px 0;
    font-size: 16px;
    color: #1b1e24;
    text-decoration: none;
    background: #fff;
    border-bottom: 2px solid #fff;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#header-local ul.nav li a.active,
#header-local ul.nav li a.active:hover {
    border-bottom: 2px solid #f38f1b;
}
#header-local ul.nav li a:hover {
    border-bottom: 2px solid #e2e6ea;
}
#header-local-sub ul.nav.language-list li {
    margin: 0 4px;
}
#header-local-sub ul.nav.language-list li:first-child {
    margin-left: 0;
}
#header-local-sub ul.nav.language-list li a {
    color: #1b1e24;
    text-decoration: none;
    padding: 0 3px;
}
#header-local-sub ul.nav.language-list li a:hover {
    text-decoration: underline;
}
#header-local-sub ul.nav.language-list li a.active {
    color: #f38f1b;
}

#main {
    margin-left: 220px;
    padding: 0;
    min-width: 940px;
    min-height: 500px;
    height: 100%;
    position: relative;
}
.container {
    padding-top: 40px;
    padding-bottom: 60px;
}
/* Project selector (dropdown) */
#project-selector {
    list-style: none;
    margin: 0;
}

#project-selector .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    border-radius: 6px;
    min-width: 120px;
    max-width: 160px;
    height: 30px;
    padding: 5px 8px 5px 10px;
    font-size: 14px;
    line-height: 20px;
    color: #1b1e24;
    border: 1px solid #e0e0e0;
}

#project-selector .dropdown-toggle i {
    color: #c8c9cb;
}

.dropdown-toggle::after {
    display: none;
}

#project-selector .dropdown-toggle,
#project-selector .dropdown-toggle:hover {
    text-decoration: none;
    color: #1b1e24;
    cursor: pointer;
}

#project-selector .dropdown-menu[role="menu"] {
    padding: 5px;
    width: 220px;
    overflow-x: visible;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px 0 rgba(17, 37, 87, 0.1);
    margin-top: 5px;
}

#project-selector .dropdown-menu li a:hover,
#project-selector .dropdown-menu li a:focus {
    cursor: pointer;
}

#project-selector .dropdown-menu li i.default-project:not(.fa-bookmark) {
    display: none;
}

#project-selector .dropdown-menu li:hover > i.fa-bookmark,
#project-selector .dropdown-menu li:hover > i.fa-bookmark-o,
#project-selector .dropdown-menu .dropdown-submenu li:hover > i.fa-bookmark,
#project-selector .dropdown-menu .dropdown-submenu li:hover > i.fa-bookmark-o {
    display: inline-block;
}

#project-selector .dropdown-submenu {
    display: flex;
    flex-flow: column;
}

#project-selector .dropdown-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1b1e24;
    font-weight: 500;
    font-size: 14px;
}

#project-selector .dropdown-submenu .dropdown-menu {
    position: static;
    float: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    width: 100%;
    padding: 10px 0 0 0;
}

#project-selector .dropdown-submenu .dropdown-menu {
    display: none;
}

#project-selector .dropdown-submenu:hover {
    cursor: pointer;
}

#project-selector .dropdown-submenu.open .dropdown-menu {
    display: block;
    position: static;
    float: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

/*project selector dropdown*/
#project-selector li:not(.divider) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border-radius: 6px;
}

#project-selector .dropdown-submenu li {
    margin-left: 5px;
    padding: 5px 10px;
}

#project-selector .dropdown-submenu .divider {
    margin: 5px 15px;
}

#project-selector li:not(.dropdown-submenu):hover {
    background-color: #f4f4f4;
}

#project-selector li a {
    width: calc(100% - 20px);
    margin: 0;
    padding: 0;
    color: #76787c;
}

#project-selector li a:hover,
#project-selector li a:focus,
#project-selector li a:active {
    background: transparent;
}

#project-selector .dropdown-submenu > a:after {
    display: none;
}

#project-selector li.divider {
    list-style: none;
    padding: 0;
    height: 0px;
    margin: 10px 0;
    overflow: hidden;
    border-top: 1px dashed #e0e0e0;
    background-color: transparent;
}

/* #project-selector li.project a {
    color: #333;
    font-size: 13px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
} */

#project-selector li i {
    cursor: pointer;
    font-size: 16px;
    margin-left: 1px;
}

#project-selector li i.fa-bookmark {
    color: #22bb69;
}

#project-selector li i.fa-bookmark:hover {
    color: #19a158;
}

#project-selector li i.fa-bookmark-o {
    color: #c8c9cb;
}

#project-selector li i.fa-bookmark-o:hover {
    color: #c8c9cb;
    font-weight: 700;
}

#project-selector .open-trigger i {
    color: #c8c9cb;
    font-size: 16px;
}

#project-selector li:hover .open-trigger i {
    color: #22bb69;
}

#project-selector .open-trigger i.fa-minus,
#project-selector .dropdown-submenu.open .open-trigger i.fa-plus {
    display: none;
}

#project-selector .dropdown-submenu.open .open-trigger i.fa-minus,
#project-selector .open-trigger i.fa-plus {
    display: block;
}

/* Loader */
div#loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none;
}
.loading-popup {
    width: 500px;
    height: 250px;
    background: #fff;
    z-index: 9999999;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top: -110px;
    padding: 25px;
    opacity: 0.9;
}
@media screen and (max-width: 1000px) {
    .loading-popup {
        width: 400px;
        height: 300px;
        margin-left: -200px;
        margin-top: -150px;
        padding: 20px;
    }
}
@media screen and (max-width: 400px) {
    .loading-popup {
        width: 300px;
        height: 300px;
        margin-left: -150px;
        margin-top: -150px;
        padding: 15px;
    }
}

.butterbar {
    position: fixed;
    height: 4px;
    margin-bottom: -4px;
    top: 0px;
    width: 100%;
}
.presentation .butterbar {
    top: 100px;
}

div#loader .butterbar {
    position: relative;
}
.butterbar .bar {
    position: absolute;
    width: 100%;
    height: 0;
    text-indent: -9999px;
    background-color: #23b7e5;
}

.butterbar .bar:before {
    position: absolute;
    right: 50%;
    left: 50%;
    height: 4px;
    background-color: inherit;
    content: "";
}

.butterbar.active {
    -webkit-animation: changebar 2.25s infinite 0.75s;
    -moz-animation: changebar 2.25s infinite 0.75s;
    animation: changebar 2.25s infinite 0.75s;
}

.butterbar.active .bar {
    -webkit-animation: changebar 2.25s infinite;
    -moz-animation: changebar 2.25s infinite;
    animation: changebar 2.25s infinite;
}

.butterbar.active .bar:before {
    -webkit-animation: movingbar 0.75s infinite;
    -moz-animation: movingbar 0.75s infinite;
    animation: movingbar 0.75s infinite;
}

.white-box {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.09);
    margin: 15px 30px;
}

/*
 * Footer
 */
.footer {
    color: #58666e;
    background-color: #fff;
    padding: 15px;
    /*position: absolute;*/
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    box-sizing: border-box;
    text-align: left;
}

.row-flex {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.help-link {
    color: #c8c9cb;
}

.help-link:hover {
    color: #96989c;
}

.notifications-dropdown.dropdown-menu {
    transition: width 0.3s;
    width: 400px;
    max-width: 400px;
    min-width: 200px;
    margin-top: 5px;
}

.notifications-dropdown.dropdown-menu:has(.under-bell-text) {
    width: 200px;
}

.notifications-dropdown .notifications-header h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--charcoal);
    margin: 0;
}

.notifications-toggle {
    display: flex;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #c8c9cb;
    font-size: 10px;
    padding: 5px;
    border-radius: 4px;

    &:hover {
        background-color: var(--gray0);

        .notifications-counter {
            background-color: var(--tableRedDark);
        }
    }
}

.notifications-toggle:hover {
    text-decoration: none;
    color: #76787c;
}

.notifications-toggle i.fa-bell {
    font-size: 16px;
}

.notifications-list-wrapper {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    gap: 5px;
    padding: 10px;
    border-top: 1px solid var(--gray0);
    border-bottom: 1px solid var(--gray0);
}

.notifications-list-wrapper .italic {
    font-style: italic;
}

.notifications-counter {
    border-radius: 6px;
    color: #ffffff;
    background-color: #f05050;
    line-height: 1;
    position: absolute;
    right: 3px;
    top: 2px;
    padding: 2px 4px;
    font-size: 9px;
}

.notification-count-all {
    margin-right: 4px;
}

.single-notification {
    position: relative;
    background: #ffffff;
    padding: 10px 15px;
    border: 1px solid #dddddd;
    margin: 3px;
    border-radius: 4px;
}

.notifications-dropdown {
    overflow: hidden;
}

.notifications-dropdown .panel {
    display: flex;
    width: 100%;
    padding: 0;
    flex-direction: column;
    overflow: hidden auto;
}

.notifications-dropdown .panel-heading {
    padding: 10px;
}

.notifications-dropdown .clear-all {
    position: relative;
    overflow: hidden;
    flex: none;
    display: inline-block;
    font-family: inherit;
    cursor: pointer;
    user-select: none;
    outline: none;
    transition: background 0.2s ease-in, border-color 0.2s ease-in;
    height: 20px;
    background-color: transparent;
    text-shadow: none;
    padding: 0 10px;
    color: #1b1e24;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    border-radius: 6px;
    border: 1px solid transparent;

    &:hover {
        cursor: pointer;
        color: var(--tableRedDark);
        border: 1px solid var(--tableRedLightHover);
        background-color: var(--tableRedLight);
    }
}

.notification-type-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    flex: 0 0 30px;
    align-self: baseline;
}

.notification-type-icon-wrapper.export {
    border: 0px solid #22bb69;
    color: #22bb69;
    background: #def5e9;
}

.notification-type-icon-wrapper.new_products {
    border: 0px solid #4287e2;
    color: #4287e2;
    background: #cde4fe;
}

.dashed-line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed var(--gray1);
    margin-bottom: 10px;
}

.item-wrapper {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    flex: 1 0 0;
    border-radius: 6px;
    width: 100%;

    &:hover {
        background-color: var(--gray0);
        cursor: pointer;

        .notification-type-icon-wrapper {
            border-width: 1px;
        }

        .delete-button {
            visibility: visible;
        }
        .dot-presenter {
            left: -2px;
            top: -2px;
        }
    }
}

.item-wrapper .name {
    color: var(--charcoal);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    line-break: anywhere;
}

.item-wrapper .date {
    color: var(--gray4);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
}

.item-wrapper .delete-button {
    visibility: hidden;
    display: flex;
    width: 20px;
    height: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;

    i {
        font-size: 16px;
        color: var(--gray2);
        font-weight: 100;
    }

    &:hover {
        i {
            color: var(--gray4);
        }
    }
}

.item-wrapper .dot-presenter {
    border: 2px solid #fff;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: red;
    display: none;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
}

.dot-presenter.unread {
    display: block;
}

.under-bell-text {
    color: var(--charcoal);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.show-exports-button-wrapper {
    align-self: flex-end;
    padding: 10px;
}

.user-dropdown {
    width: 200px;
    border-radius: 6px !important;
    padding: 0 !important;
}

.user-dropdown.dropdown-menu {
    margin-top: 5px;
}

.column-flex {
    display: flex;
    flex-flow: column nowrap;
}

.avatar {
    flex: 0 0 auto;
}

.user-dropdown li {
    margin: 0 5px;
}

.user-dropdown li:first-child {
    margin-top: 5px;
}

.user-dropdown li:last-child {
    margin-bottom: 5px;
}

.user-info {
    color: #76787c;
    line-height: 20px;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px dashed #e0e0e0;
    padding: 5px;
}

.dropdown-menu.user-dropdown > li > a:hover,
.dropdown-menu.user-dropdown > li > a:focus {
    background-color: #f4f4f4;
}

.dropdown-menu.user-dropdown > li > a {
    display: flex;
    text-decoration: none;
    font-size: 14px;
    padding: 5px;
    align-items: center;
    color: #1b1e24;
    white-space: nowrap;
    line-height: 20px;
    font-weight: 400;
    border-radius: 6px;
}

.user-dropdown .logout-link i,
.user-dropdown .logout-link a {
    color: #e1675c !important;
}

.user-dropdown .logout-link:before {
    display: block;
    height: 1px;
    width: 100%;
    border-top: 1px dashed #e0e0e0;
    margin: 5px 0;
    content: "";
}

.dropdown-menu.user-dropdown > li > a i {
    font-size: 16px;
    color: #96989c;
    margin-right: 10px;
}

.project-context {
    align-items: flex-start;
}

.project-context .context-label {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #828282;
}

.project-context .project-name {
    font-size: 13px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
    max-width: 160px;
}

.project-context .project-link {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #22bb69;
    margin-left: 6px;
}

.view-urls {
    padding: 20px;
    height: 430px;
}

.view-urls__header .view-urls__header__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #1b1e24;
}

.view-urls__header .view-urls__header__desc {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #1b1e24;
    opacity: 0.5;
}

.view-urls__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 310px;
}

.view-urls__container__item {
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 4px;
    background-color: #fff;
}

.view-urls__container__item__header {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.view-urls__container__item__header:hover {
    cursor: pointer;
}

.view-urls__container__item__shop-info {
    flex: 1 0 auto;
    padding: 10px;
}

.view-urls__container__item__shop-info i {
    width: 51px;
    height: 20px;
}

.view-urls__container__item__icon-container {
    padding: 10px;
}

.view-urls__container__item.active .fal-chevron-down {
    transform: rotate(180deg);
}

.view-urls__container__item__store-list {
    max-height: 0;
    display: flex;
    transition: all 0.3s ease-out;
    will-change: max-height;
    overflow: hidden;
    max-width: 100%;
}

.view-urls__container__item .view-urls__container__item__store-list {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.view-urls__container__item.active .view-urls__container__item__store-list {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.view-urls__container__item__store-list__item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.view-urls__container__item__store-list
    .view-urls__container__item__store-list__item
    a {
    width: calc(100% - 50px);
    white-space: nowrap;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #427fed;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-urls__shop-name {
    font-weight: 400;
}

.view-urls__container__item.active .view-urls__shop-name {
    font-weight: 700;
}

.fa-copy {
    color: #e0e0e0;
}

.clickable {
    cursor: pointer;
}
