*{
    box-sizing:border-box;
}
html,body{
    width:100%;
    height:100%;
    overflow:hidden;
}

html,
.uk-offcanvas-page{
    overflow-y:unset!important; 
    overflow-x:unset!important;
}

body{
    background-color:#eee;
}

#inactivity_overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: #214383cc;
    z-index: 57;
}
#inactivity_overlay .tm-session-expired,
#inactivity_overlay.tm-has-expired .tm-session-active{
    display:none;
}
#inactivity_overlay.tm-has-expired .tm-session-expired{
    display:block;
}

:root {
    --primary-linear: linear-gradient(150deg, #203c71 60%, rgba(13, 28, 54, 1) 90%);
    --primary: #203c71;
    --lighter-primary: #214383;
    --lightest-primary: #4a85cc;
    /*
    --primary: #4a85cc;
    --lighter-primary: #4a85ccde;
    --lightest-primary: #4a85cc38;
    */
    --secondary: #33343d;
    --lighter-secondary: #4b4b54;
    --light-border: #e5e5e5;
    --lighter-grey: #f5f5f5;
    --mid-grey: #666;
    --white: #fff;
    --grey: #ddd;
    --red: #ed133c;
    --green: #20b920c9;

    --neutral-000: #fff;
    --neutral-100: #eee;
    --neutral-200: #ddd;
    --neutral-300: #ccc;
    --neutral-400: #bbb;
    --neutral-500: #aaa;
    --neutral-600: #999;
    --neutral-700: #666;
    --neutral-800: #333;
    --neutral-900: #111;

    --transition-standard: 0.2s ease-in-out;

    /* --green-000: #20b920c9;

    --red-000: #ed133c;

    --orange-000: #ff8800; */
}

/* CUSTOM SCROLLBAR */

::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    
    -webkit-border-radius: 7px;
    border-radius: 7px;
    
    background: var(--neutral-200);  
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: var(--neutral-200);   
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    transition: opacity 500ms ease;
    background-color: rgba(123, 123, 123, 0.5);

    opacity: 0;
    visibility: hidden;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-overlay p {
    color: var(--secondary);
}

.loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

.loader::before , .loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #33343d;
    animation: loadingAnim 2s linear infinite ;
}

    .loader::after{
    border-color: var(--primary);
    animation: loadingAnim 2s linear infinite , rotate 0.5s linear infinite reverse;
    inset: 6px;
}

@keyframes rotate {
    0%   {transform: rotate(0deg)}
    100%   {transform: rotate(360deg)}
}

@keyframes loadingAnim {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

#header{ 
    position:fixed; 
    top:0; 
    left:0; 
    right:0; 
    /*height:114px;*/
    height: 60px;
    z-index:5;
    /*background-color:#005397;
    background-color: var(--primary);*/
    background-color: #fff;
    border: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

#header h1{ 
    position:relative;
    text-indent:-999999em;
    /*background-image: url(/library/img/logo-white.png);*/
    background-image: url(/library/img/logo-secondary.png);
    width: 150px;
    background-size: 133px;
    background-repeat: no-repeat;
    background-position: left;
    margin: 0 0.3em 0 0.3em;
}

.uk-icon-button > i {
    font-size: 20px;
}

.uk-navbar-container {
    /*border-bottom: 3px solid #fff;*/
    height: 100%;
}

.uk-navbar-nav {
    height: 100%;
    padding: 0 20px 0 0;
    gap: 20px;
}

.uk-navbar-nav>li>div {
    display: flex;
    align-items: center;
    height: 100%;
}

.uk-navbar-nav>li>a {
    min-height: auto;
}

.search-box {
    background-color: #eee;
}

.account-btn.arrow-down {
    padding-top: 2px;
}

.account-btn.arrow-up {
    padding-bottom: 3px;
}

.row-hover:hover {
    background-color: #f3f3f388;
    cursor: pointer;
}

/* Header Toggle Switches - START */

.inbounds-toggle-container {
    position: relative;
}

.inbounds-toggle-container::after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: -6px;
    border-left: 2px solid rgb(204, 204, 204);
}

.leads-toggle-container {
    position: relative;
    padding-right: 6px;
}

.leads-toggle-container::after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: -8px;
    border-left: 2px solid rgb(204, 204, 204);
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ed133c;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    transition: 0.2s ease-in-out;
    border: 1px solid rgb(204, 204, 204);
}
  
.slider::before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: all .2s ease-in-out;
    border-radius: 50%;
}

.slider:hover::before {
    -webkit-transform: translateX(2px);
    -ms-transform: translateX(2px);
    transform: translateX(2px);
}

/*
.inbounds-toggle-container .active:hover::before {
    -webkit-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    transform: translateX(-2px);
}

.leads-toggle-container .active:hover::before {
    -webkit-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    transform: translateX(-2px);
}
*/

.switch input:checked + .slider {
    background-color: #20b920c9;
}
  
/*
.switch input:focus + .slider {
    box-shadow: 0 0 1px #20b920c9;
}
 */
  
.switch input:checked + .slider::before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Header Toggle Switches - END */

#working_modal{
    z-index:999999;
}

#current_team_name{
    /*color: #ccc;*/
    color: #fff;
    font-weight: 500;
}

.uk-table .uk-label {
    opacity: 0.7;
}

.uk-table-hover{
    cursor: pointer;
}
.tm-table-header{
    background-color: #33343d;
}
.uk-card-media-top svg{
    max-width:200px;
}

#user_profile_link{
    color:#fff;
    text-transform:none;
    font-size:16px;
    padding-right: 1em;
}
#user_profile_link span.uk-icon{
    color:#aaa;
}
#user_profile_link:hover span.uk-icon{
    color:#fff;
}


#main_navigation{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

#main_navigation .uk-subnav {
    height: 100%;
}

#main_navigation .uk-subnav li {
    height: 100%;
    display: flex;
    transition: 0.2s ease-in-out;
}

#main_navigation .uk-subnav-pill{
    display: inline-flex;
    margin-bottom:0;
}

#main_navigation .uk-subnav-pill a{
    height: 100%;
    color: #33343d;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: 0.2s ease-in-out;
}

#main_navigation .uk-subnav-pill a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    background-color: transparent;
}

#main_navigation .uk-subnav-pill>.uk-active>a{
    color: var(--primary);
    background-color: transparent;
    border-bottom: 3px solid var(--primary);
}

#main_navigation .uk-subnav-pill>.uk-active>a:hover {
    transform: none;
}

/* offcanvas fixes for light background*/
.tm-offcanvas-light .uk-offcanvas-bar{
    color:#666;
}
.tm-offcanvas-light .uk-offcanvas-bar h3,
.tm-offcanvas-light .uk-offcanvas-bar h4{
    color:#333;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-icon-button{
    color: #999;
    background-color:#f8f8f8;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-icon-button:hover{
    background-color: #ebebeb;
    color: #666;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-text-meta{
    color: #999;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-tab>*>a{
    color: #999;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-tab>*>a:hover{
    color: #666;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-tab>.uk-active>a{
    color: #333;
    border-color: #1e87f0;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-tab>.uk-active>a,
.uk-tab>.uk-active>a{
    border-bottom: 3px solid var(--primary);
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-tab::before{
    border-bottom: 1px solid #e5e5e5;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-table-divider>:first-child>tr:not(:first-child){
    border-top: 1px solid #e5e5e5;
}
.tm-offcanvas-light .uk-offcanvas-bar .uk-table-hover tbody tr:hover{
    background: #ffd;
}

.tm-active,
.tm-offcanvas-light .uk-offcanvas-bar .uk-table-hover tbody tr.tm-active{
    background-color: #d6e9ff;
}

/* Style all UIkit icon-buttons when they’re disabled */
.uk-icon-button[disabled] {
    opacity: 0.5;             /* make them look dimmed */
    cursor: not-allowed;      /* show the 🚫 cursor */
    pointer-events: none;     /* just in case */
    filter: grayscale(80%);   /* strip color to reinforce “disabled” */
}

.uk-card-hover{
    cursor:pointer;
}

.tm-offcanvas-light .uk-offcanvas-bar{
    background: #fff;
    border-right:2px solid #ccc;
}

.uk-offcanvas-bar em {
    color: #f0506e;
}

/* DASHBOARD */
.tm-dashboard-key-number{
    font-size:10em; 
    line-height:1;
}

#footer{ position:fixed; bottom:0; left:0; right:0; height:50px; z-index:5;font-size:0.8em;}


#lobby{
    background-size: cover;
    background-position: bottom;
}
main{
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50px;
    overflow: auto;
    border-top: 1px solid rgb(204, 204, 204);
    z-index: 4;
}
.with-header main{
    /*top: 114px;*/
    top:60px;
}

.uk-icon-button {
    background-color: var(--primary);
    /*background-color: var(--secondary);*/
    transition: 0.2s ease-in-out;
}

.uk-icon-button:hover {
    /*background-color: #151515;*/
    background-color: var(--lighter-primary);
    transform: translateY(-2px);
}

.uk-button {
    border-radius: 10px;
    text-transform: unset;
    font-weight: 500;
}

.uk-button.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.uk-button.icon i {
    margin-right: 5px;
}

.uk-button-primary{
    /*background-color:var(--primary);*/
    background: var(--primary-linear);
    border: 2px solid var(--secondary);
    transition: 0.2s ease-in-out;
    color: var(--neutral-000);
}

.uk-button-success {
    background: var(--green-linear);
    border: 2px solid var(--secondary);
    color: #fff;
    transition: 0.2s ease-in-out;
}

.uk-button-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.uk-button-secondary{
    background-color: var(--grey);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    transition: 0.2s ease-in-out;
}

.uk-button-secondary i {
    transition: 0.2s ease-in-out;
}

.uk-button-secondary:hover {
    transform: translateY(-1px);
    background-color: var(--lighter-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.uk-button-secondary.uk-icon-button {
    border: none;
}

.uk-button-secondary.light {
    background-color: #fff;
    border: 2px solid var(--secondary);
    color: var(--secondary)
}

.uk-button-secondary.light:hover {
    background-color: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.uk-button-secondary.danger {
    background-color: #fff;
    border: 2px solid var(--red);
    color: var(--red);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.uk-button-secondary.danger:hover {
    background-color: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.uk-button-secondary.next:hover i {
    transform: translateX(5px);
}

.uk-button-primary.light {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.uk-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.uk-offcanvas-bar .uk-button-secondary {
    background-color: var(--grey);
    color: var(--secondary);
    transition: 0.2s ease-in-out;
}

.uk-offcanvas-bar .uk-button-secondary:hover {
    transform: translateY(-1px);
    background-color: var(--lighter-primary);
    color: #fff;
}

.uk-icon-link {
    transition: 0.2s ease-in-out;
}

.uk-icon-link:hover {
    transform: translateY(-1px);
}

.my-acc-label{
    font-size: 0.8em;
    color: #e85858;
}
.my-acc-required{
    font-size: 0.8em;
    color: #e85858;
}
.uk-form-controls{ position:relative;}
.my-acc-password-toggle{
    cursor: pointer;
    position: absolute;
    right: 7px;
    bottom: 7px;
    border: 1px solid #ccc;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    line-height: 22px;
    background-color: #eee;
}

#members_list{
    margin-top:1em;
}

#assigned_access_pane {
    min-height:400px !important;
    max-height: calc(100vh - 450px);
}

#member_invite_area {
    margin-left: 70px;
    transition: padding 0.3s ease-in-out;
}

.role-access-level:disabled{
    background-color: var(--red);
}
.role-access-level:disabled:checked{
    background-color: var(--green);
}

.uk-checkbox:checked {
    background-color: var(--lighter-primary);
}

/* SIDEBARS */

[data-unid]{
    background-color:#222222;
    font-family:monospace;
}
[data-enhance-phonenumber] .uk-label{
    padding:0;
    margin-left:6px;
    background-color:#eee;
    color:#aaa;
}
[data-enhance-phonenumber] .uk-label.tm-incoming{
    padding-right:6px;
}
[data-enhance-phonenumber] .uk-label.tm-outgoing{
    padding-left:6px;
}
.tm-incoming.tm-call-activity,
.tm-outgoing.tm-call-activity{
    background-color:#197b19;
    color:#fff;
}
.tm-phone-data{
    cursor:pointer;
}
[data-enquiry-count]{
    background-color:#ed133c;
}
[data-enquiry-count="1"]{
    background-color:#20b920c9;
}

/* ** MODULES *******************  */
/* Module Navbar */ 
.tm-module-navbar{
    position:absolute;
    top:0;
    left:0;
    width:70px;
    bottom:0;
    z-index:1002;

    background-color: #f8f8f8;
    border-right: 2px solid rgb(204, 204, 204);
    box-shadow: 5px 0 15px rgba(0,0,0,.08);
}

.tm-module-navbar ul.uk-tab-left::before{
    display:none;
}

.tm-module-navbar .uk-tab li {

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
    margin-top: -9px;
    border-bottom: 2px solid rgb(204, 204, 204);
    transition: 0.2s ease-in-out;
}

.tm-module-navbar .uk-tab li:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 25px rgba(0,0,0,.16);
}

/* TEMP HACK - Couldnt find a way to reverse the autoincrement z index using CSS - Limited to 10 menu items*/

.tm-module-navbar .uk-tab li:nth-of-type(1){
    z-index: 10;
}

.tm-module-navbar .uk-tab li:nth-of-type(2){
    z-index: 9;
}

.tm-module-navbar .uk-tab li:nth-of-type(3){
    z-index: 8;
}

.tm-module-navbar .uk-tab li:nth-of-type(4){
    z-index: 7;
}

.tm-module-navbar .uk-tab li:nth-of-type(5){
    z-index: 6;
}

.tm-module-navbar .uk-tab li:nth-of-type(6){
    z-index: 5;
}

.tm-module-navbar .uk-tab li:nth-of-type(7){
    z-index: 4;
}

.tm-module-navbar .uk-tab li:nth-of-type(8){
    z-index: 3;
}

.tm-module-navbar .uk-tab li:nth-of-type(9){
    z-index: 2;
}

.tm-module-navbar .uk-tab li:nth-of-type(10){
    z-index: 1;
}

.tm-module-navbar .uk-tab li a{
    font-size: 12px;
    text-align: center;
    padding: 1.4em 0 1em 0;
    display:block;
    border: 0;

    color: #33343d;
    font-weight: 600;
    text-transform: capitalize;
}
.tm-module-navbar .uk-tab li a:hover{
    color:var(--primary);
}

.tm-module-navbar .uk-tab li.uk-active{
    background: var(--primary-linear);
    /*background-color: var(--primary);*/
    border-top: none;
}
.tm-module-navbar .uk-tab li.uk-active a{
    color: #fff;
}
.tm-module-navbar .uk-tab li.uk-active a:hover{
    color: #fff;
}
.tm-module-navbar .uk-tab li a span.uk-icon{
    margin-bottom:0.7em;
    background-color: #fff;
    color:#33343d;
}
.tm-module-navbar .uk-tab li a span i{
    font-size: 20px;
}
.tm-module-navbar .uk-tab li.uk-active div{
    /*color: var(--primary);*/
    color: #fff;
}


/* Module Menu Options */ 
.tm-module-menu-options{
    top: 62px;
    bottom: 50px; 
    left: 70px;
    right:auto;
}
.tm-module-menu-options .uk-offcanvas-bar{
    width:310px;
}
@media (min-width: 1200px){
    .tm-module-menu-options{
        display:block;
    }
    /* keeps it open a large screen sizes
    .tm-module-menu-options .uk-offcanvas-bar{
        display:block;
        left:0;
    }
    */
}
/* Module Section */
[data-show-nav="false"] .tm-module-navbar,
[data-show-nav="false"] .tm-module-menu-options{
    display: none !important;
}

.tm-module-section{
    overflow: hidden;
}
.tm-module-section section{
    position: absolute;
    top:0;
    left:0px;
    right:0;
    bottom:0;
    overflow:auto;
    margin-left: 70px;  
    background-image: url(/library/img/logo-white.png);
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: center;
}
[data-show-nav="false"] .tm-module-section section{
    margin-left: 0; 
}
/*
@media (min-width: 1200px){
    .tm-module-section section{
        margin-left: 380px;    
    }
}
*/

/* WORKSPACE */
.tm-workspace,
.tm-workspace-frame{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    transition: padding 0.3s ease-in-out;
}
.tm-workspace-toolbar{
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:44px;
    /*background-color:#7b7b7b;*/
    background-color: #f8f8f8;
    border-bottom: 2px solid rgb(204, 204, 204);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.tm-workspace-with-sidebar .tm-workspace-toolbar{
    right:50px;
}

.tm-workspace-content{
    position:absolute;
    top:44px;
    left:0;
    right:0;
    bottom:0;
}
.tm-workspace-content-no-tabs{
    top:0;
}

.tm-workspace-toolbar .tm-toolbar-tab{
    cursor:pointer;
    padding: 4px 9px 4px 9px;
    border-radius: 10px;
    background-color: #ccc;
    color: #33343d;
    transition: 0.2s ease-in-out;
    text-transform: capitalize;
    font-weight: 500;
}

.tm-workspace-toolbar .tm-toolbar-tab:hover{
    box-shadow: 0 14px 25px rgba(0,0,0,.16);
    color: var(--primary);
    transform: translateY(-2px);
}

.tm-workspace-toolbar .tm-close-button{
    background-color: #ccc;
    border-radius: 50%;
    padding: 2px;
    position: relative;
    top: -2px;
    left: 5px;
    color:#333;
}
.tm-workspace-toolbar .tm-close-button:hover{
    background-color: #f0506e;
    color:#fff;
}
.tm-toolbar-tab.tm-selected{
    background: var(--primary-linear);
    /*background-color: var(--primary);*/
    color: #fff;
    box-shadow: 0 14px 25px rgba(0,0,0,.16);
}

.tm-toolbar-tab.tm-selected:hover{
    color: #fff;
}

.tm-workspace-toolbar .uk-slidenav{
    color: var(--secondary);
}

/* OVERRRIDES */

.uk-notification {
    border-radius: 10px;
}

.uk-notification-message {
    border-radius: 10px;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--secondary);
    /*background: var(--primary-linear);
    color: #fff;
    */
}

.large-dropdown {
    /*background-color: #f5f5f5;*/
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    z-index: 50;
    width: 500px;
    box-shadow: 0 14px 25px rgba(0,0,0,.16);
}

.large-dropdown .header {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.large-dropdown .header button{
    color: var(--primary);
    background-color: inherit;
    transition: 0.2s ease-in-out;
}

.large-dropdown .header button:hover {
    transform: translateY(-2px);
}

#notification_list [data-date] .uk-text-meta {
    padding: 5px 15px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    margin: 0;
}

#notification_list .row {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: 0.2s ease-in-out;
    min-height: 50px;
}

#notification_list .row:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#notification_list .row:hover {
    cursor: pointer;
    background-color: #4a85cc38;
    color: var(--primary);
}

#notification_list .icon {
    background-color: var(--lighter-primary);
    border-radius: 5px;
    padding: 0px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    color: #fff;
}

#notification_list .icon i {
    font-size: 20px;
}

#notification_list .text {
    margin-left: 10px;
}

#notification_list .text span {
    color: var(--primary);
}

#notification_btn_container::before {
    content: attr(data-notifications);
    position: absolute;
    z-index: 5;
    top: -1px;
    right: -5px;
    border-radius: 50%;
    background-color: #ed133c;
    width: 12px;
    height: 12px;
    color: #fff;
    padding: 2px 2px 3px 2px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: null;
}

#notification_btn_container[data-notifications="0"]::before {
    display: none;
}

#notification_btn_container.active::before {
  animation: jump 0.83s;
  animation-iteration-count: infinite;
}

#notification_btn_container.active {
    margin-bottom: -5px;
}

#notification_btn_container.active a {
    background-color: var(--primary);
    color: #fff;
    animation: jump-n-shake 0.83s;
    animation-iteration-count: infinite;
}

@keyframes jump {
    0% { transform: translateX(0) }
    25% { transform: translateY(-9px) }
    35% { transform: translateY(-9px) }
    55% { transform: translateY(-9px) }
    65% { transform: translateY(-9px) }
    75% { transform: translateY(-9px) }
    100% { transform: translateY(0) }
}

@keyframes jump-n-shake {
    0% { transform: translateX(0) }
    25% { transform: translateY(-9px) }
    35% { transform: translateY(-9px) rotate(17deg) }
    55% { transform: translateY(-9px) rotate(-17deg) }
    65% { transform: translateY(-9px) rotate(17deg) }
    75% { transform: translateY(-9px) rotate(-17deg) }
    100% { transform: translateY(0) rotate(0) }
}

/*
#notification_btn_container:hover::before {
    animation: jump 0.83s;
    animation-iteration-count: infinite;
}

@keyframes wobble {
    0% {
      -webkit-transform: none;
              transform: none;
    }
  
    15% {
      -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
              transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
  
    30% {
      -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
              transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
  
    45% {
      -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
              transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
  
    60% {
      -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
              transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
  
    75% {
      -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
              transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
  
    100% {
      -webkit-transform: none;
              transform: none;
    }
}
*/
.lookup-open {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.lookup-list {
    position: absolute;
    /*
    left: 0px;
    right: 0px;
    */
    z-index: 999;
    list-style: none;
    padding: 0px;
    max-height: 270px;
    overflow-y: auto;
    background-color: #fff; 
    width: 400px; 
    border: 1px solid #ccc;
    /*
    border: 2px solid var(--primary);
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: -2px;
    margin: 0;
    */
    /*margin: 5px 0 0 0;*/
    border-radius: 10px;
    /*border: 1px solid #eee;*/
    box-shadow: 0 5px 15px rgba(0,0,0,.16);
}

/*
.lookup-list::before {
    content: "";
    border-bottom: 1px dashed rgb(229, 229, 229);
    height: 1px;
    width: 99.9%;
    display: block;
}
*/

.lookup-list > li {
    padding: 3px;
    transition: 0.2s ease-in-out;
}

.lookup-list > li.client {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.lookup-list > li.client > div:last-of-type {
    margin-left: 20px;
}

.lookup-list > li.client > div > div {
    border-radius: 50%;
    background-color: var(--primary);
    width: 40px;
    height: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lookup-list > li.client .name {
    font-weight: 500;
}

.lookup-list > li.client .email {
    font-weight: 400;
}

.lookup-list > li:hover {
    cursor: pointer;
    background-color: #4a85cc38;
    color: var(--primary);
}

.uk-offcanvas-bar #error_section .uk-alert-danger{
    background: #333;
    color: #f0506e;
    border: 2px dashed;
}
.uk-offcanvas-bar a{
    color: var(--primary);
}
.uk-offcanvas-bar a:hover{
    color: var(--secondary);
}
.uk-offcanvas-bar .uk-input[readonly]{
    color:#777;
}
.uk-offcanvas-bar .uk-close{
    color: var(--primary);
    border-radius:50%;
}
.uk-offcanvas-bar .uk-close:hover{
    background-color: #ccc;
}

#team_dropdown button{
    border: 0;
    padding: 7px 0;
    background-color: transparent;
    font-weight:bold;
    color:#666;
    font-size: 14px;
    font-family:unset;
    cursor:pointer;
}
#team_dropdown li:hover button{
    color:#fff;
}

/* SIDEBAR */
.tm-workspace-sidebar-options{
    padding-top:12px;
}
.tm-workspace-sidebar-options button{
    cursor:pointer;
    margin-bottom:12px;
}
.tm-workspace.tm-workspace-with-sidebar .tm-workspace-content{
    right: 50px;
}
.tm-workspace.tm-workspace-with-sidebar .tm-workspace-sidebar{
    position:absolute;
    top:0;
    width:50px;
    right:0;
    bottom:0;
    overflow: hidden;
    border-left:1px solid #c0c0c0;
    z-index:2;
    background-color:#eee;
}

.tm-workspace.tm-workspace-with-sidebar.tm-sidebar-open .tm-workspace-sidebar{
    width:550px;
    box-shadow: 0 0 11px 8px rgba(0, 0, 0, .08);
}
.tm-workspace.tm-workspace-with-sidebar.tm-sidebar-open .tm-workspace-content{
    right: 550px;
}

@media only screen and (max-width: 650px) {
    .tm-workspace.tm-workspace-with-sidebar.tm-sidebar-open .tm-workspace-sidebar{
        width:auto;
        left:0;
    }
}

.tm-workspace.tm-workspace-with-sidebar .tm-workspace-sidebar .tm-workspace-sidebar-content{
    display:none;   
}
.tm-workspace.tm-workspace-with-sidebar.tm-sidebar-open .tm-workspace-sidebar .tm-workspace-sidebar-options{
    display:none;
}
.tm-workspace.tm-workspace-with-sidebar.tm-sidebar-open .tm-workspace-sidebar .tm-workspace-sidebar-content{
    display:block;   
}

.tm-workspace .tm-workspace-sidebar .tm-component-title{
    padding:12px;
}
.tm-workspace .tm-workspace-sidebar .tm-component-title .tm-title-text{
    margin-left:12px;
}

.tm-workspace.tm-workspace-with-sidebar .tm-workspace-sidebar .tm-workspace-sidebar-content .tm-component-title{
    border-bottom:1px solid #ccc;
}
.tm-workload-search:hover{
    background:#ffd;
    cursor:pointer;
}

/* #main_navigation_switcher li:nth-child(n+12) .main-nav-label {
    display: none;
}

@media (max-width: 959px) {
    #header h1{ 
        width: 60px;
        background-image: url(/library/img/logo-only-secondary.png);
        background-size: 50px;
    }
}

@media (min-width: 960px) and (max-width: 1199.98px) {
    #main_navigation_switcher li:nth-child(n+3) .main-nav-label {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    #main_navigation_switcher li:nth-child(n+6) .main-nav-label {
        display: none;
    }
}

@media (min-width: 1440.02px) and (max-width: 1600px) {
    #main_navigation_switcher li:nth-child(n+8) .main-nav-label {
        display: none;
    }
}

@media (min-width: 1600.02px) and (max-width: 1800px) {
    #main_navigation_switcher li:nth-child(n+10) .main-nav-label {
        display: none;
    }
} */

#main_mobile_navigation {
    padding: 0 15px;
}

#mobile_menu_Toggle
{
  display: block;
  position: relative;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}


#mobile_menu_Toggle > input
{
  display: block;
  width: 45px;
  height: 40px;
  position: absolute;
  top: -9px;
  left: -6px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;

  margin: 0;
}

#mobile_menu_Toggle > span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #33343d;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#mobile_menu_Toggle > span:last-of-type {
    margin-bottom: 0;
}

#mobile_menu_Toggle > span:first-child
{
  transform-origin: 0% 0%;
}

#mobile_menu_Toggle > span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#mobile_menu_Toggle > input:checked ~ span
{
  opacity: 1;
  /* transform: rotate(45deg) translate(-2px, -1px); */
  transform: rotate(45deg) translate(2px, 0px);
  background: #33343d;
}

#mobile_menu_Toggle > input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#mobile_menu_Toggle > input:checked ~ span:nth-last-child(2)
{
/* transform: rotate(-45deg) translate(0, -1px); */
  transform: rotate(-45deg) translate(0px, 4px);
}

#mobile_menu {
  position: absolute;
  width: 100vw;
  height: calc(100vh - 110px);
  margin: 20px 0 0-15px;
  padding: 30px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

  overflow-y: auto;
}

#mobile_menu li {
  padding: 10px 0;
  font-size: 20px;
}

#mobile_menu li a {
    color: #33343d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

#mobile_menu li a:hover {
    text-decoration: none;
    color: var(--lighter-primary);
    transform: translateY(-2px);
}


#mobile_menu_Toggle > input:checked ~ ul
{
  transform: none;
}

#main_navigation_container {
    display: none;
}

#more_nav {
    padding-bottom: 4px;
}

#more_nav > a {
    font-size: 25px;
    display: inline-block;
}

#more_nav a {
    color: #33343d;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

#more_nav a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

#more_nav ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-weight: 500;
}

#more_nav ul li {
    padding: 5px 15px;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

#more_nav ul li:hover {
    box-shadow: none;
    background: transparent;
    transform: translateY(-2px);
}

#more_nav ul li:hover a {
    color: var(--primary);
    background: transparent;
    transform: translateY(-2px);
}

#more_nav ul li.active a{
    color: var(--primary);
}

@media (min-width: 960px) {
/*@media (min-width: 1200px) {*/
    #header .uk-navbar-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        z-index: auto;
    }

    #mobile_navigation_container {
        display: none;
    }

    #main_navigation_container {
        display: block;
    }

}

@media (max-width: 959.98px) {
/*@media (max-width: 1199.98px) {*/
    .with-header main.acting-user{
        top: 85px;
    }

    #acting_user_container {
        border-top: 1px solid #e5e5e5;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        background-color: #fff;
        height: 24px;
    }

    #acting_user_container .acting-user-sub-container {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    #acting_user_container .acting-user-sub-container .uk-text-bold{
        font-size: 14px;
    }

    #mobile_menu.acting-user {
        margin-top: 45px;
        height: calc(100vh - 135px);
    }


}

/* .animate-underline-center {
    position: relative;
    text-decoration: none;
}
  
.animate-underline-center::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
  
.animate-underline-center:hover::before {
    transform: scaleX(1);
} */


/* Animate the line from the left 
a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
  }
  */

  /* Animate the line from the right
  a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.3s ease;
}
*/

/* Base padding classes */
.uk-padding-xs { padding: 4px; }
.uk-padding-sm { padding: 8px; }
.uk-padding-md { padding: 16px; }
.uk-padding-lg { padding: 24px; }
.uk-padding-xl { padding: 32px; }
.uk-padding-xxl { padding: 40px; }

/* Base padding classes for specific sides */
.uk-padding-top-xs { padding-top: 4px; }
.uk-padding-bottom-xs { padding-bottom: 4px; }
.uk-padding-left-xs { padding-left: 4px; }
.uk-padding-right-xs { padding-right: 4px; }

.uk-padding-top-sm { padding-top: 8px; }
.uk-padding-bottom-sm { padding-bottom: 8px; }
.uk-padding-left-sm { padding-left: 8px; }
.uk-padding-right-sm { padding-right: 8px; }

.uk-padding-top-md { padding-top: 16px; }
.uk-padding-bottom-md { padding-bottom: 16px; }
.uk-padding-left-md { padding-left: 16px; }
.uk-padding-right-md { padding-right: 16px; }

.uk-padding-top-lg { padding-top: 24px; }
.uk-padding-bottom-lg { padding-bottom: 24px; }
.uk-padding-left-lg { padding-left: 24px; }
.uk-padding-right-lg { padding-right: 24px; }

.uk-padding-top-xl { padding-top: 32px; }
.uk-padding-bottom-xl { padding-bottom: 32px; }
.uk-padding-left-xl { padding-left: 32px; }
.uk-padding-right-xl { padding-right: 32px; }

.uk-padding-top-xxl { padding-top: 40px; }
.uk-padding-bottom-xxl { padding-bottom: 40px; }
.uk-padding-left-xxl { padding-left: 40px; }
.uk-padding-right-xxl { padding-right: 40px; }

/* Responsive padding for small screens and above */
@media (min-width: 640px) {
    .uk-padding-xs-s { padding: 4px; }
    .uk-padding-sm-s { padding: 8px; }
    .uk-padding-md-s { padding: 16px; }
    .uk-padding-lg-s { padding: 24px; }
    .uk-padding-xl-s { padding: 32px; }
    .uk-padding-xxl-s { padding: 40px; }

    .uk-padding-top-xs-s { padding-top: 4px; }
    .uk-padding-bottom-xs-s { padding-bottom: 4px; }
    .uk-padding-left-xs-s { padding-left: 4px; }
    .uk-padding-right-xs-s { padding-right: 4px; }

    .uk-padding-top-sm-s { padding-top: 8px; }
    .uk-padding-bottom-sm-s { padding-bottom: 8px; }
    .uk-padding-left-sm-s { padding-left: 8px; }
    .uk-padding-right-sm-s { padding-right: 8px; }

    .uk-padding-top-md-s { padding-top: 16px; }
    .uk-padding-bottom-md-s { padding-bottom: 16px; }
    .uk-padding-left-md-s { padding-left: 16px; }
    .uk-padding-right-md-s { padding-right: 16px; }

    .uk-padding-top-lg-s { padding-top: 24px; }
    .uk-padding-bottom-lg-s { padding-bottom: 24px; }
    .uk-padding-left-lg-s { padding-left: 24px; }
    .uk-padding-right-lg-s { padding-right: 24px; }

    .uk-padding-top-xl-s { padding-top: 32px; }
    .uk-padding-bottom-xl-s { padding-bottom: 32px; }
    .uk-padding-left-xl-s { padding-left: 32px; }
    .uk-padding-right-xl-s { padding-right: 32px; }

    .uk-padding-top-xxl-s { padding-top: 40px; }
    .uk-padding-bottom-xxl-s { padding-bottom: 40px; }
    .uk-padding-left-xxl-s { padding-left: 40px; }
    .uk-padding-right-xxl-s { padding-right: 40px; }
}

/* Responsive padding for medium screens and above */
@media (min-width: 960px) {
    .uk-padding-xs-m { padding: 4px; }
    .uk-padding-sm-m { padding: 8px; }
    .uk-padding-md-m { padding: 16px; }
    .uk-padding-lg-m { padding: 24px; }
    .uk-padding-xl-m { padding: 32px; }
    .uk-padding-xxl-m { padding: 40px; }

    .uk-padding-top-xs-m { padding-top: 4px; }
    .uk-padding-bottom-xs-m { padding-bottom: 4px; }
    .uk-padding-left-xs-m { padding-left: 4px; }
    .uk-padding-right-xs-m { padding-right: 4px; }

    .uk-padding-top-sm-m { padding-top: 8px; }
    .uk-padding-bottom-sm-m { padding-bottom: 8px; }
    .uk-padding-left-sm-m { padding-left: 8px; }
    .uk-padding-right-sm-m { padding-right: 8px; }

    .uk-padding-top-md-m { padding-top: 16px; }
    .uk-padding-bottom-md-m { padding-bottom: 16px; }
    .uk-padding-left-md-m { padding-left: 16px; }
    .uk-padding-right-md-m { padding-right: 16px; }

    .uk-padding-top-lg-m { padding-top: 24px; }
    .uk-padding-bottom-lg-m { padding-bottom: 24px; }
    .uk-padding-left-lg-m { padding-left: 24px; }
    .uk-padding-right-lg-m { padding-right: 24px; }

    .uk-padding-top-xl-m { padding-top: 32px; }
    .uk-padding-bottom-xl-m { padding-bottom: 32px; }
    .uk-padding-left-xl-m { padding-left: 32px; }
    .uk-padding-right-xl-m { padding-right: 32px; }

    .uk-padding-top-xxl-m { padding-top: 40px; }
    .uk-padding-bottom-xxl-m { padding-bottom: 40px; }
    .uk-padding-left-xxl-m { padding-left: 40px; }
    .uk-padding-right-xxl-m { padding-right: 40px; }
}

/* Responsive padding for large screens and above */
@media (min-width: 1200px) {
    .uk-padding-xs-l { padding: 4px; }
    .uk-padding-sm-l { padding: 8px; }
    .uk-padding-md-l { padding: 16px; }
    .uk-padding-lg-l { padding: 24px; }
    .uk-padding-xl-l { padding: 32px; }
    .uk-padding-xxl-l { padding: 40px; }

    .uk-padding-top-xs-l { padding-top: 4px; }
    .uk-padding-bottom-xs-l { padding-bottom: 4px; }
    .uk-padding-left-xs-l { padding-left: 4px; }
    .uk-padding-right-xs-l { padding-right: 4px; }

    .uk-padding-top-sm-l { padding-top: 8px; }
    .uk-padding-bottom-sm-l { padding-bottom: 8px; }
    .uk-padding-left-sm-l { padding-left: 8px; }
    .uk-padding-right-sm-l { padding-right: 8px; }

    .uk-padding-top-md-l { padding-top: 16px; }
    .uk-padding-bottom-md-l { padding-bottom: 16px; }
    .uk-padding-left-md-l { padding-left: 16px; }
    .uk-padding-right-md-l { padding-right: 16px; }

    .uk-padding-top-lg-l { padding-top: 24px; }
    .uk-padding-bottom-lg-l { padding-bottom: 24px; }
    .uk-padding-left-lg-l { padding-left: 24px; }
    .uk-padding-right-lg-l { padding-right: 24px; }

    .uk-padding-top-xl-l { padding-top: 32px; }
    .uk-padding-bottom-xl-l { padding-bottom: 32px; }
    .uk-padding-left-xl-l { padding-left: 32px; }
    .uk-padding-right-xl-l { padding-right: 32px; }

    .uk-padding-top-xxl-l { padding-top: 40px; }
    .uk-padding-bottom-xxl-l { padding-bottom: 40px; }
    .uk-padding-left-xxl-l { padding-left: 40px; }
    .uk-padding-right-xxl-l { padding-right: 40px; }
}

/* Responsive padding for extra large screens */
@media (min-width: 1600px) {
    .uk-padding-xs-xl { padding: 4px; }
    .uk-padding-sm-xl { padding: 8px; }
    .uk-padding-md-xl { padding: 16px; }
    .uk-padding-lg-xl { padding: 24px; }
    .uk-padding-xl-xl { padding: 32px; }
    .uk-padding-xxl-xl { padding: 40px; }

    .uk-padding-top-xs-xl { padding-top: 4px; }
    .uk-padding-bottom-xs-xl { padding-bottom: 4px; }
    .uk-padding-left-xs-xl { padding-left: 4px; }
    .uk-padding-right-xs-xl { padding-right: 4px; }

    .uk-padding-top-sm-xl { padding-top: 8px; }
    .uk-padding-bottom-sm-xl { padding-bottom: 8px; }
    .uk-padding-left-sm-xl { padding-left: 8px; }
    .uk-padding-right-sm-xl { padding-right: 8px; }

    .uk-padding-top-md-xl { padding-top: 16px; }
    .uk-padding-bottom-md-xl { padding-bottom: 16px; }
    .uk-padding-left-md-xl { padding-left: 16px; }
    .uk-padding-right-md-xl { padding-right: 16px; }

    .uk-padding-top-lg-xl { padding-top: 24px; }
    .uk-padding-bottom-lg-xl { padding-bottom: 24px; }
    .uk-padding-left-lg-xl { padding-left: 24px; }
    .uk-padding-right-lg-xl { padding-right: 24px; }

    .uk-padding-top-xl-xl { padding-top: 32px; }
    .uk-padding-bottom-xl-xl { padding-bottom: 32px; }
    .uk-padding-left-xl-xl { padding-left: 32px; }
    .uk-padding-right-xl-xl { padding-right: 32px; }

    .uk-padding-top-xxl-xl { padding-top: 40px; }
    .uk-padding-bottom-xxl-xl { padding-bottom: 40px; }
    .uk-padding-left-xxl-xl { padding-left: 40px; }
    .uk-padding-right-xxl-xl { padding-right: 40px; }
}


/* Responsive remove padding for small screens and above */
@media (min-width: 640px) {
    .uk-padding-remove-s { padding: 0 !important; }
    .uk-padding-remove-top-s { padding-top: 0 !important; }
    .uk-padding-remove-bottom-s { padding-bottom: 0 !important; }
    .uk-padding-remove-left-s { padding-left: 0 !important; }
    .uk-padding-remove-right-s { padding-right: 0 !important; }
    .uk-padding-remove-vertical-s { padding-top: 0 !important; padding-bottom: 0 !important; }
    .uk-padding-remove-horizontal-s { padding-left: 0 !important; padding-right: 0 !important; }
}

/* Responsive remove padding for medium screens and above */
@media (min-width: 960px) {
    .uk-padding-remove-m { padding: 0 !important; }
    .uk-padding-remove-top-m { padding-top: 0 !important; }
    .uk-padding-remove-bottom-m { padding-bottom: 0 !important; }
    .uk-padding-remove-left-m { padding-left: 0 !important; }
    .uk-padding-remove-right-m { padding-right: 0 !important; }
    .uk-padding-remove-vertical-m { padding-top: 0 !important; padding-bottom: 0 !important; }
    .uk-padding-remove-horizontal-m { padding-left: 0 !important; padding-right: 0 !important; }
}

/* Responsive remove padding for large screens and above */
@media (min-width: 1200px) {
    .uk-padding-remove-l { padding: 0 !important; }
    .uk-padding-remove-top-l { padding-top: 0 !important; }
    .uk-padding-remove-bottom-l { padding-bottom: 0 !important; }
    .uk-padding-remove-left-l { padding-left: 0 !important; }
    .uk-padding-remove-right-l { padding-right: 0 !important; }
    .uk-padding-remove-vertical-l { padding-top: 0 !important; padding-bottom: 0 !important; }
    .uk-padding-remove-horizontal-l { padding-left: 0 !important; padding-right: 0 !important; }
}

/* Responsive remove padding for extra large screens and above */
@media (min-width: 1600px) {
    .uk-padding-remove-xl { padding: 0 !important; }
    .uk-padding-remove-top-xl { padding-top: 0 !important; }
    .uk-padding-remove-bottom-xl { padding-bottom: 0 !important; }
    .uk-padding-remove-left-xl { padding-left: 0 !important; }
    .uk-padding-remove-right-xl { padding-right: 0 !important; }
    .uk-padding-remove-vertical-xl { padding-top: 0 !important; padding-bottom: 0 !important; }
    .uk-padding-remove-horizontal-xl { padding-left: 0 !important; padding-right: 0 !important; }
}

/* Base gap size classes */
.uk-gap-xs { gap: 4px; }
.uk-gap-sm { gap: 8px; }
.uk-gap-md { gap: 16px; }
.uk-gap-lg { gap: 24px; }
.uk-gap-xl { gap: 32px; }

/* Responsive gap sizes for small screens and above */
@media (min-width: 640px) {
    .uk-gap-xs-s { gap: 4px; }
    .uk-gap-sm-s { gap: 8px; }
    .uk-gap-md-s { gap: 16px; }
    .uk-gap-lg-s { gap: 24px; }
    .uk-gap-xl-s { gap: 32px; }
}

/* Responsive gap sizes for medium screens and above */
@media (min-width: 960px) {
    .uk-gap-xs-m { gap: 4px; }
    .uk-gap-sm-m { gap: 8px; }
    .uk-gap-md-m { gap: 16px; }
    .uk-gap-lg-m { gap: 24px; }
    .uk-gap-xl-m { gap: 32px; }
}

/* Responsive gap sizes for large screens and above */
@media (min-width: 1200px) {
    .uk-gap-xs-l { gap: 4px; }
    .uk-gap-sm-l { gap: 8px; }
    .uk-gap-md-l { gap: 16px; }
    .uk-gap-lg-l { gap: 24px; }
    .uk-gap-xl-l { gap: 32px; }
}

/* Responsive gap sizes for extra large screens and above */
@media (min-width: 1600px) {
    .uk-gap-xs-xl { gap: 4px; }
    .uk-gap-sm-xl { gap: 8px; }
    .uk-gap-md-xl { gap: 16px; }
    .uk-gap-lg-xl { gap: 24px; }
    .uk-gap-xl-xl { gap: 32px; }
}

button[ryoan-custom-switcher]{
    border-radius: 0;
    background: transparent;
    border-bottom: 3px solid transparent;
}
button[ryoan-custom-switcher].uk-active{
    border-bottom: 3px solid #8f8ed9;
}

#my_availability_modal .uk-modal-dialog{
    bottom: 80px;
    top: 40px;
    position: absolute;
    width: 90%;
    left: 40px;
    right: 40px;
    overflow:hidden;
    max-width:1500px !important;
}

#my_availability_modal .tm-left-panel{
    width:66%;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    overflow:auto;
}
#my_availability_modal .tm-right-panel{
    width:34%;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    overflow:auto;
}


#my_calendars_list li label{ cursor:pointer; }

#my_calendars_list li label input[type="checkbox"]{
    display:none;
}
#my_calendars_list li label .tm-selector{
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius:50%;
    margin-right:8px;
    display:inline-block;
}

#my_calendars_list li label input[type="checkbox"]~.uk-icon{
    display:none;
}
#my_calendars_list li label input[type="checkbox"]:checked~.uk-icon{
    display:inline-block;
}

#my_availability_modal #event_details_sidebar{
    position:fixed;
    top:0;
    left:auto;
    right:0;
    bottom:0;
    width:34%;
    min-width:400px;
    overflow:auto;
    color:#ffffffb3;
    background-color:#222;
    z-index:575;
}

#my_availability_modal #event_details_title{
    color:#ffffffb3;
}


#event_details_sidebar .tm-event-details-title .tm-hide-event-details{
    margin-right:10px;
}
#event_details_sidebar .tm-event-details-title .tm-cancel-event,
#event_details_sidebar.tm-from-record .tm-event-details-title .tm-hide-event-details{
    display:none;
}
#event_details_sidebar.tm-from-record .tm-event-details-title .tm-cancel-event{
    display:flex;
}

[data-show-callback],[data-show-task],[data-show-event]{
    display:none;
}

[data-event-type="event"] [data-show-event]{
    display:unset;
}
[data-event-type="callback"] [data-show-callback]{
    display:unset;
}
[data-event-type="task"] [data-show-task]{
    display:unset;
}

[data-event-type="event"][data-all-day-event="yes"] [data-hide-all-day]{
    display:none;
}

.ryoan-reminder .fc-event-title::before,
.ryoan-reminder .fc-list-event-title::before{
    content: "\F18A";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    margin-right:8px;
} 

.ryoan-callback .fc-event-title::before,
.ryoan-callback .fc-list-event-title::before{
    content: "\F5BC";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    margin-right:8px;
} 

.ryoan-task .fc-event-title::before,
.ryoan-task .fc-list-event-title::before{
    content: "\F43D";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    margin-right:8px;
} 

.ryoan-event .fc-event-title::before,
.ryoan-event .fc-list-event-title::before{
    content: "\F215";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    margin-right:8px;
}
input[name="event_type"]{
    display:none;
}
.tm-indicator{
    width:100%;
    display: inline-block;
    border: 3px transparent;
    padding: 3px;
    border-radius:8px;
}
input[name="event_type"]:checked~.tm-indicator{
    border: 3px solid #20b920c9;
}

#location_insights_switcher.uk-tab>*{
    padding-left:13px;
}