@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --color-primary: #ffad1f;
    --color-secondary: #ccc;
    --text-black: #292a2e;
}
body {
    margin: 0px;
    font-family: 'Poppins', sans-serif;
    
    /*Scrollbars */
    /* Foreground, Background */
    scrollbar-color: #ccc #292a2e;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*Scrollbars */
::-webkit-scrollbar {
    width: 6px; /* Mostly for vertical scrollbars */
    height: 6px; /* Mostly for horizontal scrollbars */
}

::-webkit-scrollbar-thumb { /* Foreground */
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover { /* Foreground */
    background: var(--color-primary);
}

::-webkit-scrollbar-track { /* Background */
    /*background: #292a2e;*/
    background: transparent;
}



html,
body,
app{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}


.user-badge{
    background: var(--color-primary);
    width: 90px;
    height: 90px;
    color: #fff;
    font-size: 2em;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
    line-height: 90px;
    min-width: 90px;
    margin-bottom: 20px;
}

.h1-heading{
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 30px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

p{
    font-size: 0.875em;
}


/* helpers */
.px-40{
    padding-left: 40px;
    padding-right: 40px;
}

.mb-80{
    margin-bottom: 80px;
}

.py-80{
    padding-top: 80px;
    padding-bottom: 80px;
}

.layout-horizontal{
    display: flex;
    flex-direction: row;
    align-content: normal;
    align-items: stretch;
    justify-content: space-between;

    height: 100%;
    width: 100%;
}

.layout-vertical{
    display: flex;
    flex-direction: column;
    align-content: normal;
    align-items: stretch;
    justify-content: stretch;

    height: 100%;
    width: 100%;
}

app > .layout-vertical{
    margin-top: -80px;
    padding-top: 80px;
}

app > .portal-header-nav-bar-wrap ~ .layout-vertical {
    margin-top: -120px;
    padding-top: 120px;
}

.portal-header-bar-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding-left: 30px;    
    height: 80px;
    background-color: #1f1f21;
    border-bottom: 1px solid #666;
    position: sticky;
    top: 0;
    z-index: 2;
}

.portal-header-nav-bar-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    /*justify-content: space-between;*/
    align-content: center;
    padding-left: 30px;    
    height: 40px;
    min-height: 40px;
    background-color: #1f1f21;
    border-bottom: 1px solid #666;
    position: sticky;
    top: 80px;
    z-index: 1;
}

.portal-header-nav-bar-wrap ul{
    list-style: none;
    padding-inline-start: 0;
    padding-left: 0;
    color: #fff;
    font-size: 0.875em;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    gap: 40px;
    height: 100%;
    margin-bottom: 0;
}

.portal-header-nav-bar-wrap ul li{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portal-header-nav-bar-wrap ul li a{
    color: #fff;
}


.portal-header-nav-bar-wrap ul li.active:before{
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-bottom: 2px solid var(--color-primary);
    pointer-events: none;
}


.main{
    width: 100%;
}

a{
    color: var(--color-secondary);
}

.vertical-center{
    display: flex !important;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.portal{
    
    height: 100%;
    color: #fff;
}

.portal::before{
    background: linear-gradient(90deg, #484849 0%, #1f1f21 100% );
    content: '';
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.portal::after{
    background: url(../images/centero-logo-bg.png) left top no-repeat;
    background-size: 40%;
    content: '';
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -o-filter: blur(30px);
    -ms-filter: blur(30px);
    filter: blur(30px);
    opacity: 0.2;
    z-index: -1;
}

.portal a{
    color: var(--color-primary);
}


/* Buttons */

.btn{
    cursor: pointer;
    color: var(--color-secondary);
    transition: all .35s;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.btn:hover{
    border: 1px solid #666;
    color: #ccc;
}

.btn a{
    color: inherit;
}

.btn-primary{
    border: 2px solid #ffc662;
    border-radius: 8px;
    background-color: #ffc662;
    font-family: Poppins;
    font-size: 0.875em;
    color: #1f1f21;
    text-align: center;
    padding: 20px;
    font-weight: 700
}

.btn-primary:hover{
    border-color: var(--color-primary);
    border-width: 2px;
    color: #1f1f21;
    background: var(--color-secondary);
}

.btn-secondary{
    border: 2px solid #d8d9da;
    border-radius: 8px;
    background-color: transparent;
    font-family: Poppins;
    font-size: 0.875em;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-weight: 700
}

.btn-secondary:hover{
    border-color: var(--color-primary);
    border-width: 2px;
    color: var(--color-primary);
    background: transparent;
}

.btn-round{
    border-radius: 32px;
}

.btn-compact{
    padding: 12px 22px;
    border-radius: 3em;
}

.btn-border{
    border: 2px solid var(--color-secondary);
}

.btn-border:hover{
    border: 2px solid var(--color-primary);
}

span.title {
    max-width: 0;
    opacity: 0;
    display: none;
}

.side-tools .btn a{
    color: var(--color-secondary);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
}
.side-tools .btn a .icon{
    font-size: 16px;
}

.side-tools .notifications a{
    color: var(--color-primary);
}


aside.expanded .side-tools,
aside.side-bar-wrap:hover .side-tools{
    justify-content: space-between;
}

aside.expanded .side-tools .title,
aside.side-bar-wrap:hover .side-tools .title{
    opacity: 1;
    max-width: initial;    
    display: inline;
}

.btn-expand{
    border-radius: 30px;
    width: 32px;
    height: 32px;
    transition: all .35s;
}

.btn-expand:hover{
    width: initial;
}

.btn-expand:hover a{
    color: var(--color-primary);
}

.btn-expand a{
    color: var(--color-secondary);
    text-decoration: none;
}

.btn-expand .icon{
    font-size: 16px;
}

aside.expanded .side-tools .btn-expand a .title,
aside.side-bar-wrap:hover .side-tools .btn-expand a .title{
    max-width: 0;
    opacity: 0;
    display: none;
}

aside.side-bar-wrap.expanded .side-tools .btn-expand:hover a .title,
aside.side-bar-wrap:hover .side-tools .btn-expand:hover a .title,
.btn-expand:hover a .title,
.btn-expand:focus a .title{
    max-width: initial;
    opacity: 1;
    display: inline;
}


/* Header-bar */
.top-tool{
   display: flex;
}

.top-tool span.title {
    max-width: initial;
    opacity: 1;
    display: initial;
}

.top-tool .btn{
    border: 1px solid #666;
    color: #ccc;
    padding-left: 1.5em;
    padding-right: 1.5em;
    border-radius: 0;
}

.top-tool .btn:hover a,
.top-tool .btn a:hover{
    color: var(--color-primary);
}

.top-user{
    position: relative;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: row;
    padding: 15px 10px;
    transition: all .35s;
    cursor: pointer;
}

.top-user .user-menu{
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    color: var(--text-black);
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 10;
}

.top-user .user-menu.expanded{
    display: block;
}

.top-user .user-menu ul{
    list-style: none;
    padding-left: 0;
    padding-inline-start: 0px;
}

.top-user .user-menu ul li{    
    padding-left: 20px;
    margin-top: 15px;
    position: relative;
}

.top-user .user-menu a{
    color: var(--text-black);
}

.top-user .user-menu a:before{
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
}

/*aside.expanded .aside-user,
aside:hover .aside-user{    
    padding: 15px 30px;
    flex-direction: row;
}*/

.top-tool .user-badge{
    background: #fff;
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    font-size: 1em;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
    line-height: 50px;
    min-width: 50px;
    margin-bottom: 0px;
}

.top-tool .user-info{
    display: none;
    flex-direction: column;
    color: #fff;
}


.top-tool .user-info{
    display: flex;    
    white-space: nowrap;
}

.top-tool .user-name{
    font-weight: 700;
    white-space: nowrap;
}





/* Asides */

.panel-heading-icon .bi{
    color: var(--color-secondary);
    
}

aside .panel-heading-icon{
    margin-top: 16px;
    width: 100%;
} 

aside.side-info-wrap .panel-heading-icon{
    
    padding-left: 44px;
}


.border-top{
    border-top: 1px solid #666 !important;
}

.border-left{
    border-left: 1px solid #666 !important;
}

aside .min-hidden{
    max-width: 0;
    opacity: 0;
    display: none;
}

aside .max-hidden{
    max-width: initial;
    opacity: 1;
    display: block;
}

aside.expanded .min-hidden,
aside.side-bar-wrap:hover .min-hidden{
    max-width: initial;
    opacity: 1;
    display: block;
}

aside.expanded .max-hidden,
aside.side-bar-wrap:hover .max-hidden{
    max-width: 0;
    opacity: 0;
    display: none;
}

/* SideBar */
aside.side-bar-wrap {
    background: linear-gradient(45deg, #484849 0%, #1f1f21 100% );
    --radius-size: 25px;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: all .35s;
    width: 100px;
    min-width: 100px;  
}

/* SideInfo */
aside .page-sub-nav ul{
    padding-block-start: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: calc(100% + 45px);
    margin-left: -15px;
}

aside .page-sub-nav ul a{
    color: #fff;
}

aside .page-sub-nav ul li{
    padding: 15px 15px 15px 50px;
    font-size: 0.875em;
    cursor: pointer;
}

aside .page-sub-nav ul li.current{
    background-color: rgba(255,255,255,0.1);
}


aside.side-info-wrap {
    background: linear-gradient(45deg, #484849 0%, #1f1f21 100% );
    --radius-size: 25px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: all .35s;
    width: 75px;
    min-width: 75px;  
}

aside.side-bar-wrap:hover,
aside.expanded{
    width: 365px;
    min-width: 365px;    
}

aside.side-info-wrap::-webkit-scrollbar,
aside.side-bar-wrap::-webkit-scrollbar {
    width: 5px;
}
aside.side-info-wrap::-webkit-scrollbar-track
aside.side-bar-wrap::-webkit-scrollbar-track {
    background-color: transparent;
}
aside.side-info-wrap::-webkit-scrollbar-thumb
aside.side-bar-wrap::-webkit-scrollbar-thumb {
    border-radius: var(--radius-size);
    background-color: var(--color-primary);
}

aside .side-info-notifications{
    display: none;
}

aside.expanded .side-info-notifications,
aside.side-bar-wrap:hover .side-info-notifications{
    display: flex;
}

nav.side-bar {
    height: 100%;
    display: inline-block;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-right: 30px;
}

.side-info-wrap nav.side-bar{
    display: flex;
    flex-direction: column;
    padding-right: 0;
    padding-left: 30px;
}

aside::after {
    content: '';
    width: 30px;
    height: 100vh;
    background-color: #fff;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 0px;
    border-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: 1;
}

aside.side-info-wrap::after {
    content: '';
    width: 30px;
    height: 100vh;
    background-color: #fff;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0px;
    border-radius: 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 1;
}

aside.no-bg::after {
    content: '';
    display: none;
}

nav.side-bar .logo-area {
    --curve-size: calc(2 * var(--radius-size));
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    margin-top: 30px;
    min-height: 48px;
}

nav.side-bar .logo-area img {
    position: absolute;
    transition-duration: 1s;
}
aside.expanded nav.side-bar .logo-area img.min, 
aside.side-bar-wrap:hover nav.side-bar .logo-area img.min {
    max-height: 0;
    opacity: 0;
}


nav.side-bar .logo-area img.max {
    max-width: 0;
    opacity: 0;
    transition-duration: 0s;
}
aside.expanded nav.side-bar .logo-area img.max, 
aside.side-bar-wrap:hover nav.side-bar .logo-area img.max {
    max-width: 100%;
    opacity: 1;
}

nav.side-bar ul {
    padding: 0;
    margin: calc(2 * var(--radius-size)) 0;
    display: flex;
    flex-direction: column;
}

nav.side-bar ul.sub {
    height: 0;
    overflow: hidden;
    transition: all .35s;
    margin: 0;
    margin-left: -25px;
    margin-right: -25px;
}

nav.side-bar ul.sub li{
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 0;
    width: 100%;
    padding-left: 59px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 1px;
    padding-right: 25px;
    opacity: 0;
    transition: all .2s;
}

nav.side-bar ul.sub li:hover{
    background: rgba(255,255,255,0.2);
}

nav.side-bar ul.sub li:first-child{
    margin-top: 8px;
}


nav.side-bar ul.sub li:nth-child(1) {
    transition-delay: 100ms;
}
  
nav.side-bar ul.sub li:nth-child(2) {
    transition-delay: 200ms;
}
  
nav.side-bar ul.sub li:nth-child(3) {
    transition-delay: 300ms;
}

aside.expanded nav.side-bar li.active ul.sub, 
aside.side-bar-wrap:hover nav.side-bar li.active ul.sub{
    display: flex;
    height: initial;    
}

aside.expanded nav.side-bar li.active ul.sub li,
aside.side-bar-wrap:hover nav.side-bar li.active ul.sub li{
    position: relative;
    opacity: 1;
}

nav.side-bar ul li {
    padding: 10px var(--radius-size);
    padding: 14px 23px;
    list-style: none;
    border-radius: var(--radius-size);
    z-index: 1;
}
nav.side-bar ul li:not(.active) {
    z-index: 2;
}
nav.side-bar ul li.active {
    position: relative;
}

nav.side-bar ul li.active::after {
    --curve-size: calc(2 * var(--radius-size));
    content: '';
    width: 8px;
    height: var(--curve-size);
    height: 50px;
    background-color: #fff;
    border-radius: 8px 0 0 8px;
    position: absolute;
    right: 0;
    top: 2px;
    z-index: 2;
}

nav.side-bar ul li a{
    color: #bbbfc7;
    font-size: 14px;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins';
    white-space: nowrap;
}

nav.side-bar ul li a:hover{
    color: #fff;
}

nav.side-bar ul li.active a{
    color: #fff;
}

nav.side-bar ul li.active a .icon{
    color: var(--color-primary);
}

aside.expanded nav.side-bar ul li a, 
aside:hover nav.side-bar ul li a{
    gap: 10px;
}
nav.side-bar ul li a span {
    display: flex;
    transition: 0.75s cubic-bezier(0.39, 0.58, 0.57, 1);
}
nav.side-bar ul li a span.icon {
    font-size: 24px;
    line-height: 1;
}
nav.side-bar ul li a span.title {
    max-width: 0;
    opacity: 0;
}
aside.expanded nav.side-bar ul li a span.title, 
aside:hover nav.side-bar ul li a span.title {
    width: auto;
    max-width: 20rem;
    opacity: 1;
}

aside .side-tools{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #aaa;
    padding: 12px 40px 12px 10px;
    transition: all .35s;
}

aside.expanded .side-tools,
aside.expanded:hover .side-tools{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #aaa;
    padding: 12px 40px 12px 10px;
    transition: all .35s;
}

aside.side-info-wrap .side-tools,
aside.side-info-wrap:hover .side-tools{
    padding: 12px 10px 12px 10px;
}



.side-tools .icon{
    font-size: 1em;
}

.side-tools ul li{
    list-style: none;
}

aside.expanded .side-tools, 
aside:hover .side-tools {
    padding: 12px 40px 12px 10px;
}


.aside-user{
    background-color: var(--color-primary);
    display: flex;
    flex-direction: row;
    padding: 15px 10px;
    transition: all .35s;

}

aside.expanded .aside-user,
aside:hover .aside-user{    
    padding: 15px 30px;
    flex-direction: row;
}

.aside-user .user-badge{
    background: #fff;
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    font-size: 1em;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
    line-height: 50px;
    min-width: 50px;
    margin-bottom: 0px;
}

.aside-user .user-info{
    display: none;
    flex-direction: column;
    color: #fff;
}


aside.expanded .aside-user .user-info,
aside:hover .aside-user .user-info{
    display: flex;    
    white-space: nowrap;
}

.aside-user .user-name{
    font-weight: 700;
    white-space: nowrap;
}


aside #compactor-toggle .bi-chevron-bar-left::before{
    content: "\f277";
}

aside.expanded #compactor-toggle .bi-chevron-bar-left::before{
    content: "\f276";
}

aside.side-info-wrap #compactor-toggle .bi-chevron-bar-left::before{
    content: "\f276";
}

aside.side-info-wrap.expanded #compactor-toggle .bi-chevron-bar-left::before{
    content: "\f277";
}

.side-info-notifications{
    height: 100%;
}

/* FORMS */

.form-group{
    position: relative;
    display: block;
}

label{
    margin-bottom: 0;
    white-space: nowrap;
}

.login-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: stretch;
    align-items: stretch;
}

.login-form .form-group,
.login-form .form-group input:not(input[type=checkbox]){
    width: 100%;
}

.login-form input:not(input[type=checkbox]){
    padding: 20px;
    border: 1px solid rgba(255,255,255, 0.4);
    border-radius: 8px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #ffffff;
    background: transparent;
    margin-bottom: 20px;    
}
  
  
.custom-checkbox:checked~.custom-checkbox-label::before { 
    color: #fff;
    background: none;
    font-size: 1.5em;
    font-weight: 400;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1;
    border-radius: 2px;
    text-align: center; 
}  

.custom-checkbox:checked~.custom-checkbox-label::after { 
    font-family: 'bootstrap-icons';
    content: "\F26E";
    color: #fff;
    background: none;
    font-size: 1.5em;
    font-weight: 400;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1;
    border-radius: 2px;
    text-align: center;
    left: 6px;
    top: -2px; 
}  
  
  
.custom-checkbox-label::before {  
    position: absolute;  
    top: 0;  
    left: .5rem;  
    display: block;  
    width: 1.2rem;  
    height: 1.2rem;  
    pointer-events: none;  
    content: "";  
    -webkit-user-select: none;  
    -moz-user-select: none;  
    -ms-user-select: none;  
    user-select: none;  
    border: 1px solid #ccc; 
    border-radius: 2px;
    background: transparent;  
}  
  
.custom-checkbox-label::after {  
    position: absolute;  
    top: 0;  
    left: .5rem;  
    display: block;  
    width: 1.2rem;  
    height: 1.2rem;  
    content: "";  
    background-repeat: no-repeat;  
    background-position: center center;  
    background-size: 50% 50%;  
}  
  
.custom-checkbox-label{  
    cursor: pointer;  
    font-weight: 700;  
    padding-left: 3rem;
    margin-right: 1rem;
    color: inherit !important;     
}  
  
.custom-checkbox {  
    position: absolute;  
    z-index: -1;  
    opacity: 0;  
}  

/* The switch - the box around the slider */
.custom-toggle-label {
    position: relative;
    display: inline-block;    
    height: 2em;
    width: 4em;
    margin-right: 8px; 
}

/* Hide default HTML checkbox */
.custom-toggle-label input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.custom-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border: 2px solid #ccc;
    -webkit-transition: .4s;
    transition: .4s;    
}

.custom-toggle-slider:before {
    position: absolute;
    content: "";
    height: calc(2em - 10px);
    width: calc(2em - 10px);
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.custom-toggle-label input:checked + .custom-toggle-slider {
    background-color: var(--color-primary);
}

.custom-toggle-label input:focus + .custom-toggle-slider {
    box-shadow: 0 0 1px var(--color-primary);;
}

.custom-toggle-label input:checked + .custom-toggle-slider:before {
    -webkit-transform: translateX(calc(2em));
    -ms-transform: translateX(calc(2em));
    transform: translateX(calc(2em));
}

/* Rounded sliders */
.custom-toggle-label .custom-toggle-slider {
    border-radius: 2em;
}

.custom-toggle-label .custom-toggle-slider:before {
    border-radius: 50%;
}

.custom-select-label{
    margin-right: 8px;
}

.custom-select select {    
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    z-index: 1;
    outline: none;
    color: #fff;
}

.custom-select select::-ms-expand {
    display: none;
} 
  
.custom-select {
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;

    min-width: 15ch;
    max-width: 30ch;
  
    /*border: 1px solid var(--select-border);*/
    border-radius: 8px;
    padding: 0.5em 0.5em;
  
    font-size: 0.875rem;
    cursor: pointer;
    line-height: 1.1;
    color: #fff;
    background-color: #575757;
    /*background-image: linear-gradient(to top, #f9f9f9, #fff 33%);*/
    
}

.custom-select:not(.select--multiple)::after {
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: #fff;
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

.custom-select select,
.custom-select::after {
    grid-area: select;
}
  
  
.custom-select select:focus + .focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--select-focus);
    border-radius: inherit;
}
  
.custom-select select[multiple] {
    padding-right: 0;
    height: 6rem;
}

.custom-select select option,
.custom-select select[multiple] option {
    white-space: normal;
    padding: 8px;
    outline-color: #fff;
    background: #575757;
}
  
.custom-select .select--disabled {
    cursor: not-allowed;
    background-color: #575757;
    /*background-image: linear-gradient(to top, #ddd, #eee 33%);*/
}  
  
.custom-select + label {
    margin-top: 2rem;
}


/* Layout items */

.account-card{    
    margin-bottom: 0;
    background: #fff;
    color: var(--text-black);
    border-top-left-radius: 30px;
    width: calc(100% + 15px);
}

.account-card .container-fluid .row > div{
    padding: 50px 40px;
}

.account-card hr{
    margin-top: 30px;
    margin-bottom: 20px;
}

.account-card .border-top{
    border-top: 1px solid #dee2e6 !important;
}

.account-card .border-bottom{
    border-bottom: 1px solid #dee2e6 !important;
}

.account-card .border-left{
    border-left: 1px solid #dee2e6 !important;
}

.account-card .btn-secondary{
    color: var(--text-black);
}

.edit-row {
    display: flex;
    flex-direction: row;
    font-size: 0.875em;
}

.edit-row > div{
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.edit-row .edit-row-tool {
    flex-basis: 10%;
    min-width: 100px;
}

.edit-row .edit-row-title {
    flex-basis: 20%;
}

.edit-row .edit-row-value {
    flex-basis: 70%;
}

.edit-row .edit-row-editor {
    display: initial;
    flex-basis: 70%;
}

.edit-row .user-badge{
    margin-bottom: 0px;
}


.list-tools{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;    
}

.list-tools .list-tool .form-group,
.list-tools .list-tool .form-group label{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: center;
    align-items: center;    
    font-size: 0.925em;
}


.product-cards{
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--text-black);
}

.product-cards .product-card{
    flex-basis: calc(33% - 30px);
    background: #fff;
    border-radius: 30px;
    padding: 30px;
}

.product-card .product-logo{
    height: 30px;
    margin-bottom: 10px;
}

.product-card .h1-heading{
    margin-bottom: 12px;
}

.product-card p{
    font-size: 0.875em;
}

.product-card .product-version{
    font-size: 0.75em;
}

.product-cards .product-card hr{
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-cards .button-row{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

.product-cards .btn-secondary{
    color: var(--text-black);
}

.compact-product-card-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-product-card-list .product-card{
    display: flex; 
    flex-direction: row;
    border-radius: 30px;
    padding: 30px;
    color: #1f1f21;
    fill: #ffffff;
    background-color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.compact-product-card-list .product-card .product-info{
    flex-basis: 50%;
}
.compact-product-card-list .product-card hr{
    display: none;
}

.compact-product-card-list .product-card .button-row{
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-end;
    margin-left: auto;
    gap: 10px;
    flex-wrap: wrap;
}


/* Display and style ON/OFF Switch labels in Bootstrap */
.k-switch-label-on, .k-switch-label-off {
    display: inline;
}

.k-switch-label-on {
    left: 7px;
    color: #ffffff;
    text-transform: uppercase;
}

.k-switch-label-off {
    right: 5px;
    color: #424242;
    text-transform: uppercase;
}