:root {
    --theme_accent_color: red;
}

html, body {
    width: 100vw;
    height: 100vh;
}

.h-scrollbar {
  overflow: auto;
}

.h-scrollbar::-webkit-scrollbar {
  height: 5px;
  background-color: transparent;
}

.h-scrollbar::-webkit-scrollbar-thumb {
  background-color: #A1A1A1;
  border-radius: 2.5px;
}

.btn-theme {
    background-color: var(--theme_accent_color);
    color: white;
}

.event-view-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.event-view-container .tool-bar {
    position: absolute;
    left: 20px;
    top: 200px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    max-width: 150px;
}

.event-title {
    font-size: 44px;
}

.click-editor {
    border: none;
    box-shadow: none;
    outline: none;
    padding: 5px 12px;
    resize: none;
    max-width: 100%;
}

.click-editor:hover {
    background-color: #f1eff1;
}

#accent-palette {
    color: var(--theme_accent_color)
}

.cursor-pointer {
    cursor: pointer;
}

.tool-bar i {
    font-size: 40px;
}

.tool-bar label {
    font-size: 10px !important;
    color: #555 !important;
    font-weight: 700 !important;
}

.event-view-container>.event-editor-tool {
    width: 45%;
    position: relative;
}

.event-view-container .nav-container {
    width: 75px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 55%;
    top: 0;
    height: 100%;
}

.event-view-container .nav-container .nav-item {
    background-color: #424242;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: white;
    font-size: 10px;
    cursor: pointer;
}

.event-details .container-lg {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 28px;
}

.event-info-panel {
    display: none;
    flex-direction: column;
    padding: 0;
    padding-left: 12px;
}

.created-by {
    padding-left: 12px;
}

.event-info-panel.active {
    display: flex;
}

.line-text {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.line-text .line {
    height: 1px;
    background-color: var(--theme_accent_color);
    flex: 1;
}
e
.line-text>.line-text-right {
    color: var(--theme_accent_color);
    text-transform: uppercase;
}

.tickets-table th {
    background-color: #1c302f !important;
    font-weight: 700;
    color: white;
    border-top: none !important;
}

.event-view-container .nav-container .nav-item:hover {
    border-right: 3px solid var(--theme_accent_color);
}

.event-view-container .nav-container .nav-item.active {
    background-color: var(--theme_accent_color) !important;
}

.nav-item .icon {
    width: 25px;
    height: 25px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
}

.nav-item i {
    font-size: 15px;
}

.event-dates {
    display: flex;
    width: 100%;
    background-color: #f5f5f5;
    padding: 10px;
}

.flex-1 {
    flex: 1;
}

.event-view-container .event-image {
    width: 100%;
    padding-right: 75px;
    /* object-fit: cover; */
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.event-view-container>.event-details {
    width: 55%;
    height: 100%;
}

.theme-color {
    color: var(--theme_accent_color) !important;
}

.edit-theme {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1000;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .8);
}

@media screen and (max-width: 768px) {
    .event-title {
        font-size: 30px;
    }

    .created-by {
        font-size: 12px;
    }
}

@media screen and (max-width: 640px) {
    .event-title {
        font-size: 30px;
    }

    .created-by {
        font-size: 12px;
    }

    .event-editor-tool {
        display: none;
    }

    .event-details {
        width: calc(100% - 75px) !important;
        margin-left: 75px;
        background-color: rgba(255, 255, 255, .8);
    }

    .nav-container {
        left: 0;
    }

    .nav-item {
        background-color: rgba(66, 66, 66, .8) !important;
    }

    .event-image {
        max-width: 100% !important;
    }
}