:root {
	--gray-base: #202430;
	--gray-shade-60: #13161D;
	--gray-tint-30: #63666E;
	--gray-tint-50: #909298;
	--gray-tint-80: #D2D3D6;
	--gray-alpha-80: rgb(32 36 48 / .8); /* CSS Colors Level 4 */
	--gray-tint-90: #E9E9EA;

	--white-base: #fff;
	--primary-base: #358FE6;

	--extras-sun: #FFD371;
	--extras-moon: #7190FF;
	--extras-black-alpha-64: rgb(0 0 0 / .64);
	--extras-white-alpha-64: rgb(255 255 255 / .64);


    /* new colors */

    --deep-sea-base: #007564;
	--deep-sea-shade-60: #004138;
	--deep-sea-tint-30: #66b4a9;
	--deep-sea-tint-50: #99cdc5;
	--deep-sea-tint-80: #cce6e2;
	--deep-sea-alpha-80: #091614; /* CSS Colors Level 4 */
	--deep-sea-tint-90: #e6f3f1;

	--deep-sea-tint-20: #00BCA0;
}

:root[data-theme="dark"] {
	--main-header-bg: var(--gray-shade-60);
	--top-bar-icon-fill: var(--gray-tint-80);
	--sidebar-bg: var(--gray-base);
	--sidebar-icon-fill: var(--gray-tint-50);
	--sidebar-icon-active-fill: var(--white-base);
	--sidebar-link-color: var(--gray-tint-50);
	--sidebar-link-active-color: var(--white-base);
	--sidebar-menu-heading-color: var(--gray-tint-30);
	--theme-switcher-bg: var(--gray-shade-60);
	--theme-switcher-indicator: var(--extras-moon);
	--theme-switcher-indicator-pos: 3.25rem;
	--sun-icon-fill: var(--gray-tint-30);
	--moon-icon-fill: var(--extras-white-alpha-64);
	--main-header-link-color: var(--gray-tint-80);

    /*--main-header-bg: var(--deep-sea-shade-60);
	--top-bar-icon-fill: var(--deep-sea-tint-80);
	--sidebar-bg: var(--deep-sea-base);
	--sidebar-icon-fill: var(--deep-sea-tint-50);
	--sidebar-icon-active-fill: var(--white-base);
	--sidebar-link-color: var(--deep-sea-tint-50);
	--sidebar-link-active-color: var(--white-base);
	--sidebar-menu-heading-color: var(--deep-sea-tint-30);
	--theme-switcher-bg: var(--deep-sea-shade-60);
	--theme-switcher-indicator: var(--extras-moon);
	--theme-switcher-indicator-pos: 3.25rem;
	--sun-icon-fill: var(--deep-sea-tint-30);
	--moon-icon-fill: var(--extras-white-alpha-64);
	--main-header-link-color: var(--deep-sea-tint-80);*/

	--table-icon-fill: var(--deep-sea-base);
	--table-font-color: var(--deep-sea-alpha-80);
}

:root[data-theme="light"] {
	--main-header-bg: var(--gray-tint-80);
	--top-bar-icon-fill: var(--gray-base);
	--sidebar-bg: var(--gray-tint-90);
	--sidebar-icon-fill: var(--gray-tint-50);
	--sidebar-icon-active-fill: var(--gray-base);
	--sidebar-link-color: var(--gray-tint-50);
	--sidebar-link-active-color: var(--gray-base);
	--sidebar-menu-heading-color: var(--gray-tint-50);
	--theme-switcher-bg: var(--gray-tint-80);
	--theme-switcher-indicator: var(--extras-sun);
	--theme-switcher-indicator-pos: .25rem;
	--sun-icon-fill: var(--extras-black-alpha-64);
	--moon-icon-fill: var(--gray-tint-50);
	--main-header-link-color: var(--gray-base);

	
}

/*
.bg-danger-subtle {
    background-color: #2c0b0e!important;
}
.text-danger-emphasis {
    color: #ea868f !important;
}*/

/* ================================================= */
/* General styles */
/* ================================================= */
html {
	/*font-size: 100%;*/
	line-height: 1.4;
    font-size: 1rem;
}

body {
	font-family: 'Figtree', sans-serif;
	color: var(--deep-sea-alpha-80);
}
.z-4 {
    z-index: 4;
}
.z-5 {
    z-index: 5;
}
.top-25 {
    top: 25%!important;
}


/* ================================================= */
/* Main header */
/* ================================================= */
#main-header {
	background-color: var(--main-header-bg);
	padding: 1rem 1.5rem;
	transition: background-color .4s ease-in-out;
}

#main-header nav,
#main-header ul,
#main-header a {
	display: flex;
	align-items: center;
}

#main-header nav {
	justify-content: space-between;
}

#main-header nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

#main-header svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: var(--top-bar-icon-fill);
	transition: fill .4s ease-in-out;
}

#main-header__sidebar-toggle {
	appearance: none;
	background-color: transparent;
	border: none;
}

#toggle-icon-close,
body.sidebar-open #toggle-icon-menu {
	display: none;
}

body.sidebar-open #toggle-icon-close {
	display: block;
}

#main-header__logo,
#main-header a span {
	display: none;
}



/* ================================================= */
/* Main */
/* ================================================= */
#main {
	position: relative;
    height: 100vh;
}



/* ================================================= */
/* Sidebar */
/* ================================================= */
#sidebar {
	background-color: var(--sidebar-bg);
	/*padding: 1.5rem 0 1.5rem 1.5rem;*/
    padding: 1.5rem 3rem;
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	/*gap: 4rem;*/
	gap: 1rem;
	z-index: 3;
	min-height: 100%;
	align-items: flex-start;
	transform: translate3d(-100%, 0, 0);
	transition: transform .4s ease-in-out, background-color .4s ease-in-out;
}

#sidebar svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: var(--sidebar-icon-fill);
	transition: fill .4s ease-in-out;
}

#sidebar__collapse {
	display: none;
}

#sidebar__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#sidebar__nav ul a {
	display: flex;
	padding: .75rem 0;
	gap: .75rem;
    cursor: pointer;
	align-items: center;
	text-decoration: none;
	color: var(--sidebar-link-color);
	padding-right: 3rem;
	transition: color .3s ease-in-out;
}

#sidebar__nav ul a.active {
	color: var(--sidebar-link-active-color);
}

#sidebar__nav ul a.active svg {
	fill: var(--sidebar-icon-active-fill);
}

#sidebar__nav ul a:hover {
	color: var(--sidebar-link-active-color);
}

#sidebar__nav ul a:hover svg {
	fill: var(--sidebar-icon-active-fill);
}

.menu-heading {
	color: var(--sidebar-menu-heading-color);
	font-size: 81.25%;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	padding: .75rem 0;
}

#sidebar__theme-switcher {
	background-color: var(--theme-switcher-bg);
	border-radius: 50px;
	display: flex;
	align-items: center;
	padding: 0.875rem;
	gap: 1.75rem;
	position: relative;
	cursor: pointer;
	transition: background-color .4s ease-in-out;
}

#sidebar__theme-switcher::before {
	content: '';
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--theme-switcher-indicator);
	border-radius: 50px;
	z-index: 0;
	left: 0;
	transform: translateX(var(--theme-switcher-indicator-pos));
	transition: transform .4s ease-in-out;
}

#sidebar__theme-switcher svg {
	z-index: 1;
}

#sidebar #sidebar__theme-switcher__sun {
	fill: var(--sun-icon-fill);
}

#sidebar #sidebar__theme-switcher__moon {
	fill: var(--moon-icon-fill);
}

#overlay {
	position: absolute;
	inset: 0;
	background-color: var(--gray-alpha-80);
	opacity: 0;
	transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
	overflow: hidden;
	visibility: hidden;
	z-index: 2;
}

body.sidebar-open #overlay {
	opacity: 1;
	visibility: visible;
}

body.sidebar-open #sidebar {
	transform: translate3d(0, 0, 0);
}
.cursor-p {
	cursor: pointer;
}
.cursor-ndrop {
	cursor: not-allowed;
}
.no-rounded-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.no-rounded-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
table svg {
	width: 1.5rem;
	height: 1.5rem;
	cursor: pointer;
	fill: var(--gray-base);
	transition: fill .4s ease-in-out;
}

.table>:not(caption)>*>*, .modal-content {
	color: var(--table-font-color);
}
.modal-content svg {
    fill: var(--gray-base);
}
table svg.svg--red {
    fill: #820013;
}
table svg.svg--tirkiz {
    fill: #008262;
}
table svg.svg--chart {
	/*fill: #DBBA1D;*/
    fill: #ffc107
}
table svg.svg--success {
    fill: rgba(var(--bs-success-rgb));
}
table svg.svg--warning {
    fill: rgba(var(--bs-warning-rgb));
}
table svg.svg--danger {
    fill: rgba(var(--bs-danger-rgb));
}
table svg.svg--grey {
    fill: #63666E;
}
.bg-tertiary {
    background-color: var(--bs-tertiary-bg);
}
.w-fc {
    width: fit-content;
}
.w-5 {
    width: 5% !important;
}
.w-10 {
    width: 10% !important;
}
.w-15 {
    width: 15% !important;
}
.w-20 {
    width: 20% !important;
}
.w-30 {
    width: 30% !important;
}
.w-40 {
    width: 40% !important;
}
.w-45 {
    width: 45% !important;
}
.filterCheckbox {
	width: fit-content;
    margin: auto;
}
#chart-content {
	min-height: 1200px;
}
.rotate-icon {
    transform: scaleY(-1) rotate(90deg);
}
.layoverText {
    color: #820013;
}
.flightContectBorder {
    position: relative;
}
.flightContectBorder:before {
    content: '';
    width: 2px;
    height: calc(100% - 9%);
    position: absolute;
    top: 10px;
    left: 6px;
    --spacing: .3em;
    line-height: var(--spacing);
    background-image: repeating-linear-gradient(var(--deep-sea-base) 0 var(--spacing), #fff 0 calc(var(--spacing) * 2));
}

.flightSegmnet {
    position: relative;
}

.flightSegmnet:before {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 10px;
    left: 3px;
    border-radius: 4px;
    border: 2px solid;
    border-color: var(--deep-sea-base);
    background: #fff;
}

.flightSegmnet:last-of-type:before {
    top: auto;
    bottom: 12px;
}
.login-conteiner{
    width: 100%;
}
.login-header {
    background-color: var(--deep-sea-base);
}
.btn-login {
    background-color: var(--deep-sea-base);
}
.btn-login:hover {
    background-color: var(--deep-sea-shade-60);
}
i.active {
    color: #0d6efd;
}
.custom-width {
    width: 250px; 
}

#chartFilterMonths {
    padding: 0 2rem;
}
.airlineColor {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 0.25rem;
    border-radius: 3px;
}
.cursor_p {
    cursor: pointer;
}
.custom-file-button input[type=file] {
    margin-left: -2px !important;
  }
  
  .custom-file-button input[type=file]::-webkit-file-upload-button {
    display: none;
  }
  
  .custom-file-button input[type=file]::file-selector-button {
    display: none;
  }
  
  .custom-file-button:hover label {
    background-color: #dde0e3;
    cursor: pointer;
  }
.calendar {
    display: flex;
    flex-flow: column;
    /*margin-top: -105px;*/
}
.calendar .header .month-year {
    font-size: 20px;
    font-weight: bold;
    color: #636e73;
    padding: 20px 0;
}
.calendar .days {
    display: flex;
    flex-flow: wrap;
    border-bottom: 1px solid #818589;;
}
.calendar .days .day_name {
    width: calc(100% / 7);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #818589;
    padding: .5rem;
    /*background-color: var(--sidebar-bg);*/
    border-bottom: 1px solid;
    margin-bottom: .5rem;
}
/*
.calendar .days .day_name:nth-child(7) {
    border: none;
}*/
.calendar .days .day_num {
    display: flex;
    flex-flow: column;
    width: calc(100% / 7);
    /*border-right: 1px solid #e6e9ea;*/
    /*border-bottom: 1px solid #e6e9ea;*/
    /*padding: 15px;*/
    font-weight: bold;
    color: #7c878d;
    /*cursor: pointer;*/
    min-height: 83px;
}
.calendar .days .day_num span {
    display: inline-flex;
    width: 30px;
    font-size: 14px;
    padding-top: .2rem;
    padding-left: .5rem;
    padding-right: .5rem;
}
.calendar .days .day_num .event {
    /*margin-top: 10px;*/
    font-weight: 500;
    font-size: 14px;
    /*padding: 3px 6px;*/
    padding-top: .5rem;
    /*border-radius: 4px;*/
    /*background-color: #f7c30d;*/
    color: #495057;
    white-space: nowrap;
    overflow-x: hidden;
    cursor: pointer;
    padding: .2rem .5rem;
    /*word-wrap: break-word;*/
}
/*
.calendar .days .day_num .event.green {
    background-color: #51ce57;
}
.calendar .days .day_num .event.blue {
    background-color: #518fce;
}
.calendar .days .day_num .event.red {
    background-color: #ce5151;
}
.calendar .days .day_num:nth-child(7n+1) {
    border-left: 1px solid #e6e9ea;
}*/
.calendar .days .day_num .event:hover {
    background-color: #f7f7f7;
}
.calendar .days .day_num .event.bg-danger:hover {
    background-color: #ffe0e4 !important;
}
.calendar .days .day_num .event.bg-success:hover {
    background-color: #cee7dc !important;
}
.calendar .days .day_num.ignore {
    background: #f9f9f9;
    color: #ced2d4;
    cursor: inherit;
    padding: .2rem .5rem;
}
/*
.calendar .days .day_num.selected {
    background-color: #f1f2f3;
    cursor: inherit;
}*/
.month-year svg {
    height: 24px;
    width: 24px;
    cursor: pointer;
    fill: #636e73;
    user-select: none;
} 
.tooltip-inner {
    max-width: 250px;
}
.lastCellHeader {
    min-width: 80px;
    width: 1%;
    white-space: nowrap;
}
.typeahead.dropdown-menu li.active, .typeahead.dropdown-menu li.active:hover, .typeahead.dropdown-menu li.active a.dropdown-item:hover {
	background: #0d6efd;
}
.typeahead.dropdown-menu li.active a.dropdown-item{
	color: #fff;
}
th > .position-relative > .position-absolute.top-50.start-100.translate-middle {
    margin-right: .3125rem;
    padding-bottom: 0.5rem;
}
.custom-batch .dropdown-menu.show {
    max-width: fit-content !important; /* Adjust the value as needed */
}
.custom-batch .dropdown-menu.show .bs-searchbox input {
    background: transparent;
}
/*
#contentContract .dropdown.bootstrap-select {
    max-width: 300px;
}
#contentContract .dropdown-menu.show {
    inset: 45px auto auto 0px !important;
    transform: inherit !important;
}*/
/*
.bootstrap-select.redesign.dropdown .dropdown-menu.show {
    inset: 40px auto auto 0px !important;
    transform: inherit !important;
}
.bootstrap-select.redesign .dropdown-menu .inner::-webkit-scrollbar {
     width: 8px;
}
 
 .bootstrap-select.redesign .dropdown-menu .inner::-webkit-scrollbar-track {
     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
     border-radius: 4px;
     background-color: #f7e4cb;;
 }
 
 .bootstrap-select.redesign .dropdown-menu .inner::-webkit-scrollbar-thumb {
     border-radius: 4px;
     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
     background-color: #0a121a;
 }*/



/*
.bootstrap-select.redesign.dropdown .filter-option-inner-inner {
    padding: 0 !important;
}*//*
.typeahead.dropdown-menu {
	margin-top: 3px;
	width: calc(100% - 6%);
	border: 0;
	box-shadow: var(--bs-box-shadow)!important;
}

.bootstrap-select button.dropdown-toggle .filter-option .filter-option-inner-inner {
    padding: 9px 0;
}
#filterCalendar .bootstrap-select button.dropdown-toggle .filter-option .filter-option-inner-inner {
    padding: 0 !important;
}*/
/*
.bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle {
    border-color: #fff !important;
}
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
    outline: none !important;
}
.bootstrap-select .bs-searchbox input:focus {
    border-color: #0d6efd !important;
    box-shadow: none !important;
}
.bs-searchbox+.bs-actionsbox {
    padding: .5rem;
    text-align: center;
}
.bs-actionsbox .btn-group button {
    color: #ffffff;
    background-color: #0d6efd;
    border-radius: .3rem !important;
    width: 48%;
}
.btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn.dropdown-toggle-split:first-child, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    margin-right: .5rem;
}*/
/*.bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover*/
/* ================================================= */
/* Main content */
/* ================================================= */
#main-content {
	padding: .5rem;
}

#main-content__container {
	/*border: var(--gray-tint-50) 1px dashed;
	border-radius: 8px;
	height: calc(100vh + 10rem);
	display: grid;
	place-content: center;*/
    /*height: 100vh;*/
    /*max-width: 1320px;*/
}
/*
.ui-widget.ui-widget-content {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
}
.ui-widget-header {
    background-color: #fff;
    border: 0;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid;
    border-color: #0d6efd;
}
.ui-datepicker th {
    color: #0d6efd;
    /*border-bottom: 1px solid;
    border-color: #0d6efd;*//*
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 0;
    background: #fff;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    color: inherit;
}
.ui-state-default, .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    border-radius: 0.3rem;
}
.ui-state-default:hover {
    background: #0d6efd;
    color: #fff;
}*/
.ui-datepicker-calendar th{
	min-width:35px;	
}
.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all,.ui-widget-header {
	background: #ffffff;
	border:none;

	border-bottom: 1px solid #0d6efd;
	border-radius: 0 !important;
	padding-bottom:10px !important;
	padding-top:10px !important;	
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all{
	-webkit-box-shadow:  0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	-moz-box-shadow:  0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	-ms-box-shadow:  0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	-o-box-shadow:  0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	box-shadow:  0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	background: #ffffff !important;
	border-radius: .3rem !important;
    border: 0;
    padding: 0.5rem;
}
.ui-state-default,.ui-widget-content.ui-state-default,.ui-widget-header.ui-state-default{
	border:none !important;
}
.ui-datepicker td{
	padding:0;	
}
.ui-datepicker th{
	color: #808080 !important;	
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	background: #fff;
    color: #797979 !important;
}
.ui-state-default{
	text-align:center !important;	
}
.ui-datepicker-title{
	color:#0d6efd !important;	
}
.ui-datepicker-calendar{
	background:#ffffff !important;
	margin-bottom:10px !important;
}
.ui-state-default.ui-state-hover:hover{
	background: #0d6efd !important;
	color:#ffffff !important;
	border-radius:3px;
}
/*.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight{
	background: #58c9f3 !important;
	color:#ffffff !important;
	border-radius:3px;
}*/
.ui-state-active, .ui-widget-content .ui-state-active{
	background: #0d6efd !important;
	color:#ffffff !important;
	border-radius:3px;
}
.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next {
	top: 9px !important;	
}
.ui-datepicker-prev span{
	/*background:url(../icons/dark/expand_more.svg) !important;*/
    background-image: url(/fp/assets/icons/dark/arrow_left.svg) !important;
}
.ui-datepicker-next span{
	background:url(/fp/assets/icons/dark/arrow_right.svg) !important;	
}
.ui-icon-circle-triangle-w{
	background-position:center !important;
}
.ui-icon-circle-triangle-e{
	background-position:1px !important;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{
	margin-top: -11px !important;
    margin-left: -11px !important;
}
.ui-icon {
	width: 24px !important;
	height: 24px !important;
}
.ui-datepicker-month[data-event], .ui-datepicker-year[data-event]{
	border: none;
	text-align: center !important;
	color: #0d6efd;
	cursor: pointer;
	border-bottom: 1px solid #0d6efd;
}
.ui-datepicker-month[data-event]{
	margin-right:3px !important;
}
@media screen and (max-width: 767px) {
    .btn-group-vertical>.btn, .btn-group>.btn {
        padding: .4rem;
    }
}
/* ================================================= */
/* Large screens */
/* ================================================= */
@media screen and (min-width: 768px) {
    .login-conteiner{
        width: 50%;
    }
    #main-content {
        padding: 1.5rem;
    }
	#main-header__sidebar-toggle {
		display: none;
	}

	#main-header__logo {
		display: block;
	}

	#main-header svg {
		width: 1.25rem;
		height: 1.25rem;
	}

	#main-header__logo svg {
		width: 2rem;
		height: 2rem;
	}

	#main-header a {
		text-decoration: none;
	}

	#main-header a span {
		display: inline-block;
		font-size: 81.25%;
		color: var(--main-header-link-color);
		transition: color .4s ease-in-out;
	}

	#main-header a {
		gap: .5rem;
	}

	#sidebar {
		position: relative;
		transform: none;
	}

	#main {
		display: grid;
		grid-template-columns: auto 1fr;
	}

	#sidebar__collapse {
		display: flex;
		align-items: center;
		gap: .75rem;
		padding: .75rem 0;
		appearance: none;
		background: transparent;
		border: none;
		font-size: 81.25%;
		color: var(--primary-base);
		cursor: pointer;
	}

	#sidebar__collapse svg {
		fill: var(--primary-base);
	}

	body.sidebar-collapsed .menu-heading,
	body.sidebar-collapsed #sidebar span {
		display: none;
	}

	body.sidebar-collapsed #sidebar__theme-switcher {
		display: none;
	}

	body.sidebar-collapsed #sidebar {
		/*padding-right: 1.5rem;*/
		padding: 1.5rem;
	}

	body.sidebar-collapsed #sidebar a,
	body.sidebar-collapsed #sidebar__collapse {
		width: 2.75rem;
		padding-right: 0;
		justify-content: center;
	}

	body.sidebar-collapsed #sidebar__collapse svg {
		transform: rotate(180deg);
	}
}