/* - - - - - - - - - - - - -
	FONTS
 - - - - - - - - - - - - - */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

@import url('https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css');
/* - - - - - - - - - - - - -
	COLOURS
 - - - - - - - - - - - - - */

:root {
    --primary: #1879d4;
    --secondary: #dee5eb;
    --text: #1e2125;
    --gray-text: #8d9eab;
    --border: #e0e8f0;
    --light: #f7f8f9;
    --cool: #e8edf2;
    --success: #51af66;
}

body {
    background-color: #fff;
    font-family: 'GothamPro', Helvetica Neue, Helvetica, Sans-serif;
    font-weight: 300;
    color: var(--text);
    font-size: 1em;
}

p {
    margin: 0px;
}

.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1280px;
    position: relative;
}
.small-text {
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1.3rem;
}

small {
    line-height: 1;
}

.bg-cool {
    background-color: var(--cool);
}

/* - - - - - - - - - - - - -
	HELPERS
 - - - - - - - - - - - - - */

.transparent-bg {
    background-color: transparent !important;
}

.loading-text {
    background-color: var(--secondary);
    color: var(--secondary);
    border-radius: 4px;
}

.no-border {
    border: 0px !important;
}

/* - - - - - - - - - - - - -
	TYPOGRAPHY
 - - - - - - - - - - - - - */

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
}
h1 {
    font-size: 2.5em;
    line-height: 1.2em;
}
h2 {
    font-size: 1.75em;
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1.1em;
}
h5 {
    font-size: 1em;
    font-weight: 600;
}

.body-text {
    font-size: 1em;
    font-weight: 200;
}

.body-text-bold {
    font-size: 1em;
    font-weight: 500;
}

.white-text {
    color: #fff;
}

a .white-text:hover {
    text-decoration: underline;
    color: #fff;
}

.button-text {
    font-size: 1.125em;
    font-weight: 500;
}

.stat-text {
    font-size: 1.7em;
    font-weight: 200;
    line-height: 1;
}

.help-text {
    font-size: 0.8125em;
    font-weight: 400;
}

.modal-title {
    text-transform: lowercase;
}
/* - - - - - - - - - - - - -
	Nav
 - - - - - - - - - - - - - */

.navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: white;
    z-index: 20;
    border-bottom: 1px solid var(--border);
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.05);
}
.navbar a {
    font-weight: 400;
}
.nav-pad {
    height: 56px;
}

.nav {
    flex-wrap: nowrap;
    overflow-x: scroll;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.nav::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.nav {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.bottom-navbar {
    background-color: white;
    border-top: solid 1px var(--border);
    z-index: 100;
}
.bottom-nav-link {
    color: var(--gray-text);
    padding-bottom: 4px;
    padding-top: 8px;
}
.bottom-tab-label {
    font-size: 12px;
    margin-top: 3px;
}

.bottom-bar-pad {
    height: 54px;
}

/* - - - - - - - - - - - - -
	LAYOUT
 - - - - - - - - - - - - - */

.row:before {
    display: inline-block;
}

.row:after {
    display: inline-block;
}

/* - - - - - - - - - - - - -
	CARD
 - - - - - - - - - - - - - */

.card {
    border-radius: 16px;
    border: 0px;
    transition: ease 0.1s all;
}
.card-header {
    background-color: var(--light);
    border-bottom: 1px solid var(--border);
}
.card-header:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card:hover {
}
.card-img {
    border-radius: 16px;
    /* Add the blur effect */
    filter: blur(10px);
    -webkit-filter: blur(10px);
    transform: scale(1.2);
    height: 100%;
    overflow: hidden;
}

.card-footer {
    background-color: #fff;
    border: 0px;
}
.card-img-overlay {
}

.loading.campaign-card {
    border-radius: 16px;
    overflow: hidden;
}
.campaign-card {
    height: 300px;
    background: rgb(18, 117, 217);
    background: -moz-linear-gradient(
        351deg,
        rgba(18, 117, 217, 1) 0%,
        rgba(18, 154, 217, 1) 100%
    );
    background: -webkit-linear-gradient(
        351deg,
        rgba(18, 117, 217, 1) 0%,
        rgba(18, 154, 217, 1) 100%
    );
    background: linear-gradient(
        351deg,
        rgba(18, 117, 217, 1) 0%,
        rgba(18, 154, 217, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1275d9",endColorstr="#129ad9",GradientType=1);
}
.campaign-card:hover {
    cursor: pointer;
    background: rgb(33, 139, 245);
    background: -moz-linear-gradient(
        351deg,
        rgba(33, 139, 245, 1) 0%,
        rgba(18, 154, 217, 1) 100%
    );
    background: -webkit-linear-gradient(
        351deg,
        rgba(33, 139, 245, 1) 0%,
        rgba(18, 154, 217, 1) 100%
    );
    background: linear-gradient(
        351deg,
        rgba(33, 139, 245, 1) 0%,
        rgba(18, 154, 217, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1275d9",endColorstr="#129ad9",GradientType=1);
}

.extras-card {
    padding: 8px;
    background-color: var(--cool);
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 0.9em;
    font-weight: 500;
}

.card.no-hover:hover {
    box-shadow: none;
    transform: none;
}

.light-hover:hover {
    cursor: pointer;
    background-color: var(--cool) !important;
}

/* - - - - - - - - - - - - -
	PART CARD 
 - - - - - - - - - - - - - */

.part-image {
    width: 100%;
    height: 200px;
    background-color: var(--light);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

/* - - - - - - - - - - - - -
	ARTWORK CARD 
 - - - - - - - - - - - - - */
.artwork .card-img-top {
    border-radius: 4px;
    border: 1px solid var(--border);
}

.artwork .card-body {
    padding: 20px 0px;
    color: var(--text);
}

.artwork.card {
    border-radius: 0px;
    transition: 0.2s ease;
}

.artwork .card-title {
    font-weight: bold;
}

.artwork.card:hover {
    transform: none;
    box-shadow: none;
    cursor: pointer;
}

/* - - - - - - - - - - - - -
	USER CARD 
 - - - - - - - - - - - - - */
.user .card-body {
    color: var(--text);
}
.user .card {
    border: 1px solid var(--border);
    border-radius: 4px;
}

/* - - - - - - - - - - - - -
	BUTTON
 - - - - - - - - - - - - - */

.btn {
    border-radius: 4px;
}

.btn-lg {
    padding: 0.6rem 1rem 0.4rem 1rem;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--text);
}

/* - - - - - - - - - - - - -
	INPUTS
 - - - - - - - - - - - - - */

.form-control {
    border-radius: 4px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}
.form-control-lg {
    padding: 0.6rem 1rem 0.5rem 1rem;
}

.is-valid {
    background-image: none !important;
    padding-right: 0px !important;
}
.form-label {
    font-size: 14px;
    font-weight: 500;
}

.search-bar-container {
    position: relative;
}
.search-bar-container i {
    position: absolute;
    height: 42px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
}
.search-bar {
    width: auto;
    padding-left: 44px;
}

.currency-input {
    margin: 3em;
    padding-left: 2em;
    padding-top: 1em;
    padding-bottom: 1em;
}

.currency {
    position: relative;
    background-color: #dedede;
    display: inline;
}

.currency:before {
    content: '$';
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 1;
}

/* - - - - - - - - - - - - -
	TABLE 
 - - - - - - - - - - - - - */

table {
    width: 100%;
    font-weight: 400;
    row-gap: 10px;
    border-collapse: separate;
    border-spacing: 0 0px;
}

td {
    display: table-cell;
    vertical-align: middle !important;
    padding: 16px !important;
    border-bottom: 1px solid var(--secondary);
    /*background-color: var(--light);
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);*/
}

.transparent-row td {
    background-color: transparent !important;
}

.row-left-border {
    border-left: 10px solid var(--border) !important;
}

thead {
    font-size: 15px;
    color: #898989;
}
th {
    font-weight: 400;
    background-color: transparent;
    padding: 10px 20px !important;
    border: 0px !important;
}
thead td {
    background-color: transparent;
    border: none;
    padding: 4px 16px !important;
}

tr:last-child td {
    border-bottom: 0px;
}

tr {
}

.dragging {
    display: table;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 3px 3px 10px rgba(0, 0, 100, 0.2);
}

/*
tr td:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--secondary);
    border-right: 0px;
}
tr td:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid var(--secondary);
    border-left: 0px;
}
*/
thead td:first-child,
thead td:last-child {
    border: 0px;
}

.table-dark-bg {
    background-color: var(--border);
}

/* - - - - - - - - - - - - -
	DATA TABLE 
 - - - - - - - - - - - - - */
.data-table {
    width: 100%;
    font-weight: 200;
    border-collapse: separate;
    border-spacing: 0px;
}
.data-table tr td {
    background-color: transparent;
    border: 1px solid var(--secondary) !important;
    padding: 10px !important;
    border-radius: 0px !important;
    font-size: 14px;
}

/* - - - - - - - - - - - - -
	JUMBOTRON 
 - - - - - - - - - - - - - */

.jumbotron {
    margin-bottom: 0px;
    background-color: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 1;
    padding-left: 0px;
    padding-right: 0px;
    overflow: hidden;
}

/* - - - - - - - - - - - - -
	TABS
 - - - - - - - - - - - - - */

.nav-tabs {
    border: none;
    font-weight: 400;
    font-size: 16px;
}
.nav-tabs .nav-link {
    border: 0px;
    border-top: 3px solid transparent;
    padding: 8px 0px;
    border-radius: 0px;
    margin-right: 48px;
    color: var(--text);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background-color: transparent;
    border-color: transparent;
    border-top: 3px solid var(--primary);
    border-radius: 0px;
    color: var(--primary);
}

/* - - - - - - - - - - - - -
	VERTICAL TABS
 - - - - - - - - - - - - - */

.nav-pills .nav-item {
    font-weight: 400;
}

.nav-pills .nav-item .nav-link {
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 8px;
    color: var(--text);
}

.nav-pills .nav-item .nav-link.active {
    background-color: var(--secondary);
}

/* - - - - - - - - - - - - -
	ROWS & COLS
 - - - - - - - - - - - - - */

.with-padding {
    padding-left: 16px;
    padding-right: 16px;
}
.without-padding {
    padding: 0px !important;
}

/* - - - - - - - - - - - - -
	BADGE
 - - - - - - - - - - - - - */
.badge {
    font-weight: 400;
    padding: 6px 8px;
    margin-right: 8px;
}
.badge-secondary {
    background-color: var(--secondary);
    color: var(--text);
}
.badge-pill {
    padding: 8px 12px;
    border-radius: 10rem;
    font-weight: 500;
}
.badge-warning {
    background-color: #ffe31f;
}

/* - - - - - - - - - - - - -
	TOAST
 - - - - - - - - - - - - - */
.toast {
    background-color: var(--primary);
    color: #fff;
    border: 0px;
}

/* - - - - - - - - - - - - -
	DROPDOWN MENU
 - - - - - - - - - - - - - */

.dropdown-menu {
    top: 110%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 350px;
    overflow-y: scroll;
}
.dropdown {
    position: relative !important;
}

.dropdown-toggle::after {
    vertical-align: 0.155em;
    margin-left: 0.555em;
}
.nested-dropdown {
    color: var(--text);
    background-color: var(--secondary);
    border-radius: 4px;
    display: inline-block;
    height: calc(1.6em + 0.75rem + 2px);
    padding: 0px;
    font-size: 0.9rem;
}
.nested-dropdown a {
    color: var(--text);
    font-weight: 500;
}

.campaign-card-menu .dropdown-menu {
    inset: 0px 0px auto auto !important;
}

/* - - - - - - - - - - - - -
	SETTINGS
 - - - - - - - - - - - - - */

.setting-segment {
    padding: 24px 0px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border);
}

/* - - - - - - - - - - - - -
	AVATAR 
 - - - - - - - - - - - - - */

.img-thumbnail {
    padding: 1px;
}

.avatar {
    border-radius: 50%;
    background-size: cover;
    background-color: var(--secondary);
    background-position: 50% 50%;
}
.avatar-small {
    width: 40px;
    height: 40px;
}

.avatar-medium {
    width: 60px;
    height: 60px;
}

.avatar-large {
    width: 80px;
    height: 80px;
}

/* - - - - - - - - - - - - -
	COMPANY LOGO
 - - - - - - - - - - - - - */

.logo-placeholder {
    background-size: cover;
    background-position: 50% 50%;
    background-color: var(--secondary);
    width: 100px;
    height: 100px;
    border-radius: 4px;
}

/* - - - - - - - - - - - - -
	PROGRESS 
 - - - - - - - - - - - - - */

.progress {
    border-radius: 20px;
    height: 12px;
}

.progress-bar {
    border-radius: 20px;
    transition: unset;
}

/* - - - - - - - - - - - - -
	PERMISSIONS LIST
 - - - - - - - - - - - - - */

.permission {
    border-top: 1px solid var(--border);
}

/* - - - - - - - - - - - - -
	LIST GROUP
 - - - - - - - - - - - - - */
.list-group-item {
    padding: 20px 20px;
    font-weight: 400;
    border: 0px;
    border-top: 1px solid var(--border);
    color: var(--text);
}

/* - - - - - - - - - - - - -
	LIST
 - - - - - - - - - - - - - */
.list-toolbar {
    padding-left: 15px;
    padding-right: 15px;
    position: -webkit-sticky;
    position: sticky;
    top: 58px;
    z-index: 10;
}
.list-toolbar-item:first-child {
    padding-left: 0px;
}
.list-toolbar-item:last-child {
    padding-right: 0px;
}
.list-toolbar-item {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 5px;
    padding-left: 5px;
}

.hover {
    transition: all 0.2s ease;
}
.hover:hover {
    background-color: var(--secondary);
    cursor: pointer;
}

/* - - - - - - - - - - - - -
	ACCORDION
 - - - - - - - - - - - - - */
.accordion {
    margin-bottom: 10px;
    border: 1px solid var(--secondary);
    border-radius: 4px;
}
.accordion .card {
    border-radius: 4px;
}

/* - - - - - - - - - - - - -
	TOGGLE
 - - - - - - - - - - - - - */

/* The switch - the box around the slider */
.switch {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.slider:before {
    position: absolute;
    content: '';
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

input:checked + .slider.disabled-switch {
    background-color: var(--text);
}

label {
    text-transform: lowercase;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* - - - - - - - - - - - - -
	Thumbnail
 - - - - - - - - - - - - - */

.artwork-thumb {
    width: 50px !important;
    height: 50px !important;
    border-radius: 4px;
    background-size: cover;
    background-position: 50% 50%;
    background-color: var(--secondary);
}
.artwork-select {
    max-width: 200px;
}

.thumbnail {
    border-radius: 4px;
    background-size: cover;
    background-position: 50% 50%;
    background-color: var(--secondary);
}

/* - - - - - - - - - - - - -
	Skeleton
 - - - - - - - - - - - - - */

/* The loading Class */
.loading {
    position: relative;
    background-color: var(--secondary);
    pointer-events: none;
}

/* The moving element */
.loading::after {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(transparent),
        color-stop(rgba(182, 206, 219, 0.8)),
        to(transparent)
    );

    background: linear-gradient(
        90deg,
        transparent,
        rgba(247, 252, 255, 0.8),
        transparent
    );

    /* Adding animation */
    animation: loading 0.8s infinite;
}

/* Loading Animation */
@keyframes loading {
    100% {
        transform: translateX(100%);
    }
}

.list-skeleton-item {
    width: 100%;
    height: 70px;
    margin-bottom: 10px;
    background-color: var(--light);
    border-radius: 4px;
    border: 1px solid var(--border);
}

/* - - - - - - - - - - - - -
	GRAPHICS
 - - - - - - - - - - - - - */

.header-graphic {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    overflow: hidden;
    text-align: right;
    pointer-events: none;
}

.header-graphic-contained {
    position: absolute;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: right;
    z-index: -3;
    pointer-events: none;
}

.graphic {
    position: absolute;
    z-index: -1;
}

.graphic-top-left {
    top: 0px;
    left: 0px;
}

.graphic-top-right {
    top: 0px;
    right: 0px;
}

.graphic-bottom {
    bottom: 0px;
}

.graphic-bottom-right {
    bottom: 0px;
    right: 0px;
}

/* - - - - - - - - - - - - -
	Inputs
 - - - - - - - - - - - - - */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 40px !important;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
}

select:empty {
    color: var(--gray-text);
}

input {
    background-color: transparent !important;
}
input:hover,
input:focus {
    background-color: #fff !important;
    border-color: var(--primary);
}
input[disabled] {
    background-color: var(--secondary) !important;
    border-color: var(--border);
    box-shadow: none;
}

select {
    background-color: transparent !important;
}
select:hover,
select:focus {
    background-color: #fff !important;
    border-color: var(--primary);
}
select[disabled] {
    background-color: var(--secondary) !important;
    border-color: var(--border);
    box-shadow: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

textarea,
input[type='text'],
input[type='button'],
input[type='submit'] {
    -webkit-appearance: none;
    -moz-appearance: none;
}

option {
    white-space: pre-wrap;
}

input select:valid {
    background-image: none;
}

input select:invalid {
    background-image: none;
}

/* - - - - - - - - - - - - -
	REACT SELECT (Multi-select Package)
 - - - - - - - - - - - - - */

.react-select__value-container {
    font-size: 0.9em !important;
}
.react-select__multi-value {
    background-color: var(--secondary) !important;
    font-size: 0.9rem;
}
.react-select--is-disabled .react-select__control {
    background-color: #e9ecef !important;
    border: 1px solid #ced4da;
}

/* - - - - - - - - - - - - -
	RESPONSIVE 
 - - - - - - - - - - - - - */

@media screen and (max-width: 576px) {
    .list-toolbar {
        top: 0px;
        position: relative;
    }
    .search-bar {
        width: 100%;

        max-width: unset;
    }
    .mobile-block {
        display: block;
    }
    .mobile-flex {
        display: flex;
    }
    .mobile-hide {
        display: none;
    }

    /* TABLE */

    table {
        border-spacing: 0 0px;
    }
    td {
        display: flex;
        flex-direction: row;
        align-items: center;
        border-bottom: 0px;
        border-top: 0px;
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
        padding: 10px !important;
    }
    .table td {
        border-top: 0px;
        border-bottom: 1px solid var(--border);
    }
    thead {
        display: none;
    }

    tr td:first-child {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        border: 1px solid var(--secondary);
        border-bottom: 0px;
        background-color: var(--light);
    }
    tr td:last-child {
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border: 1px solid var(--secondary);
        border-top: 0px;
        margin-bottom: 24px;
    }

    /* DATA TABLE */

    .data-table tr td {
        display: table-cell;
    }

    .data-table tr td:first-child {
        display: table-cell;
        background-color: transparent;
    }
    /*
		TABS
	*/

    .nav-tabs .nav-link {
        margin-right: 32px;
    }

    .nav-tabs .nav-link:last-child {
        margin-right: 0px;
    }

    .stat-text {
        font-size: 2.6em;
    }

    h1 {
        font-size: 2em;
    }

    /* CARD */
    .campaign-card {
        height: 240px;
    }
}

/* - - - - - - - - - - - - -
	EXTERNAL
 - - - - - - - - - - - - - */
.login-content-pane {
    box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* - - - - - - - - - - - - -
	SIDEBAR
 - - - - - - - - - - - - - */

.sidebar {
    border-right: 1px solid var(--cool);
    height: 100vh;
}

#sidebar-wrapper {
    position: fixed;
    -webkit-transition: margin 0.25s ease-out;
    -moz-transition: margin 0.25s ease-out;
    -o-transition: margin 0.25s ease-out;
    transition: margin 0.25s ease-out;
}
#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#page-content-wrapper {
    min-width: 0;
    width: 100%;
}

/* - - - - - - - - - - - - -
	IMAGE GALLERY
 - - - - - - - - - - - - - */
.gallery {
    display: flex;
    flex-direction: flex-row;
    flex-wrap: wrap;
}
.gallery-item {
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 3px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border: 1px solid var(--gray-text);
}

.gallery-item img {
    max-height: 150px;
}
