@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

*,
*:before,
*:after {
    box-sizing: border-box;
}

:root {
    --c-grey-100: #f4f6f8;
    --c-grey-200: #e3e3e3;
    --c-grey-300: #b2b2b2;
    --c-grey-400: #7b7b7b;
    --c-grey-500: #3d3d3d;
    --c-blue-500: #688afd;
}

.layout-navbar-fixed.layout-fixed .wrapper .sidebar {
    margin-top: 0;
}

.layout-fixed .wrapper .sidebar {
    height: 100vh;
}

.nav-item.header {
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
}

.nav-item.header a {
    cursor: default;
    color: #000 !important;
    font-size: 26px;
    padding: 0;
    margin: 0 46px 0 0;
}

.navbar-nav {
    width: 100%;
}

.btn-group .btn {
    white-space: nowrap;
}

.upload-area {
    width: 150px;
    height: 150px;
    border: 2px solid #007bff;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.image-input-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-input-preview[src=""] + div.image-input-empty {
    display: block;
}

.image-input-preview[src=""] {
    display: none;
}

.image-input-empty {
    z-index: 1;
    color: #333;
    text-align: center;
    padding: 10px;
    display: none;
}

.image-input-empty i {
    font-size: 48px;
}

.image-input-empty p {
    padding-top: 20px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.image-input-empty p {
    margin: 0;
}

.cropper-area {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
}

.cropper-area .cropper-top {
    display: flex;
    width: 100%;
    gap: 0 5px;
}

.cropper-area .cropper-top .cropper-image {
    flex: 1;
}

input[type=range][orient=vertical] {
    writing-mode: bt-lr;
    -webkit-appearance: slider-vertical;
    width: 8px;
    height: 100%;
}

.cropper-area .cropper-top .cropper-zoom .form-group {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px 0;
}

.cropper-area .cropper-top .cropper-zoom .form-group .top-value {
    border: 2px solid #ccc;
    background-color: #ccc;
    border-radius: 2px;
    width: 40px;
    text-align: center;
    font-weight: 600;
    color: #0075ff;
}

.cropper-area .cropper-bottom {
    width: 100%;
    flex: 1;
    margin-top: 10px;
}

.cropper-area .cropper-right-range {
    display: block;
    margin-left: 7px;
}

.cropper-area .cropper-bottom .form-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
}

.cropper-area .cropper-bottom .form-group .bottom-value {
    border: 2px solid #ccc;
    background-color: #ccc;
    border-radius: 2px;
    width: 40px;
    text-align: center;
    font-weight: 600;
    color: #0075ff;
}

.cropper-area .cropper-bottom-range {
    display: block;
    width: 100%;
}

.timeline {
    width: 85%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    padding: 32px 0 32px 32px;
    border-left: 2px solid var(--c-grey-200);
    font-size: 1.125rem;
    font-family: "Outfit", sans-serif;
}

.timeline-item {
    display: flex;
    gap: 24px;
}

.timeline .timeline-item:last-child:after {
    content: '';
    border-bottom: 6px solid #dee2e6;
    width: 100%;position: absolute;
    bottom: 0;
}

.timeline-item + * {
    margin-top: 24px;
}

.timeline-item + .extra-space {
    margin-top: 48px;
}

.new-comment {
    width: 100%;
}

.new-comment input {
    border: 1px solid var(--c-grey-200);
    border-radius: 6px;
    height: 48px;
    padding: 0 16px;
    width: 100%;
}

.new-comment input::-moz-placeholder {
    color: var(--c-grey-300);
}

.new-comment input:-ms-input-placeholder {
    color: var(--c-grey-300);
}

.new-comment input::placeholder {
    color: var(--c-grey-300);
}

.new-comment input:focus {
    border-color: var(--c-grey-300);
    outline: 0;
    box-shadow: 0 0 0 4px var(--c-grey-100);
}

.timeline-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -52px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 0 0 6px #fff;
}

.timeline-item-icon svg {
    width: 20px;
    height: 20px;
}

.timeline-item-icon.faded-icon {
    background-color: var(--c-grey-100);
    color: var(--c-grey-400);
}

.timeline-item-icon.filled-icon {
    background-color: var(--c-blue-500);
    color: #fff;
}

.timeline-item-icon.warning-filled-icon {
    background-color: #ffc107;
    color: #444;
}

.timeline-item-description {
    display: flex;
    padding-top: 6px;
    gap: 8px;
    color: var(--c-grey-400);
}

.timeline-item-description img {
    flex-shrink: 0;
}

.timeline-item-description a {
    color: var(--c-grey-500);
    font-weight: 500;
    text-decoration: none;
}

.timeline-item-description a:hover, .timeline-item-description a:focus {
    outline: 0;
    color: var(--c-blue-500);
}

.timeline-item-wrapper {
    width: 100%;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #f4f6f8;
    color: #7b7b7b;
}

.avatar.small {
    width: 28px;
    height: 28px;
}

.avatar img {
    -o-object-fit: cover;
    object-fit: cover;
}

.comment {
    margin-top: 12px;
    color: var(--c-grey-500);
    border: 1px solid var(--c-grey-200);
    box-shadow: 0 4px 4px 0 var(--c-grey-100);
    border-radius: 6px;
    padding: 16px;
    font-size: 1rem;
}

.button {
    border: 0;
    padding: 0;
    display: inline-flex;
    vertical-align: middle;
    margin-right: 4px;
    margin-top: 12px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    height: 32px;
    padding: 0 8px;
    background-color: var(--c-grey-100);
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 99em;
}

.button:hover {
    background-color: var(--c-grey-200);
}

.button.square {
    border-radius: 50%;
    color: var(--c-grey-400);
    width: 32px;
    height: 32px;
    padding: 0;
}

.button.square svg {
    width: 24px;
    height: 24px;
}

.button.square:hover {
    background-color: var(--c-grey-200);
    color: var(--c-grey-500);
}

.show-replies {
    color: var(--c-grey-300);
    background-color: transparent;
    border: 0;
    padding: 0;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.show-replies svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.show-replies:hover, .show-replies:focus {
    color: var(--c-grey-500);
}

.avatar-list {
    display: flex;
    align-items: center;
}

.avatar-list > * {
    position: relative;
    box-shadow: 0 0 0 2px #fff;
    margin-right: -8px;
}

.timeline-item-icon.avatar-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #f4f6f8;
    color: #7b7b7b;
}