/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

i {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

strong, b { font-weight: bold; }

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

a, a:hover {
	color: inherit;
	text-decoration: none;
}
/************************* Global variables *************************************/
/*to use do: rgb(var([var-name]))*/ 
:root {
	--style-link: 41, 98, 156;
	--style-stroke: 231, 231, 231;
	--style-neutral-light: 213, 218, 221;
	--style-neutral-hover: 200, 203, 205;
	--style-neutral-active: 128 143 153;
	--style-dark: 20, 20 ,20;
	--color-light-gray: 250, 250, 250;
	--color-dark-gray: 47, 48, 51;
	--color-white-gray: 241, 240, 244; 
	--color-white: 255, 255, 255;
	--color-black: 12, 36, 58;
	--color-golden: 192, 149, 83;
	--background-surface-3: 222, 239, 254;
	--background-surface-3-active: 153, 207, 255;
	--background-surface-2: 234, 240, 246;
	--background-surface-1: 242, 242, 242;
	--status-low-priority: 34, 145, 165;
	--status-in-process: 31, 120, 209;
	--status-success: 77, 162, 94;
	--status-warning: 207, 117, 53;
	--status-danger: 186, 26, 26;
	--chips-on-wait-fill: 255, 242, 224;
	--chips-on-wait-stroke: 213, 125, 1;
	--chips-in-process-fill: 184, 214, 244;
	--chips-in-process-stroke: 26, 102, 178;
	--chips-ready-fill: 228, 251, 237;
	--chips-ready-stroke: 26, 170, 85;
	--chips-open-fill: 239, 235, 255;
	--chips-open-stroke: 118, 103, 163;
	--sys-light-on-surface: 26, 28, 30;
	--sys-light-on-surface-variant: 66, 71, 78;
	--global-width: 1080px;
	
	--background-transition: background-color 150ms cubic-bezier(0.5, 0, 0.5, 0);
	--opacity-transition: opacity 250ms cubic-bezier(0.5, 0, 0.5, 0);
	--all-transition: all 100ms cubic-bezier(0.5, 0, 0.5, 0);
	--height-transition: height 250ms cubic-bezier(0.5, 0, 0.5, 0);
	--slow-ease-transition: all 450ms ease-in-out; 
	--really-slow-ease-transition: all 1200ms ease-in-out; 
	--really-slow-max-height-transition: max-height 1200ms ease-in-out;
	
	--roboto: 'Roboto', sans-serif;
	--source-sans-3: 'Source Sans 3', sans-serif;
}

/************************* Material Icons start *************************************/
.material-symbols-outlined {
	color: rgba(var(--color-neutral));
	  
	/* propiedades modificables de los iconos */
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.material-symbols-outlined.unfilled {
	font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 48;
} 

.material-symbols-outlined.clear {
	color: rgba(var(--color-light-gray));
}
/************************* Material Icons end *************************************/

/************************* animations start *************************************/
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
/************************* animations end *************************************/

/****************************** Prefect Scrollbar Styles Override start *****************************************/
.ps__rail-x {
	height: 4px !important;
}

.ps__rail-y {
	width: 4px !important;
}

.ps__rail-x:focus {
	height: 8px !important;
}

.ps__rail-y:focus {
	width: 5px !important;
}

.ps__thumb-x {
	height: 3px;
}

.ps__thumb-y {
	width: 3px;
}

.ps__thumb-x:focus {
	height: 4px !important;
}

.ps__thumb-y:focus {
	width: 4px;
}

.ps__rail-x:hover > .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x.ps--clicking .ps__thumb-x {
    height: 8px !important;
}
.ps__rail-y:hover > .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: #999 !important;
    width: 5px;
}

.ps__rail-y:hover {
	width: 8px
}

.ps__rail-x:hover {
	height: 10px
}
/****************************** Prefect Scrollbar Styles Override end *****************************************/

/*************** general start *****************/
@font-face {
	font-family: 'OpenSans-Regular';
	src: url(../fonts/OpenSans-Regular.ttf) format('truetype');
}

@font-face {
	font-family: 'OpenSans-Bold';
	src: url(../fonts/OpenSans-Bold.ttf) format('truetype');
}

@font-face {
	font-family: 'OpenSans-SemiBold';
	src: url(../fonts/OpenSans-SemiBold.ttf) format('truetype');
}

body {
	line-height: 1;
	font-family: OpenSans-Regular !important;
	background: rgba(var(--background-surface-2));
	font-size: 14px;
    color: rgba(var(--color-black));
}

.material-select {
	position: relative;
	border-radius: 4px;
	min-width: 190px;
	transition: var(--background-transition);
}

.material-select-short {
	min-width: 140px;
}

.select-custom {
	position: absolute;
	width: 6.5rem;
	height: .95rem;
	background-repeat: no-repeat;
	background-position: right;
	background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 48 48"><path d="m24 30-10-9.95h20Z"/></svg>');
	position: absolute;
	top: .15rem;
	right: .2rem;
	letter-spacing: .3px;
}

.select-custom-short {
	width: 3rem;
}

.profile-custom-options,
.comments-select-custom-options,
.select-custom-options,
.select-custom-menu {
	position: absolute;
	right: -3px;
	width: 205px;
	z-index: 1;
	border-radius: 4px;
	background-color: white;
	max-height: 600px;
	overflow: hidden;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
	animation: fadeIn .15s;
}

.profile-custom-options,
.comments-select-custom-options,
.select-custom-options {
	transition: all .3s ease-in-out;
}

.select-custom-options-short {
	width: 155px;
}

.filter-container .select-custom-options {
	width: 265px;
    top: 0rem;
    right: .1rem;
    max-height: 208px;
}

.profile-custom-option,
.comments-select-custom-option,
.select-custom-option {
	height: 56px;
	transition: var(--all-transition);
	font-size: 16px;
	font-weight: 500;
	font-family: var(--roboto);
}

.active-option {
	background-color: rgb(var(--chips-in-process-fill));
}

.profile-custom-option:hover,
.comments-select-custom-option:hover,
.select-custom-option:hover {
	background-color: rgb(var(--chips-in-process-fill));
}

.for-perfect-scrollbar{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.max-height-1000 {
	max-height: 1000px !important;
}

.max-height-unset {
	max-height: unset !important;
}

.max-h-264px {
	max-height: 264px ;
}

.color-inherit {
	color: inherit !important;
}

.color-colmena-black {
	color: rgba(var(--color-black));
}

.color-white {
	color: #FFF !important;
}

.color-style-primary {
	color: rgb(var(--style-primary));
}

.color-primary {
	color: rgb(var(--color-primary));
}

.color-danger {
	color: rgb(var(--status-danger));
}

.color-success {
	color: rgb(var(--status-success));
}

.color-golden {
	color: rgb(var(--color-golden));
}

.font-sans-3 {
	font-family: 'Source Sans 3', sans-serif;
}

.font-sans-regular {
	font-family: 'OpenSans-Regular', sans-serif;
}

.font-sans-semibold {
	font-family: 'OpenSans-SemiBold', sans-serif;
}

.font-sans-bold {
	font-family: 'OpenSans-Bold', sans-serif;
}

.font-roboto {
	font-family: var(--roboto);
}

.background-danger {
    background: rgba(var(--status-danger));
}

.background-dark-gray {
	background-color: rgba(var(--color-dark-gray));
}

.background-light-gray-2 {
    background: #F7FAFD;
}

.background-full-black {
	background: #000;
}

.background-colmena-black {
	background: rgba(var(--color-black));
}

.background-onboarding {
    background: rgba(var(--background-onboarding));
}

.background-accent {
	background-color: rgba(var(--style-accent));
}

.background-danger-opacity-40 {
    background: rgba(var(--status-danger), .4);
}

.background-success-opacity-40 {
    background: rgba(var(--status-success), .4);
}

.background-success {
	background: rgb(var(--status-success));
}

.background-primary {
	background: rgba(var(--style-primary));
}

.background-primary-opacity-40 {
	background: rgba(var(--style-primary), .4);
}

.background-lightblue {
	background-color: rgb(var(--chips-in-process-fill)) !important;
}

.background-primary-clear {
	background-color: rgb(var(--color-primary));
}

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

.background-surface-3 {
	background: rgba(var(--background-surface-3));
}

.background-surface-1 {
	background: rgba(var(--background-surface-1));
}

.background-white {
	background: #FAFAFA !important;
}

.background-full-white {
	background: #FFF !important;
}

.background-neutral-light {
	background-color: rgba(var(--style-neutral-light)) !important;
}

.background-neutral-light-opacity-40 {
	background-color: rgba(var(--style-neutral-light), .4) !important;
}

.background-black-opacity-40 {
	background-color: rgba(0, 0, 0, .4);
}

.background-black-opacity-50 {
	background-color: rgba(0, 0, 0, .4);
}

.background-surface-2 {
	background-color: rgba(var(--background-surface-2)) !important;
}

.background-in-process {
	background-color: rgba(var(--status-in-process));
}

.background-chips-open-stroke {
	background-color: rgba(var(--chips-open-stroke));
}

.background-success {
	background-color: rgba(var(--status-success)) !important;
}

.background-yellow-gradient {
	background: linear-gradient(180deg, #F9AA4B -0.02%, #F7931A 99.99%);
}

.background-neutral {
	background: rgba(var(--color-neutral));
}

.backdrop-filter-none {
	backdrop-filter: none !important;
}

.display-none {
	display: none !important;
}

.mirror-icon{
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.no-newline {
	white-space: nowrap;
}

.allow-newline {
	white-space: pre-wrap;
}

.break-word {
	word-wrap: break-word;
}

.ellipsis {
	text-overflow: ellipsis;
}

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

.object-contain {
	object-fit: contain;
}

.object-cover {
	object-fit: cover;
}

.outlined-button {
	border: solid 1px #73777F;
	border-radius: 8px;
	padding: 0.5rem;
    margin: 1rem 0 0.25rem 0;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.outlined-button:hover {
	background: #00000010;
}

.medium-text,
.light-text {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: .5px;
	color: rgb(var(--sys-light-on-surface));
}

.light-text {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .25px;
	color: rgb(var(--sys-light-on-surface-variant));
}

.v-align-bottom {
	vertical-align: bottom;
}

.v-align-middle {
	vertical-align: middle;
}

.text-start {
	text-align: start;
}

.text-end {
	text-align: end;
}

.text-color-lightgray {
	color: rgba(var(--sys-light-on-surface-variant), .33) !important;
}

.text-color-sys-light-on-surface {
	color: rgb(var(--sys-light-on-surface)) !important;
}

.dark-text {
	color: rgb(var(--style-dark));
}

.weight-600 {
	font-weight: 600;
}

.self-center {
	align-self: center;
}

.pointer {
	cursor: pointer !important;
}

.cursor-not-allowed-forced {
	cursor: not-allowed !important;
}

.pointer-events-none {
	cursor: default;
	pointer-events: none;
}

.cursor-default {
	cursor: default;	
}

.opacity-0 {
	opacity: 0;
}

.opacity-35 {
	opacity: .35;
}

.opacity-50 {
	opacity: .5;
}

.opacity-75 {
	opacity: .75;
}

.opacity-90 {
	opacity: .9;
}

.ml-negative-015 {
	margin: -.15rem !important;
}

.m-auto {
	margin: auto;
}

.m-0 {
	margin: 0 !important;
}

.m-1 {
	margin: .25rem;
}

.m-2 {
	margin: .5rem;
}

.m-4 {
	margin: 1rem;
}

.ml-auto {
	margin-left: auto;
}

.ml-1 {
	margin-left: .25rem;
}

.ml-2 {
	margin-left: .5rem;
}

.ml-3 {
	margin-left: .75rem;
}

.ml-4 {
	margin-left: 1rem;
}

.ml-5 {
	margin-left: 1.25rem;
}

.ml-6 {
	margin-left: 1.5rem;
}

.ml-7 {
	margin-left: 1.75rem;
}

.ml-8 {
	margin-left: 2rem;
}

.mr-0 {
	margin-right: 0 !important;
}

.mr-1 {
	margin-right: .25rem;
}

.mr-2 {
	margin-right: .5rem;
}

.mr-3 {
	margin-right: .75rem;
}

.mr-4 {
	margin-right: 1rem;
}

.mr-5 {
	margin-right: 1.25rem;
}

.mr-6 {
	margin-right: 1.5rem;
}

.mr-7 {
	margin-right: 1.75rem;
}

.mr-8 {
	margin-right: 2rem;
}

.mr-9 {
	margin-right: 2.25rem;
}

.mr-10 {
	margin-right: 2.5rem;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: .25rem;
}

.mt-2 {
	margin-top: .5rem;
}

.mt-3 {
	margin-top: .75rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-6 {
	margin-top: 1.5rem;
}

.mt-8 {
	margin-top: 2rem;
}

.mt-10 {
	margin-top: 2.5rem;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: .25rem;
}

.mb-2 {
	margin-bottom: .5rem;
}

.mb-3 {
	margin-bottom: .75rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-5 {
	margin-bottom: 1.25rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mb-32 {
	margin-bottom: 8rem;
}

.mb-56 {
	margin-bottom: 14rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mx-2 {
	margin-left: .5rem;
	margin-right: .5rem;
}

.mx-3 {
	margin-left: .75rem;
	margin-right: .75rem;
}

.mx-4 {
	margin-left: 1rem;
	margin-right: 1rem;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.my-2 {
	margin-top: .5rem;
	margin-bottom: .5rem;
}

.my-4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.status-pill-py {
	padding-top: .4rem;
	padding-bottom: .4rem;
}

.p-0 {
	padding: 0 !important;
}

.p-1 {
	padding: .25rem;
}

.p-2 {
	padding: .5rem;
}

.p-3 {
	padding: .75rem;
}

.p-4 {
	padding: 1rem;
}

.p-5 {
	padding: 1.25rem;
}

.p-6 {
	padding: 1.5rem;
}

.p-7 {
	padding: 1.75rem;
}

.p-8 {
	padding: 2rem;
}

.pt-1 {
	padding-top: .25rem;
}

.pt-2 {
	padding-top: .5rem;
}

.pt-3 {
	padding-top: .75rem;
}

.pt-4 {
	padding-top: 1rem;
}

.pt-5 {
	padding-top: 1.25rem;
}

.pt-6 {
	padding-top: 1.5rem;
}

.pt-7 {
	padding-top: 1.75rem;
}

.pt-8 {
	padding-top: 2rem;
}

.pt-9 {
	padding-top: 2.25rem;
}

.pt-10 {
	padding-top: 2.5rem;
}

.px-1 {
	padding-left: .25rem;
	padding-right: .25rem;
}

.px-1 {
	padding-left: .25rem;
	padding-right: .25rem;
}

.px-2 {
	padding-left: .5rem;
	padding-right: .5rem;
}

.px-3 {
	padding-left: .75rem;
	padding-right: .75rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.px-7 {
	padding-left: 1.75rem;
	padding-right: 1.75rem;
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.px-9 {
	padding-left: 2.25rem;
	padding-right: 2.25rem;
}

.px-10 {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.px-11 {
	padding-left: 2.75rem;
	padding-right: 2.75rem;
}

.px-12 {
	padding-left: 3rem;
	padding-right: 3rem;
}

.px-13 {
	padding-left: 3.25rem;
	padding-right: 3.25rem;
}

.px-14 {
	padding-left: 3.5rem;
	padding-right: 3.5rem;
}

.py-015 {
	padding-top: .15rem;
	padding-bottom: .15rem;
}

.py-1 {
	padding-top: .25rem;
	padding-bottom: .25rem;
}

.py-2 {
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.py-3 {
	padding-top: .75rem;
	padding-bottom: .75rem;
}

.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.py-5 {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.py-7 {
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
}

.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.py-32 {
	padding: 8rem 0;
}
.pl-1 {
	padding-left: .25rem;
}

.pl-2 {
	padding-left: .5rem;
}

.pl-3 {
	padding-left: .75rem;
}

.pl-4 {
	padding-left: 1rem;
}

.pl-5 {
	padding-left: 1.25rem;
}

.pl-6 {
	padding-left: 1.5rem;
}

.pl-7 {
	padding-left: 1.75rem;
}

.pl-8 {
	padding-left: 2rem;
}

.pl-9 {
	padding-left: 2.25rem;
}

.pl-10 {
	padding-left: 2.5rem;
}

.pl-11 {
	padding-left: 2.75rem;
}

.pl-12 {
	padding-left: 3rem;
}

.pl-13 {
	padding-left: 3.25rem;
}

.pl-14 {
	padding-left: 3.5rem;
}

.pl-15 {
	padding-left: 3.75rem;
}

.pl-16 {
	padding-left: 4rem;
}

.pl-17 {
	padding-left: 4.25rem;
}

.pl-18 {
	padding-left: 4.5rem;
}

.pl-19 {
	padding-left: 4.75rem;
}

.pl-20 {
	padding-left: 5rem;
}

.pl-21 {
	padding-left: 5.25rem;
}

.pl-22 {
	padding-left: 5.5rem;
}

.pr-1 {
	padding-right: .25rem;
}

.pr-2 {
	padding-right: .5rem;
}

.pr-3 {
	padding-right: .75rem;
}

.pr-4 {
	padding-right: 1rem;
}

.pr-5 {
	padding-right: 1.25rem;
}

.pr-6 {
	padding-right: 1.5rem;
}

.pr-7 {
	padding-right: 1.25rem;
}

.pr-8 {
	padding-right: 2rem;
}

.pr-9 {
	padding-right: 2.25rem;
}

.pr-10 {
	padding-right: 2.5rem;
}

.pr-28 {
	padding-right: 7rem;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-1 {
	padding-bottom: .25rem;
}

.pb-2 {
	padding-bottom: .5rem;
}

.pb-3 {
	padding-bottom: .75rem;
}

.pb-4 {
	padding-bottom: 1rem;
}

.pb-4-forced {
	padding-bottom: 1rem !important;
}

.pb-5 {
	padding-bottom: 1.25rem;
}

.pb-6 {
	padding-bottom: 1.5rem;
}

.pb-7 {
	padding-bottom: 1.75rem;
}

.pb-8 {
	padding-bottom: 2rem;
}

.pb-9 {
	padding-bottom: 2.25rem;
}

.pb-10 {
	padding-bottom: 2.5rem;
}

.pb-11 {
	padding-bottom: 2.75rem;
}

.pb-12 {
	padding-bottom: 3rem;
}

.pb-13 {
	padding-bottom: 3.25rem;
}

.pb-14 {
	padding-bottom: 3.5rem;
}

.pb-15 {
	padding-bottom: 3.25rem;
}

.pb-16 {
	padding-bottom: 4rem;
}

.pb-17 {
	padding-bottom: 4.25rem;
}

.pb-18 {
	padding-bottom: 4.5rem;
}

.pb-19 {
	padding-bottom: 4.25rem;
}

.pb-20 {
	padding-bottom: 4.5rem;
}

.pb-21 {
	padding-bottom: 4.75rem;
}

.pb-22 {
	padding-bottom: 5rem;
}

.pb-23 {
	padding-bottom: 5.25rem;
}

.pb-40 {
	padding-bottom: 10rem;
}

.pb-60 {
	padding-bottom: 15rem;
}

.pb-80 {
	padding-bottom: 20rem;
}

.gap-1 {
	gap: .25rem;
}

.gap-2 {
	gap: .5rem;
}

.gap-3 {
	gap: .75rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-5 {
	gap: 1.25rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-7 {
	gap: 1.75rem;
}

.gap-8 {
	gap: 2rem;
}

.color-neutral {
	color: rgba(var(--color-neutral)) !important;
}

.color-selected {
	color: rgba(var(--style-accent)) !important;
}

.color-neutral-light {
	color: rgba(var(--style-neutral-light));
}

.color-mid-gray {
	color: rgba(var(--sys-light-on-surface-variant)) !important;
}

.selected {
	background-color: rgba(var(--style-accent)) !important;
	color: white;
}

.selected:hover {
	background-color: rgb(var(--style-accent-hover)) !important;
}

.selected:active {
	background-color: rgb(var(--style-accent-active)) !important;
}

.input-no-style{
	border: none;
    background-image: none;
    background-color: transparent;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.placeholder-color-colmena-black::placeholder {
	color: rgba(var(--color-black));
}

.icon-hover:hover {
    background: rgba(var(--color-neutral), .35);
}

.letter-spacing-0 {
	letter-spacing: 0;
}

.letter-spacing-05 {
	letter-spacing: .5px;
}

.letter-spacing-1 {
	letter-spacing: 1px;
}

.letter-spacing-2 {
	letter-spacing: 2px;
}

.letter-spacing-3 {
	letter-spacing: 3px;
}

.letter-spacing-4 {
	letter-spacing: 4px;
}

.f-size-14 {
	font-size: 14px;
}

.f-size-16 {
	font-size: 16px;
}

.f-size-20 {
	font-size: 20px;
}

.font-400 {
	font-weight: 400;
}

.font-500 {
	font-weight: 500;
}

.font-600 {
	font-weight: 600;
}

.font-700 {
	font-weight: 700;
}

.font-800 {
	font-weight: 800;
}

.font-900 {
	font-weight: 900;
}

.font-size-11 {
	font-size: 11px;
}

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

.font-size-13 {
	font-size: 13px;
}

.font-size-14 {
	font-size: 14px;
}

.font-size-16 {
	font-size: 16px;
}

.font-size-18 {
	font-size: 18px;
}

.font-size-20 {
	font-size: 20px;
}

.font-size-22 {
	font-size: 22px;
}

.font-size-24 {
	font-size: 24px;
}

.font-size-26 {
	font-size: 26px;
}

.font-size-28 {
	font-size: 28px;
}

.font-size-30 {
	font-size: 30px;
}

.font-size-32 {
	font-size: 32px;
}

.font-size-34 {
	font-size: 34px;
}

.font-size-36 {
	font-size: 36px;
}

.font-size-38 {
	font-size: 38px;
}

.font-size-40 {
	font-size: 40px;
}

.line-height-16 {
	line-height: 16px;
}

.line-height-18 {
	line-height: 18px;
}

.line-height-20 {
	line-height: 20px;
}

.line-height-22 {
	line-height: 22px;
}

.line-height-24 {
	line-height: 24px;
}

.line-height-34 {
	line-height: 34px;
}

.line-height-130 {
	line-height: 1.3;
}

.outline-none {
	outline: 0 !important;
}

.outline-danger {
	outline-color: rgb(var(--status-danger));
}

.fixed {
	position: fixed;
}

.sticky {
	position: sticky;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.centered-absolute {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.left-0 {
	left: 0;
}

.left-1 {
	left: .25rem;
}

.left-2 {
	left: .5rem;
}

.left-3 {
	left: .75rem;
}

.left-4 {
	left: 1rem;
}

.left-5 {
	left: 1.25rem;
}

.left-6 {
	left: 1.5rem;
}

.left-7 {
	left: 1.75rem;
}

.left-8 {
	left: 2rem;
}

.left-9 {
	left: 2.25rem;
}

.left-10 {
	left: 2.5rem;
}

.left-11 {
	left: 2.75rem;
}

.left-12 {
	left: 3rem;
}

.left-13 {
	left: 3.25rem;
}

.left-24 {
	left: 6rem;
}

.right-0 {
	right: 0;
}

.right-1 {
	right: .25rem;
}

.right-2 {
	right: .5rem;
}

.right-3 {
	right: .75rem;
}

.right-4 {
	right: 1rem;
}

.right-5 {
	right: 1.25rem;
}

.right-6 {
	right: 1.5rem;
}

.right-7 {
	right: 1.75rem;
}

.right-8 {
	right: 2rem;
}

.right-9 {
	right: 2.25rem;
}

.right-10 {
	right: 2.5rem;
}

.right-20 {
	right: 5rem;
}

.right-negative-1 {
	right: -.25rem;
}

.right-negative-2 {
	right: -.5rem;
}

.right-negative-3 {
	right: -.75rem;
}

.right-negative-4 {
	right: -1rem;
}

.right-negative-6 {
	right: -1.5rem;
}

.right-negative-8 {
	right: -2rem;
}

.right-negative-10 {
	right: -2.5rem;
}

.right-negative-12 {
	right: -3rem;
}

.right-negative-14 {
	right: -3.5rem;
}

.right-negative-16 {
	right: -4rem;
}

.right-negative-18 {
	right: -4.5rem;
}

.right-negative-20 {
	right: -5rem;
}

.z-index-0 {
	z-index: 0 !important;
}

.z-index-1 {
	z-index: 1 !important;
}

.z-index-2 {
	z-index: 2 !important;
}

.z-index-3 {
	z-index: 3 !important;
}

.z-index-4 {
	z-index: 4 !important;
}

.z-index-5 {
	z-index: 5 !important;
}

.z-index-9000 {
	z-index: 9000 !important;
}

.z-index-9001 {
	z-index: 9001 !important;
}

.top-unset {
	top: unset !important;
}

.top-0 {
	top: 0;
}

.top-1 {
	top: .25rem;
}

.top-2 {
	top: .5rem;
}

.top-3 {
	top: .75rem;
}

.top-4 {
	top: 1rem;
}

.top-5 {
	top: 1.25rem;
}

.top-420 {
	top: 1.2rem;
}

.top-6 {
	top: 1.5rem;
}

.top-7 {
	top: 1.75rem;
}

.top-8 {
	top: 2rem;
}

.top-9 {
	top: 2.25rem;
}

.top-10 {
	top: 2.5rem;
}

.top-11 {
	top: 2.75rem;
}

.top-12 {
	top: 3rem;
}

.top-13 {
	top: 3.25rem;
}

.top-14 {
	top: 3.5rem;
}

.top-15 {
	top: 3.75rem;
}

.top-16 {
	top: 4rem;
}

.top-17 {
	top: 4.25rem;
}

.top-18 {
	top: 4.5rem;
}

.top-19 {
	top: 4.75rem;
}

.top-20 {
	top: 5rem;
}

.top-21 {
	top: 5.25rem;
}

.top-22 {
	top: 5.5rem;
}

.top-23 {
	top: 5.75rem;
}

.top-24 {
	top: 6rem;
}

.bottom-0 {
	bottom: 0;
}

.bottom-1 {
	bottom: .25rem;
}

.bottom-2 {
	bottom: .5rem;
}

.bottom-3 {
	bottom: .75rem;
}

.bottom-4 {
	bottom: 1rem;
}

.bottom-5 {
	bottom: 1.25rem;
}

.bottom-6 {
	bottom: 1.5rem;
}

.bottom-7 {
	bottom: 1.25rem;
}

.bottom-8 {
	bottom: 2rem;
}

.bottom-9 {
	bottom: 2.25rem;
}

.bottom-10 {
	bottom: 2.5rem;
}

.bottom-20 {
	bottom: 5rem;
}

.bottom-23 {
	bottom: 5.75rem;
}

.text-center {
	text-align: center !important;
}

.text-start {
	text-align: start;
}

.display-block {
	display: block !important;
}

.flex {
	display: flex;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.flex-col-reverse {
	flex-direction: column-reverse;
}

.flex-col {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-wrap-reverse {
	flex-wrap: wrap-reverse;
}

.flex-1 {
	flex: 1;
}

.flex-grow-1 {
	flex-grow: 1;
}

.flex-grow-2 {
	flex-grow: 2;
}

.flex-grow-3 {
	flex-grow: 3;
}

.flex-grow-4 {
	flex-grow: 4;
}

.items-start {
	align-items: start;
}

.items-center {
	align-items: center;
}

.items-end {
	align-items: end;
}

.justify-between {
	justify-content: space-between;
}

.justify-start {
	justify-content: start !important;
}

.justify-around {
	justify-content: space-around;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: end;
}

.self-end {
	align-self: end;
}

.self-start {
	align-self: start;
}

.self-center {
	align-self: center;
}

.nine-by-nine {
	width: 2.25rem !important;
	height: 2.25rem !important;
}

.seven-by-seven {
	width: 1.75rem !important;
	height: 1.75rem !important;
}

.six-by-six {
	width: 1.5rem !important;
	height: 1.5rem !important;
	min-width: unset !important;
}

.five-by-five {
	width: 1.25rem !important;
	height: 1.25rem !important;
}

.h-auto {
	height: auto;
}

.h-90 {
	height: 90vh;
}

.h-85 {
	height: 85% !important;
}

.h-80 {
	height: 80%;
}

.h-75 {
	height: 75% !important;
}

.h-70 {
	height: 70% !important;
}

.h-65 {
	height: 65%;
}

.h-60 {
	height: 60%;
}

.h-50 {
	height: 50%;
}

.h-40 {
	height: 40%;
}

.h-30 {
	height: 30%;
}

.h-25 {
	height: 25%;
}

.h-20 {
	height: 20%;
}

.h-full {
	height: 100% !important;
}

.h-inherit {
	height: inherit;
}

.w-content {
	width: fit-content !important;
}

.w-fill-available {
	width: -moz-available;
	width: -webkit-fill-available;
	width: fill-available;
}

.w-216px {
	width: 216px;
}

.w-380px {
	width: 380px;
}

.w-auto {
	width: auto !important;
}

.w-full {
	width: 100% !important;
}

.w-90 {
	width: 90% !important;
}

.w-89 {
	width: 89% !important;
}

.w-93 {
	width: 93%;
}

.w-94 {
	width: 94%;
}

.w-95 {
	width: 95% !important;
}

.w-98 {
	width: 98% !important;
}

.w-96 {
	width: 96% !important;
}
.w-97 {
	width: 97% !important;
}

.w-84 {
	width: 84%;
}

.w-85 {
	width: 85%;
}

.w-80 {
	width: 80%;
}

.w-75 {
	width: 75% !important;
}

.w-70 {
	width: 70%;
}

.w-65 {
	width: 65%;
}

.w-60 {
	width: 60%;
}

.w-55 {
	width: 55%;
}

.w-50 {
	width: 50%;
}

.w-48 {
	width: 48%;
}

.w-45 {
	width: 45%;
}

.w-40 {
	width: 40%;
}

.w-35 {
	width: 35%;
}

.w-30 {
	width: 30%;
}

.w-25 {
	width: 25% !important;
}

.w-20 {
	width: 20% !important;
}

.w-15 {
	width: 15%;
}

.w-10 {
	width: 10%;
}

.w-5 {
	width: 5%;
}

.w-rem-2 {
	width: 2rem;
}

.w-rem-4 {
	width: 4rem;
}

.w-rem-9 {
	width: 9rem;
}

.w-rem-24 {
	width: 6rem;
}

.w-rem-28 {
	width: 7rem;
}

.w-rem-56 {
	width: 14rem;
}

.w-20-px {
	width: 20px;
}

.w-40-px {
	width: 40px;
}

.w-80-px {
	width: 80px;
}

.w-20-px-forced {
	min-width: 20px !important;
	max-width: 20px !important;
	width: 20px !important;
}

.w-40-px-forced {
	min-width: 40px !important;
	max-width: 40px !important;
	width: 40px !important;
}

.w-60-px-forced {
	min-width: 60px !important;
	max-width: 60px !important;
	width: 60px !important;
}

.w-80-px-forced {
	min-width: 80px !important;
	max-width: 80px !important;
	width: 80px !important;
}

.removable-max-width-forced {
	max-width: 300px !important;
}

.max-w-2 {
	max-width: .5rem !important;
}

.max-w-4 {
	max-width: 1rem !important;
}

.max-w-6 {
	max-width: 1.5rem !important;
}

.max-w-8 {
	max-width: 2rem !important;
}

.max-w-12 {
	max-width: 3rem !important;
}

.max-w-16 {
	max-width: 4rem !important;
}

.max-w-20 {
	max-width: 5rem !important;
}

.max-w-24 {
	max-width: 6rem !important;
}

.max-w-28 {
	max-width: 7rem !important;
}

.max-w-32 {
	max-width: 8rem !important;
}

.max-w-36 {
	max-width: 9rem !important;
}

.max-w-40 {
	max-width: 10rem !important;
}

.max-w-48 {
	max-width: 12rem;
}

.max-w-64 {
	max-width: 16rem;
}

.max-w-72 {
	max-width: 18rem !important;
}

.max-w-80 {
	max-width: 20rem;
}

.max-w-88 {
	max-width: 22rem;
}

.max-w-166 {
	max-width: 39rem;
}

.max-w-full {
	max-width: 100%
}

.min-h-40px {
	min-height: 40px;
}

.min-h-50px {
	min-height: 50px;
}

.min-h-60px {
	min-height: 60px;
}

.min-w-unset {
	min-width: unset;
}

.min-w-unset-forced {
	min-width: unset !important;
}

.min-w-fill-available {
	min-width: -moz-available;
	min-width: -webkit-fill-available;
	min-width: fill-available;
}

.min-w-10 {
	min-width: 2.5rem;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-unset-forced {
	overflow: unset !important;
}

.overflow-wrap-anywhere {
	overflow-wrap: anywhere;
}

.background-transition {
	transition: var(--background-transition);
}

.all-transition {
	transition: var(--all-transition);
}

.height-transition {
	transition: var(--height-transition);
}

.height-unset {
	height: unset !important;
}

.slow-ease-transition {
	transition: var(--slow-ease-transition);
}

.really-slow-ease-transition {
	transition: var(--really-slow-ease-transition);
}

.really-slow-height-transition {
	transition: var(--really-slow-max-height-transition);
}

.hover-shadow:hover {
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 6px rgba(0, 0, 0, 0.15);
}

.hover-color-primary:hover {
	color: rgb(var(--color-primary)) !important;
}

.hover-color-white-forced:hover {
	color: #FFF !important;
}

.hover-color-danger:hover {
	color: rgb(var(--status-danger)) !important;
}

.hover-primary:hover {
	background-color: rgba(var(--background-surface-3)) !important;
	color: rgb(var(--color-black)) !important;
}

.hover-selected:hover {
	background-color: rgba(var(--style-accent)) !important;
	color: #FFF !important;
}

.hover-none:hover {
	background-color: #FFF !important;
	color: rgb(var(--color-black)) !important;
}

.active-primary:active {
	background-color: rgba(var(--background-surface-3-active)) !important;
	color: rgb(var(--color-black)) !important;
}

.hover-icon-clear:hover {
	color: #FFF;
	background-color: rgb(var(--color-primary));
}

.hover-gray:hover {
	background-color: rgb(var(--style-neutral-light)) !important;
}

.hover-grayer:hover {
	background-color: #AAA;
}

.active-gray:active {
	background-color: rgb(var(--color-neutral)) !important;
}

.hover-opacity:hover {
	opacity: .8 !important;
}

.border-1 {
	border: solid 1px;
}

.border-bottom-1 {
	border-bottom: solid 1px;
	border-color: inherit;
}

.border-top-1 {
	border-top: solid 1px;
	border-color: inherit;
}

.border-neutral-light {
	border-color: rgba(var(--style-neutral-light)) !important;
}

.border-lightslategray {
	border-color: lightslategray !important;
}

.border-neutral {
	border-color: rgba(var(--color-neutral));
}

.border-primary {
	border-color: rgb(var(--color-primary));
}

.border-danger {
	border-color: rgb(var(--status-danger));
}

.border-light-on-surface {
	border-color: rgb(var(--sys-light-on-surface)) !important;
}

.rounded {
	border-radius: 50%;
}

.rounded-right {
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
}

.radius-2 {
	border-radius: 2px;
}

.radius-4 {
	border-radius: 4px;
}

.radius-8 {
	border-radius: 8px;
}

.radius-12 {
	border-radius: 12px;
}

.radius-45 {
	border-radius: 45px;
}

.radius-100 {
	border-radius: 100px;
}

.bottom-radius-12 {
	border-radius: 0 0 12px 12px;
}

.top-radius-12 {
	border-radius: 12px 12px 0 0;
}

.capitalize {
	text-transform:	capitalize;
}

.dark-overlay,
.main-loading,
.overlay {
	display: none;
	background-color: #FFF;
	z-index: 2051;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	align-items: center;
	justify-content: center;
	animation: fadeIn .25s;
}

.tutorial-overlay {
	z-index: 2051;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.animation {
	align-self: flex-end;
}

.progress {
	align-self: flex-start;
	font-weight: bold;
	font-size: large;
}

.round-progress {
	height: 150px;
	width: 150px;
	margin: 0px auto;
	rotate: -90deg;
}

#progress,
#track {
	fill: transparent;
}

#progress {
	stroke: #FF3F9B;
	stroke-width: 10px;
	stroke-linecap: round;
	stroke-dasharray: 440;
/* 	stroke-dashoffset: 140; Change number value to shift progress bar */
}

#track {
	stroke: #D6DADD;
	stroke-width: 6px;
}

.fadeIn {
	animation: fadeIn .5s;
}

.fadeInSlow {
	animation: fadeIn 2s;
}

.dark-overlay {
	background-color: rgba(1, 17, 26, .8);
	backdrop-filter: blur(24px);
}

.main-loading {
	display: flex;
}

.redDot {
	height: .5rem;
	width: .5rem;
	background-color: #c31515;
	border-radius: 50%;
	right: 1.25rem;
	top: .5rem;
}

:has(> .redDot) {
	position: relative;
}

.blur-15 {
	backdrop-filter: blur(15px);
}

.blur-50 {
	backdrop-filter: blur(50px);
}

.hover-blur-3:hover {
	backdrop-filter: blur(3px);
}

.hover-blur-50:hover {
	backdrop-filter: blur(50px);
}

.hover-underline {
	text-decoration: underline 2px transparent !important;
	transition: text-decoration-color 250ms;
}

.hover-underline:hover {
	text-decoration-color: inherit !important;
}

.material-textarea-container,
.material-input-container {
	border: solid 1px;
	border-radius: 4px;
	height: 56px;
}

.material-input-label {
	top: -.5rem;
	background-color: #FFF;
	left: .5rem;
}

.resize-none {
	resize: none;
}

.material-input-inputfield {
	resize: none;
	border-radius: inherit;
	border: none;
	background-color: transparent;
}

.material-textarea-container {
	height: 270px;
}

.no-caret {
	caret-color: transparent;
}

.h-40px,
.user-search-container {
	height: 40px;	
}

.user-search-input {
	height: inherit;
	outline: none;
	padding-bottom: .25rem;
}

.pill-deletable,
.skill-tag-deletable,
.skill-tag {
	border-radius: 50px;
	height: 28px;
}

.pill-deletable,
.skill-tag-deletable {
	height: 32px;
}

.filter-news-modal,
.filter-container {
	right: 0;
	top: 4rem;
	width: 300px;
	z-index: 1;
	border-radius: 12px;
	background-color: white;
	transition: all .7s ease-in-out;
	max-height: 600px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
	animation: fadeIn .15s;
}

.filter-news-modal {
	right: -.5rem;
	top: -1rem;
	overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/*************** general end *****************/

/********************* modal start ***************/
.modal-base {
	border-radius: 12px;
	min-width: 330px;
	min-height: 164px;
	max-width: 55%;
}

.clients-modal,
.owners-filter-modal,
.owners-modal,
.share-modal {
	width: 504px;
	min-height:50%;
	height: 548px;
}

.clients-modal,
.owners-modal {
	bottom:	5rem;
	right: 10rem;
	width: 300px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.clients-modal {
	height: 350px;
}

.box-shadow-none {
	box-shadow: none;
}

.box-shadow-none-forced {
	box-shadow: none !important;
}

.box-shadow,
.owners-filter-modal {
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 6px rgba(0, 0, 0, 0.15);
}

.modal-button {
	padding: .5rem 1rem;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--background-transition);
}

.main-like-menu-item {
	display: flex;
	border-radius: 45px;
	align-items: center;
	cursor: pointer;
	width: auto;
	transition: var(--background-transition);
	padding-left: 1rem;
	padding-right: 1rem;
}

.main-like-menu-item:hover {
	background-color: rgba(var(--style-accent-selected-hover));
}

.main-like-menu-item:active {
	background-color: rgba(var(--style-accent-active));
}

.modal-description {
	padding-bottom: 4rem;
}

.success-error-modal,
.detail-modal-base {
	border-radius: 12px;
	width: 612px;
	min-height: 50%;
	min-height: 380px;
	overflow: hidden;
}

.detail-modal-base {
	height: 58%
}

.modal-header {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/********************* modal end ***************/

/****************************** Custom snackbar start *****************************************/
.snackbar {
	bottom: 1rem;
	left: 1rem;
	margin-right: 1rem;
	z-index: 5;
	border-radius: 4px;
	min-width: 340px;
	min-height: 48px;
	color: rgb(var(--color-white-gray));
	visibility: hidden;
	line-height: 1.5rem;
	box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.snackbar.show-then-hide {
  visibility: visible;
  -webkit-animation: popin 0.5s, popout 0.5s 3s;
  animation: popin 0.5s, popout 0.5s 3s;
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: popin 0.5s;
  animation: popin 0.5s;
}

@-webkit-keyframes popin {
  from {bottom: 0; opacity: 0;}
  to {bottom: 1.5rem; opacity: 1;}
}

@keyframes popin {
  from {bottom: 0; opacity: 0;}
  to {bottom: 1.5rem; opacity: 1;}
}

@-webkit-keyframes popout {
  from {bottom: 1.5rem; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes popout {
  from {bottom: 1.5rem; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/****************************** Custom snackbar end *****************************************/


/*************** custom tooltip start *******************************/

right-sided-tool-tip,
tool-tip {
	font-family: var(--source-sans-3);
	font-size: 14px;
	font-weight: 400;
	position: absolute;
	top: 100%;
	right: 25%;

	background-color: rgba(var(--style-primary));
	color: #FAFAFA;
	opacity: 0;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	user-select: none;
	pointer-events: none;
	text-transform: none;
	z-index: 50;
	transition: all .45s cubic-bezier(0.5, 0, 0.5, 0);
}

right-sided-tool-tip {
	top: 25%;	
	left: 75%;
	right: unset;
}

:has(> right-sided-tool-tip),
:has(> tool-tip) {
	position: relative;
}

:has(> right-sided-tool-tip):hover right-sided-tool-tip,
:has(> tool-tip):hover tool-tip {
	opacity: 1;	
}

/*************** custom tooltip end *******************************/

/*************** navbar start *****************/
.navbar {
	background: rgba(var(--style-primary));
	position: fixed;
	width: 100%;
	z-index: 50;
	top: 0;
}

.topbar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 56px;
	margin: auto;
}

.topbar-icon-container {
	display: flex;
	flex-direction: row;
}

.navbar-profile-initials,
.topbar-item,
.navbar-profile-img {
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	object-fit: cover;
}

.navbar-profile-initials {
	background-color: rgb(var(--color-primary));
	align-items: center;
	display: flex;
	justify-content: center;
	text-transform: uppercase;
	color: #FFF;
}

.topbar-item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 .5rem 0 .5rem;
	cursor: pointer;
	position: relative;
	transition: var(--background-transition);	
}

.navbar-profile-img {
	transition: var(--opacity-transition);
}

.navbar-profile-initials:hover,
.navbar-profile-img:hover {
	opacity: .8;
}

.nav-alert-badge {
	border-radius: 45px;
	font-size: 11px;
	color: #FFF;
	background: rgba(var(--status-danger));
	position: absolute;
	top: -2px;
	z-index: 3;
	line-height: normal;
	padding: 0.1rem 0.25rem;
	display: flex;
	justify-content: center;
	right: -5px;
	min-width: 1rem;
	min-height: 1rem;
}

.alerts-modal {
	width: 500px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.alerts-modal-body {
	max-height: 60vh;
}

.user-menu {
	font-family: var(--source-sans-3);
	display: flex;
	flex-direction: column;
	position: absolute;
	background-color: rgb(var(--color-neutral));
	border-radius: 12px;
	right: 0;
	top: 2.75rem;
	cursor: auto;
	color: rgb(var(--color-light-gray));
	max-height: 300px;
	animation: fadeIn .15s;
	transition: var(--all-transition);
	overflow: hidden;
}

.user-menu-top,
.user-menu-bottom {
	background-color: rgb(var(--color-light-gray));
	margin: .5rem .5rem 0 .5rem;
	border-radius: 12px;
	display: flex;
	min-width: 240px;
}

.user-menu-bottom {
	justify-content: flex-start;
    height: 40px;
    align-items: center;
}

.user-menu-top-left-col {
	padding: .75rem;
}

.user-menu-top-right-col {
	display: flex;
	flex-direction: column;
	padding: .5rem .5rem .5rem 0;
	flex-direction: column;
}

.user-menu-button {
	color: rgb(var(--sys-light-on-surface-variant));
}

.focus-border-lightblue:focus-visible,
.focus-border-lightblue:focus {
	box-shadow: 0 0 0 4px rgba(0,132,255,.5);
    outline: 0;
}

.focus-within-border-lightblue:focus-within {
	box-shadow: 0 0 0 4px rgba(0,132,255,.5);
    outline: 0;
}

.material-input-inputfield:focus-visible,
.material-input-container:focus-within,
.material-input-container:focus-visible {
	outline: 0;
    box-shadow: inset 0 0 0 3px rgba(0,132,255,.5), 0 0 0 1px rgba(0,132,255,0);
    border-color: rgba(0,132,255,.5) !important;
    padding-bottom: 0;
    padding-top:  0;
}

/******************************* navbar end ****************************/

/******************* grid container start ****************************/
.global-container {
	width: 100%;
	display: flex;
	margin-top: 56px;
}

.grid-container {
	display: flex;
	flex-direction: row;
	position: relative;
}

.left-column {
	width: 4.9rem;
	position: fixed;
	height: calc(100vh - 56px);
	font-family: var(--source-sans-3);
	background: #FFFFFF;
	transition: var(--all-transition);
	z-index: 5;
}

.middle-container {
	position: absolute;
    width: calc(100% - 16rem);
    right: 0;
	transition: var(--all-transition);
}

.middle-column {
	width: 60%;
	max-width: var(--global-width);
	margin: auto;
}

.floating-footer,
.floating-header {
	max-width: var(--global-width);
}

.right-column {
	margin-left: 10px;
	position: relative;
	overflow: hidden;
}

.container-border {
	box-shadow: inset 0px 0px 0px 1px hsl(202.5deg 10.53% 85.1% / 61.18%);
}

.center-content-box,
.post-box {
    width: 100%;
    background: #ffffff;
    margin-bottom: 10px;
    position: relative;
    border-radius: 12px;
	box-shadow: inset 0px 0px 0px 1px hsl(202.5deg 10.53% 85.1% / 61.18%);
}

/************* grid container end ****************/

/************* main menu start *******************/
.fix-menu {
	right: -.95rem;
	top: .5rem;
	z-index: 3;
	transition: var(--all-transition);
}

.perfect-scroll-container {
	position: relative;	
	overflow-x: hidden;
	height: 100%;
}

.menu {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: .5px;
	width: 100%;
	display: flex;
    flex-direction: column;
	line-height: 32px;
}

.right-section-title,
.menu-section-title,
.menu-section-subtitle {
	font-size: 14px;
	padding-left: 1rem;
	font-family: "OpenSans-Regular", sans-serif;
	padding: 0.5rem 0 0.5rem 1.25rem;
	max-height: 3rem;
}

.menu-section-title,
.menu-section-subtitle {
	overflow: hidden;
	transition: var(--all-transition);
}

.menu-section-subtitle {
	font-size: 12px;
	color: rgba(var(--color-neutral));
}

.refresh-btn,
.menu-item,
.menu-item-with-badge,
.submenu-item,
.submenu-item-selected {
	display: flex;
    flex-direction: row;
    justify-content: start;
    border-radius: 45px;
    min-height: 2.9rem;
    margin-bottom: 0.25rem;
    align-items: center;
    cursor: pointer;
   	width: 100%;
   	transition: var(--background-transition);
   	overflow: hidden;
}

.refresh-btn {
	width: 8.25rem;
	justify-content: space-evenly;
}

.menu-item {
	overflow: hidden;
	white-space: nowrap;
}

.menu-icon {
	padding: 0 0.75rem 0 0.5rem;
}

.menu-item-inner {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    align-items: center;
}

.menu-item-with-badge:hover,
.submenu-item:hover,
.menu-item:hover {
	background-color: rgba(var(--style-accent-selected-hover));
}

.menu-item-with-badge:active,
.submenu-item:active,
.menu-item:active {
	background-color: rgba(var(--style-accent-active));
}

.menu-item-with-badge {
	justify-content: space-around;
	padding-left: 0;
}

.menu-item-right-column,
.menu-item-left-column {
	display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-item-right-column {
    width: 30%;
    justify-content: space-between;
}

.submenu-item-selected,
.submenu-item {
    justify-content: space-between;
    padding: 0 0.5rem 0 1rem;
    width: 70%;
	align-self: end;
	text-transform: capitalize;
	white-space: normal;
	word-wrap: break-word;
	line-height: 1.2;
}

.arrow {
	justify-self: end;
}

.submenu-item-selected {
	background-color: rgba(var(--style-accent-selected));
}

.submenu-item-selected:hover {
	background-color: rgba(var(--style-accent-selected-hover));
}

.submenu-item-selected:active {
	background-color: rgba(var(--style-accent-hover));
}

.submenu-item-right-column {
	display:flex;
	justify-content: end;
    padding-right: 0.5rem;
}

.unseen-news {
    background-color: rgba(var(--status-danger));
    color: #FFF;
    font-size: 13px;
    border-radius: 50%;
    height: 1.75rem;
    width: 1.75rem;
    min-width: 1.75rem;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 800;
}

.unseen-news-selected {
	background-color: #FFF;
    color: rgb(var(--color-black));
}

.horizontal-line {
	border-bottom: 1px solid rgba(var(--style-neutral-light));
	width: 85%;
	margin: .5rem auto;
}

.vertical-line {
	border-right: 1px solid rgba(var(--style-neutral-light));
	height: 85%;
	margin: auto .5rem;
}

.submenu {
	margin-top: 0.5rem;
	display: flex;
	width: 100%;
    flex-direction: column;
    overflow: hidden;
	transition: max-height .7s ease-in-out;
	max-height: 530px;
}

.submenu[style*="display: block"] {
  display: flex !important;
}


.collapsed-no-opacity,
.collapsed,
.submenu.collapsed {
	margin: 0 !important;
	max-height: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	box-shadow: none !important;
}

.collapsed-no-opacity {
	opacity: 0;
}

.colmena-version {
	margin-left: 7%;
}
/**************** main menu end *********************/

/**************** right column start *****************************/
.legals {
	display: flex;
	flex-direction: column;
	text-align: center;
	text-decoration: underline;
	text-decoration-color: inherit;
}

.right-column-inner {
	width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

.fast-access,
.birthdays-fast-access,
.forms-fast-access,
.communities-fast-access {
	background-color: white;
	width: 100%;
	border-radius: 12px;
	margin: .75rem 0 1rem 0;
}

.forms-container,
.communities-container {
    overflow: hidden;
	transition: max-height 1s ease-in-out;
}

.communities-container {
	max-height: 170px;
}

.birthday-item-container,
.community-item-container,
.form-item-container{
	width: 100%;
	transition: var(--background-transition);
}

.birthday-item,
.see-more-container,
.form-item,
.community-item {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
}

.birthday-item {
	height: 56px;
	margin: 0;
}

.form-item,
.community-item {
	border-top: 1px solid;
	border-color: rgb(var(--style-neutral-light));
}

.form-item-container:hover,
.community-item-container:hover {
	background-color: rgba(var(--background-surface-3));
}

.form-item-container:active,
.community-item-container:active {
	background-color: rgba(var(--background-surface-3-active));
}

.form-item {
	padding: 0.75rem 0;
}

.send-button,
.initial,
.table-initial {
	background-color: rgb(var(--color-primary));
	border-radius: 50%;
	min-width: 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	align-items: center;
	display: flex;
	justify-content: center;
	color: white;
	margin: .5rem .5rem .5rem 0;
	text-transform: uppercase;
}

.table-initial {
	margin: 0 0 0 -10px;
	min-width: unset;
}

.send-button {
	min-width: 44px;
	width: 44px;
	height: 44px;
	margin: 0;
}


.lesser-button,
.standard-button,
.banner-button,
.edit-button,
.cancel-button,
.answer-button {
	border-radius: 50px;
	height: 36px;
}

.lesser-button {
	height: 32px;
}

.see-more-container{
	font-size: 14px;
	color: rgb(var(--style-link));
}
/**************** right column end *****************************/

/**************** duDatepicker styles override start *****************************/
.dcalendarpicker .dudp__wrapper {
	border-radius: 12px !important;
}
/**************** duDatepicker styles override end *****************************/

/******************* middle column start **********************/
.search-box{
	background-color: white;
	border-radius: 100px;
	height: 2.5rem;
	transition: var(--background-transition);
	border: solid 1px rgb(var(--style-neutral-light));
}

.search-box:hover {
    background: rgb(var(--style-neutral-light));
}

.icon-thicker {
	font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}

.small-icon,
.search-box-icon {
	transition: var(--background-transition);
	border-radius: 50%;
}

.search-box-icon {
	font-size: 1.15rem;
	font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}

.small-icon {
	font-size: 1.25rem;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.empty-state-title {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
}

/******************** middle column end **********************/

/************************ alertas start *****************************/
.notifications-empty {
	height: 400px;
}
/************************ alertas end *****************************/

.menuImgOpen {
	display: none;
}

.menuImgClose, .menuImgOpen {
	width: 13px;
	align-self: center;
}

.menu ul {
    list-style-type: none;
    font-size: 26px;
    padding: 5px;
    margin-left: 5px;
    color: white;
}
a {
    text-decoration: none !important;
    cursor: pointer;
}

.sticky-topbar {
	position:fixed;
	width:100%;
	z-index: 2;
	top:0;
}

.likeButton {
	border: none;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	width: 30px;
}

.boxContactsShare {
	cursor: pointer;
}

.contactNameShare {
	font-size: 13.33px;
	color: #202020;
	line-height: 1;
}

.indicadoresPopUpClose {
	border:none;
	font-size:13px;
	display:inline-block;
	outline:0;
	border-radius: 25px;
	padding:2px 20px;
	vertical-align:middle;
	overflow:hidden;
	text-decoration:none;
	color:#0073ae;
	background-color:#ffffff;
	text-align:center;
	cursor:pointer;
	white-space:nowrap;
	float: right;
	border-style: solid;
    border-color: #0073ae;
    border-width: 1.5px;
    font-family: OpenSans-Bold;
}

.stop-scrolling {
	position: relative;
	overflow: hidden;
}

.modalPopUps {
    display: none;
}

.popup {
	width: 380px;
	height: auto;
	margin: 0;
	background-color: white;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9000;
}

.standard-modal,
.popup-content-box,
.indicadores-popup-content-box {
	background-color: white;
	position: fixed;
	margin: 0px auto;
	top: 50%;
	left: 50%;
	z-index: 11;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.standard-modal {
	width: unset;
	height: unset;
}

.no-border {
	border: 0px;
}

.select-input-background {
	border: 1px solid;
}

.indicadores-popup-content-box {
	width:600px;
}

.popup-content-box {
	width: 30%;
	height: 224px;
}

.presentismo {
	text-align: center;
	height: 40px;
	padding: 8px;
	cursor: pointer;
	display: inline-block;
	width: 49%;
}

#presentismo {
	display: none;
}

.voy {
	color: #00669d;
	font-family: OpenSans-Bold;
	padding-left: 30px
}

.noVoy {
	color: #6a6a6a;
	font-family: OpenSans-Bold;
	padding-right: 30px;
}

.accionMañana {
	width: 20px;
}

.indicadoresPopUpContent {
	width:100%; 
	margin: auto; 
	padding-top: 5%;
    padding-bottom: 48px;
    padding-left: 5%;
    padding-right: 5%;
}

.shareContactList {
	margin-top: 10px;
	overflow-y: scroll;
}

.shareDestinatarios {
	width: 91%;
	height:28px;
	resize: none;
	margin: auto;
	border-radius: 5px;
    border: none;
    cursor: default;
}

.shareDestinatarios:hover,
.shareDestinatarios:active,
.shareDestinatarios:focus {
	 outline:0px !important;
    -webkit-appearance:none;
}

.container-share-header {
	height: 230px;
}

.container-owners-header {
	height: 160px;
}

.containerShareToList {
	height: 32px;
    background: white;
    margin: auto;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    border: 1px solid #dfe0e4;
}

.containerShareToList *, .presentismo * {
	display: inline-block;
	vertical-align: middle;
}

.shareNewsPopUpContent {
	max-height: 80px;
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid #CAC4D0;
}

.shareNewsPopUpContent img {
	object-fit: scale-down;
} 

.people {
	font-family: OpenSans-Regular;
	font-weight: 600;
	color: rgb(var(--color-primary));
}

.postImportantRead,
.postImportant {
	position: absolute;
	top: 18px;
	right: 15px;
	border-radius: 44px;
	height: 32px;
	color: rgb(var(--style-stroke));
	background-color: rgb(var(--style-link));
	letter-spacing: 1.5px;
	transition: var(--all-transition);
}

.postImportantRead {
	background-color: rgb(var(--background-surface-3));
	color: rgb(var(--color-black));
}

.postImportantRead .material-symbols-outlined {
	color: rgb(var(--color-primary));
}

.postImportant:hover {
	filter: brightness(90%);
}

.postImportant:active {
	filter: brightness(80%);
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  max-width: 219px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.menu li:hover {
  background: #074167;
}

.menu li {
  padding-left: 5%;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.menuOpen {
	opacity:0.8;
    background-color:#000000;
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:1000;
    display: none;
    cursor: pointer;
}

.labelPersonalizado {
	margin-bottom: 0px;
	font-family: OpenSans-Bold;
	border: 1px solid #dfe0e4;
    background: #FFFFFF;
    width: 170px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    height: 25px;
    line-height: 25px;
}

.inputPersonalizado {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

 #chat-bar .handle {
  position: relative;
  height: 94%;
  top: 56px;
  padding-bottom: 68px;
  width: 100%;
  background-color: rgb(var(--style-primary));
  display: flex;
  justify-content: center;
}

#chat-bar {
	z-index: 7;
}

.chat-iframe {
	border-radius: 12px;	
}

.p-bar-dev {
	background: #6D8F28;
}

.p-bar-uat {
	background: #FF3366;
}

/*************** contactos/agenda start *******************************/

.cake-icon {
	background-color: #FFF;
	border-radius: 50%;
	padding: .2rem;
	font-size: 12px;
	box-shadow: 0px 0.8px 3.2px rgba(0, 0, 0, 0.12);
}

.empty-birthday-img {
	height: 54px !important;
	width: 54px !important;
}

.boxContacts {
	background: #FFF;
	height: 80px;
	margin: auto; 
	margin-top: 8px;
	border-radius: 12px;
	cursor: default;
	display: flex;
	align-items: center;
}

.postProfilePhoto {
	text-align: -webkit-center;
}

.birthday-item img,
.postProfilePhoto img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	outline: 1px solid hsl(202.5deg 10.53% 85.1% / 61.18% )
}

/*************** contactos/agenda end *******************************/

/******************* general start *********************/
.onboarding-video-overlay {
	bottom: 3.5rem;
	height: 400px;
	background: rgb(20 28 36);
}

.selected-avatar {
	padding: 0 !important;
	margin-left: -8px !important;
}

.selected-avatar img,
.selected-avatar .initial {
	border: 2px solid rgb(var(--color-neutral));
	border-radius: 100%;
}

/******************* general end *********************/

.container-one-col,
.container-two-cols,
.container-three-cols,
.container-four-cols {
	display: grid;
	grid-row-gap: 16px;
}

.container-one-col {
	justify-content: center;
}

.container-two-cols {
	grid-template-columns: 47% 47%;
}

.container-three-cols {
	grid-template-columns: 32% 32% 32%;
}

.container-four-cols {
	grid-template-columns: 24% 24% 24% 24%;
}
/********************** Responsive start ***********************************/
.lg\:display-none {
	display: none;
}

.md\:display-flex {
	display: none;
}

.mobile-section-title {
	display: none;
}

@media only screen and (max-width: 1236px) {
	.xl\:font-size-22 {
		font-size: 22px;
	}

	.xl\:font-size-16 {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1024px) {
	.lg\:font-size-22 {
		font-size: 22px;
	}

	.lg\:font-size-16 {
		font-size: 16px;
	}
	
	.featured-news-button-text {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	.gtmd\:w-fill-available {
		width: -moz-available;
		width: -webkit-fill-available;
		width: fill-available;
	}
	
	.gtmd\:self-start {
		align-self: start;
	}

	.gtmd\:display-none {
		display: none;
	}

	.gtmd\:p-4 {
		padding: 1rem;
	}

	.gtmd\:px-4 {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.gtmd\:pr-4 {
		padding-right: 1rem;
	} 
	
	.gtmd\:h-70 {
		height: 70% !important;
	}
	
	.gtmd\:h-full {
		height: 100% !important;
	}
	
	.gtmd\:w-25 {
		width: 25% !important;
	}

	.gtmd\:w-75 {
		width: 75% !important;
	}
	
	.gtmd\:left-0 {
		left: 0;
	}
}

@media only screen and (max-width: 768px) {
	tool-tip {
		display: none !important;
	}
	
	.featured-news-button-text {
		display: block;
	}
	
	.middle-container {
		width: 100%;
	}
	
	.middle-column {
		width: 100% !important;
	}
	
	main {
		width: 100% !important;
		margin-right: 1rem;
		margin-left: 1rem;
		padding-right: 0 !important;
	}
	
	.alerts-modal {
		position: fixed !important;
		width: 306px;
		right: 0;
		top: 0;
		height: 100vh;
		z-index: 5;
		box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 6px rgba(0, 0, 0, 0.15);
	}
	
	.navbar-logo {
		padding-left: 0;
		width: auto;
		height: 38px;
	}
	
	.alerts-modal-body {
		max-height: 86vh;
	}
	
	.floating-footer,
	.floating-header {
		width: calc(100vw - 2rem) !important;
	}

	.md\:box-shadow {
		box-shadow: 6px 4px 18px rgb(0 0 0 / 25%);
	}
	
	.md\:menu-box-shadow {
		box-shadow: 119px 4px 0px 400px rgb(12 36 58 / 64%);
	}

	.md\:actions-menu-box-shadow {
		box-shadow: 0 4px 0 500px rgb(12 36 58 / 64%);
	}
	
	.md\:font-size-14 {
		font-size: 14px;
	}

	.md\:font-size-10 {
		font-size: 10px;
	}

	.md\:font-size-16-forced {
		font-size: 16px !important;
	}

	.md\:font-size-14-forced {
		font-size: 14px !important;
	}

	.md\:font-size-12-forced {
		font-size: 12px !important;
	}

	.md\:font-size-10-forced {
		font-size: 10px !important;
	}

	.md\:justify-center {
		justify-content: center;
	}
	
	.md\:items-center {
		align-items: center;
	}
	
	.md\:overflow-hidden {
		overflow: hidden;
	}

	.md\:w-auto {
		width: auto !important;
	}
	
	.md\:w-full {
		width: 100% !important;
	}
	
	.md\:w-70 {
		width: 70%;
	}
	
	.md\:w-248px {
		width: 248px;
	}
	
	.md\:w-200px {
		width: 200px;
	}
	
	.md\:min-w-unset {
		min-width: unset;
	}

	.md\:max-h-unset {
		min-height: unset;
	}

	.md\:h-full {
		height: 100%;
	}
	
	.md\:h-auto {
		height: auto;
	}
	
	.md\:font-size-20 {
		font-size: 20px
	}
	
	.topbar-item > .material-symbols-outlined {
		font-size: 20px;
	}
	
	.navbar-profile-initials,
	.topbar-item,
	.navbar-profile-img {
		height: 2rem;
		width: 2rem;
	}

	.md\:display-none {
		display: none !important;
	}

	.md\:display-flex {
		display: flex !important;
	}
	
	.md\:position-unset {
		position: unset !important;
	}
	
	.md\:fixed {
		position: fixed;
	}
	
	.md\:top-unset {
		top: unset;
	}
	
	.md\:top-0 {
		top: 0;
	}

	.md\:bottom-0 {
		bottom: 0;
	}

	.md\:bottom-4-forced {
		bottom: 1rem !important;
	}
	
	.md\:left-0 {
		left: 0;
	}

	.md\:right-0 {
		right: 0;
	}

	.md\:right-4 {
		right: 1rem;
	}
	
	.md\:m-0 {
		margin: 0;
	}

	.md\:mb-4 {
		margin-bottom: 1rem;
	}
	
	.md\:p-0 {
		padding: 0;
	}
	
	.md\:pl-4 {
		padding-left: 1rem;
	}
	
	.md\:pr-16 {
		padding-right: 4rem;
	}
	
	.md\:px-2 {
		padding-right: .5rem;
		padding-left: .5rem;
	}
	
	.md\:pt-1 {
		padding-top: .25rem;
	}
	
	.md\:pt-2 {
		padding-top: .5rem;
	}
	
	.md\:pt-3 {
		padding-top: .75rem;
	}
	
	.md\:pt-4 {
		padding-top: 1rem;
	}
	
	.md\:pb-6 {
		padding-bottom: 1.5rem;
	}
	
	.md\:pb-40 {
		padding-bottom: 10rem;
	}
	
	.md\:pb-100 {
		padding-bottom: 25rem;
	}
	
	.md\:m-4 {
		margin: 1rem;
	}

	.md\:mr-015 {
		margin-right: .15rem;
	}

	.md\:mr-5 {
		margin-right: 1.25rem;
	}

	.md\:ml-2 {
		margin-left: .5rem;
	}

	.md\:ml-4 {
		margin-left: 1rem;
	}

	.md\:mx-4 {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.md\:mt-10 {
		margin-top: 2.5rem;
	}

	.md\:full-screen-modal {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
		height: 100% !important;
	}
	
	.md\:nabvar-free-modal{
		max-height: calc(100% - 57px) !important;
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
		height: calc(100% - 57px) !important;
	}
	
	.md\:bottom-modal {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
		height: 70% !important;
		bottom: 0;
		position: fixed; 
	}
	
	.md\:flex-col {
		flex-direction: column;
	}
	
	.md\:flex-wrap {
		flex-wrap: wrap;
	}
	
	.md\:flex-col-reverse {
		flex-direction: column-reverse;
	}
	
}

@media only screen and (min-width: 568px) {
	.gtsm\:display-none {
		display: none;
	}

	.gtsm\:flex-col {
		flex-direction: column;
	}
	
	.gtsm\:w-70 {
		width: 70%;
	}
}


@media only screen and (max-width: 568px) {
	.featured-news-button-text {
		display: none;
	}
	
	.user-menu {
		max-height: unset;
		height: 100%;
		position: fixed;
		width: 306px;
		background: #fff;
		top: 0;
		bottom: 0;
		right: 0;
		z-index: 3;
		box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 6px rgba(0, 0, 0, 0.15);
	}
	
	.lg\:display-none {
		display: flex;
	}
	
	.sm\:display-none {
		display: none;
	}
	
	.sm\:display-flex {
		display: flex !important;
	}
	
	.sm\:display-block {
		display: block !important;
	}
	
	.sm\:position-unset {
		position: unset;
	}
	
	.sm\:absolute {
		position: absolute;
	}
	
	.sm\:flex-wrap {
		flex-wrap: wrap;
	}

	.sm\:flex-row {
		flex-direction: row;
	}

	.sm\:justify-center {
		justify-content: center;
	}

	.sm\:flex-col {
		flex-direction: column;
	}

	.sm\:items-start {
		align-items: start;
	}

	.sm\:items-center {
		align-items: center;
	}

	.sm\:flex-col-reverse {
		flex-direction: column-reverse;
	}

	.sm\:self-center {
		align-self: center;
	}
	
	.sm\:self-start {
		align-self: start;
	}
	
	.sm\:self-end-forced {
		align-self: end !important;
	}
	
	.sm\:justify-between {
		justify-content: space-between;
	}

	.sm\:gap-2 {
		gap: .5rem;
	}
	
	.sm\:gap-4 {
		gap: 1rem;
	}
	
	.sm\:min-w-unset-forced {
		min-width: unset !important;
	}

	.sm\:max-w-unset-forced {
		max-width: unset !important;
	}

	.sm\:max-w-16 {
		max-width: 4rem;
	}

	.sm\:max-w-24 {
		max-width: 6rem;
	}
	
	.sm\:max-w-35 {
		max-width: 8.75rem;
	}
	
	.sm\:left-0 {
		left: 0;
	}

	.sm\:top-0 {
		top: 0;
	}

	.sm\:top-4 {
		top: 1rem;
	}

	.sm\:right-0 {
		right: 0;
	}

	.sm\:right-0-forced {
		right: 0 !important;
	}

	.sm\:right-4 {
		right: 1rem;
	}

	.sm\:right-8 {
		right: 2rem;
	}

	.sm\:w-content-forced {
		width: fit-content !important;
	}

	.sm\:w-auto-forced {
		width: auto !important;
	}

	.sm\:w-fill-available {
		width: -moz-available;
		width: -webkit-fill-available;
		width: fill-available;
	}

	.sm\:w-90 {
		width: 90%;
	}

	.sm\:w-60 {
		width: 60%;
	}

	.sm\:w-full-forced {
		width: 100% !important;
	}
	
	.sm\:p-0 {
		padding: 0;
	}

	.sm\:p-4 {
		padding: 1rem;
	}

	.sm\:px-2 {
		padding-left: .5rem;
		padding-right: .5rem;
	}

	.sm\:px-4 {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.sm\:px-6 {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.sm\:m-0 {
		margin: 0;
	}

	.sm\:mx-4 {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.sm\:ml-6 {
		margin-left: 2.5rem;
	}
	
	.sm\:mr-4 {
		margin-right: 1rem;
	}

	.clients-modal, .owners-modal {
		bottom: 5%;
		right: 10%;
	}
}

@media only screen and (min-width: 430px) {
	.gts\:justify-between {
		justify-content: space-between;
	}
}

@media only screen and (max-width: 430px) {
	.centered-absolute {
		top: 0;
		left: 0;
		transform: unset;
		right: 0;
		bottom: 0;
		position: fixed;
		height: 100%;
		z-index: 50 !important;
		min-width: 100%;
	}
	
	.s\:full-screen-modal {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
		height: 100% !important;
	}
	
	.s\:nabvar-free-modal {
		max-height: calc(100% - 57px) !important;
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
		height: calc(100% - 57px) !important;
	}
	
	.s\:font-size-14 {
		font-size: 14px;
	}

	.ss\:display-none {
		display: none;
	}

	.ss\:flex-col {
		flex-direction: column;
	}

	.ss\:flex-col-reverse {
		flex-direction: column-reverse;
	}

	.s\:fixed {
		position: fixed;
	}

	.s\:fixed-forced {
		position: fixed !important;
	}

	.s\:absolute {
		position: absolute;
	}

	.s\:top-unset {
		top: unset;
	}
	
	.s\:top-unset-forced {
		top: unset !important;
	}
	
	.s\:bottom-0 {
		bottom: 0;
	}
	
	.ss\:bottom-0-forced {
		bottom: 0;
	}
	
	.ss\:bottom-4 {
		bottom: 1rem;
	}
	
	.ss\:bottom-6 {
		bottom: 1.5rem;
	}
	
	.ss\:bottom-8 {
		bottom: 2rem;
	}

	.ss\:right-0-forced {
		right: 0 !important;
	}
	
	.ss\:right-4 {
		right: 1rem;
	}

	.ss\:right-8 {
		right: 2rem;
	}
	
	.ss\:right-20 {
		right: 5rem;
	}

	.s\:mt-2 {
		margin-top: .5rem;
	}
	
	.ss\:mt-4 {
		margin-top: 1rem;
	}
	.ss\:mx-4 {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	
	.ss\:p-4 {
		padding: 1rem;
	}
	
	.s\:p-6 {
		padding: 1.5rem;
	}
	
	.s\:max-height-unset {
		max-height: unset !important;
	}

	.s\:max-w-24 {
		max-width: 6rem;
	}
	
	.ss\:w-full-minus-4rem-forced {
		width: calc(100% - 6rem) !important;
	}

	.s\:w-45 {
		width: 45% !important;
	}
	
	.s\:w-30 {
		width: 30% !important;
	}
	
	.ss\:w-full {
		width: 100% !important;
	}
	
	.ss\:gap-6 {
		gap: 1.5rem;
	}
}

@media only screen and (max-width: 380px) {
	.navbar-logo {
		display: none;
	}
	
	.mobile-section-title {
		display: flex;
		max-width: 9rem;
	}

	.ss\:full-screen-modal {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
		height: 100% !important;
	}
	
	.s\:display-none {
		display: none;
	}
	
	.ss\:fixed {
		position: fixed;
	}
	
	.ss\:absolute {
		position: absolute;
	}
	
	.s\:bottom-8 {
		bottom: 2rem;
	}

	.s\:right-4 {
		right: 1rem;
	}
		
	.s\:position-unset {
		position: unset;
	}
	
	.xs\:justify-between {
		justify-content: space-between;
	}
	
	.s\:bottom-0-forced {
		bottom: 0 !important;
	}

	.s\:right-0-forced {
		right: 0 !important;
	}

	.s\:max-w-unset {
		max-width: unset !important;
	}
	
	.s\:w-full {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
	}
	
	.s\:w-90 {
		width: 90%;
	}
	
	.xs\:max-w-16 {
		max-width: 4rem;
	}

	.xs\:max-w-12 {
		max-width: 3rem;
	}

	.xs\:mr-8 {
		margin-right: 2rem;
	}

	.xs\:mt-4 {
		margin-top: 1rem;
	}
	
	.xs\:mx-4 {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.xs\:px-0 {
		padding-right: 0;
		padding-left: 0;
	}

	.xs\:px-2 {
		padding-right: .5rem;
		padding-left: .5rem;
	}
}

@media only screen and (max-width: 350px) {
	.mobile-section-title {
		display: flex;
		width: 6rem;
	}
}

@media only screen and (min-width: 320px) {
	.gtxs\:p-4 {
		padding: 1rem;
	}
}

@media only screen and (max-width: 320px) {
	/*works when smaller than sm*/
	.xs\:w-full,
	.alerts-modal {
		width: 100%;
	}

	.xs\:w-full-forced {
		width: 100% !important;
	}

	.xs\:display-none {
		display: none;
	}

	.xs\:gap-6 {
		gap: 1.5rem;
	}

	.xs\:flex-wrap {
		flex-wrap: wrap;
	}

	.xs\:p-8 {
		padding: 2rem;
	}

	.xs\:m-0 {
		margin: 0 !important;
	}

	.xs\:full-screen-modal {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
		height: 100% !important;
	}
	
	.xs\:absolute {
		position: absolute;
	}

	.xs\:fixed {
		position: fixed;
	}

	.xs\:bottom-4 {
		bottom: 1rem;
	}

	.xs\:bottom-8 {
		bottom: 2rem;
	}

	.xs\:right-4 {
		right: 1rem;
	}

	.xs\:right-8 {
		right: 2rem;
	}
	
	.xs\:m-4 {
		margin: 1rem;
	}
}
/********************** Responsive end ***********************************/

/* prefect scrollbar ctrl + f fix */
#perfect-scroll-body {
    overflow-y: scroll !important;
}

#perfect-scroll-body::-webkit-scrollbar {
    display: none;
}


