@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
/* MAIN  */
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body  {
    padding: 0;
    margin: 0;
    width: 100%;
	height: 100% !important;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
	font-weight: 400;
    line-height: 140%;
    background: #fbffff;
	overflow-x: hidden;
	overflow-y: scroll;
	color: #191919;
}

@media (max-width: 767px) {
	body {
        font-size: 14px;
    }  
}

small {
    display: inline-block;
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.1;
	background: unset;
}

small span {
    font-size: 10px;
	
}


h1 {
	margin: 0;
	padding: 0;
	margin-top: 16px;
	font-size: 24px;
	font-weight: 200;
	line-height: 1;
	text-transform: uppercase;
	color: #17b2a6;
}



h2 {
	margin-bottom: 0.5rem;
	padding: 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: #17b2a6;
}



h3 {
	margin-bottom: 0.5rem;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #17b2a6;
}




a, a:active, a:visited, a:focus {
	text-decoration: none;
	color: #17b2a6;
	transition: all 0.5s ease-in-out;
}

a:hover {
	text-decoration: none;
	color: #191919;
}

.wrapper {
    background: white;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
}



/* CONTAINER  */
.nav-link {
    display: block;
    padding: .5rem .75rem;
    color: #17b2a6;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.nav-link:focus, .nav-link:hover {
    color: #191919;
}

@media (max-width: 767px) {
    .nav-tabs .nav-link {
        padding: .5rem .4rem;
        font-size: 10px;
    }
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-bottom: 0;
} 



/* CONTAINER  */
.container-lg-max {
	max-width: 760px;
}




/* NAVBAR  */
.navbar {
	background: transparent;
	padding: 1rem 0;
}

.navbar-brand {
	padding: 0;
    font-family: 'Univa Nova', sans-serif;    
}

.navbar-brand > img {
	height: 36px;
	width: 36px;	
}

.navbar-brand .headline {
	position: relative
}

.navbar-brand .headline .schriftzug {
	position: absolute;
	height: 12px;
	margin-left: 2px
}

.navbar-brand .headline > h1 {
	margin: 0;
	padding: 0;
	margin-top: 16px;
	font-size: 24px;
	font-weight: 100;
	line-height: .8;
	text-transform: uppercase;
	color: #17b2a6;
}




.navbar.navbar-app {
    background: #17b2a6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: .5rem 0;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.125) !important;
    z-index: 2000;
}

.navbar.navbar-app h1 {
    color: white;
}




/* SIDE Navbar */
.side-navbar {
    display: block;
    position: fixed;
    height: 100%;
    width: 80%;
    max-width: 300px;
    background: #565e64;
    transition: all .8s ease-in-out;
    z-index: 1000;
}

.side-navbar .side-wrapper {
    overflow-x: auto;
    display: block;
    position: relative;
    height: calc(100% - 52px);
    width: 100%;
    padding-bottom: 52px;
}

.app-wrapper {
    padding-left: 300px;
    transition: all .8s ease-in-out;
}

@media (max-width: 1399px) {
    .side-navbar {
        height: 100%;
        width: 0%;
    }
    
    .side-navbar.show {
        height: 100%;
        width: 90%;
    }

    .app-wrapper {
        padding-left: 0;
    }
}



.side-navbar li.hr {
    margin-top: .5rem;
}


.side-navbar .navigation {
    padding: .5rem;
    list-style: none;
}





.side-navbar .navigation-item, .side-navbar .navigation-item:focus, .side-navbar .navigation-item:visited, .side-navbar .navigation-item:active {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    margin: 0.125rem 0;
    clear: both; 
    color: white;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: rgba(255,255,255, 0.1);
    border: 0;
    border-radius: .5rem;
    transition: all .8s ease-in-out;
}

.side-navbar .navigation-item:hover { 
    background: #17b2a6;
    color: white;
}

.side-navbar .navigation-item i { 
    width: 1.4rem;
}

 
/* SECTIONS */
section {
    padding: 4rem 0;
}

section.prodSystem, section#system {
    padding-top: 4rem;
}

section.schoolSystem {
    padding-top: 0rem;
}


/* CARD */
.card {
	border: 1px solid rgba(0,0,0,.075);
	border-radius: .5rem;
    /* overflow: hidden; */
    min-height: 50px;
}



.card.green {
    background: #17b2a6;
}

.card.grey {
    background: whitesmoke;
}

.card .card-header {
    background: #17b2a6;
    border-radius: .5rem .5rem 0 0;
    color: white;
    font-weight: 600;
}

.card .card-header h1, .card .card-header h2, .card .card-header h3 {
    color: white;
    padding: 0;
    margin: 0;
}

.card-header, .card-body, .card-footer {
	padding: 0.75rem;
}

.card p {
    margin-bottom: .5rem;
}


.card p:last-child {
    margin-bottom: 0;
}





/* FORMS */
form .formLoader .spinner-block {
    padding: 1rem;
}

form .formLoader .spinner-block .spinner-grow {
    color: #17b2a6;
}



.form-control:focus {
    color: #191919;
    background-color: #fff;
    border-color: #17b2a6;
    outline: 0;
    box-shadow: none;
}


.form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 0.25;
}
.form-control::placeholder {
	color: #6c757d;
	opacity: 0.25;
}

.input-group-left > .input-group-text {
    position: absolute;
    background: transparent;
    border-color: transparent;
}

.input-group-left > .form-control {
	padding-left: 52px;
}


.input-group-left > .form-control.mask-insurancenumber {
    padding-left: 78px;
}

.mask-transfercode {
	text-transform: uppercase;
}

.mask-acountID {
	text-transform: uppercase;
}

.mask-smscode {
	text-transform: uppercase;
}


label {
    display: block;
    position: absolute;
    font-size: 12px;
    margin-left: 0.5rem;
    margin-top: -.55rem;
    background: white;
    padding: 0.125rem 0.25rem;
    line-height: 0.9;
    z-index: 100;
    border-radius: 0.25rem;
	color: #484848;
}

.form-check label {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.1;
    background: unset;
} 

.form-check label span {
    font-size: 10px;
} 

div.form-control {
	line-height: 1.1;
}

.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    box-shadow: 0 0 0 0 rgba(25,135,84,.25);
}

.form-check-input:checked {
    background-color: #17b2a6;
    border-color: #17b2a6;
}



.form-check-input:focus {
    border-color: #17b2a6;
    outline: 0;
    box-shadow: 0 0 0 0;
}


.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0;
}

.form-control.color {
    height: 40px;
}



.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='lightgray'/%3e%3c/svg%3e");
}


.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 calc(.75rem - 1px);
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: white;
}

.gj-datepicker .input-group-append, .gj-timepicker .input-group-append  {
    display: block;
    position: absolute;
    right: 0;
    height: 100%;
}

.gj-datepicker-bootstrap [role="right-icon"] button {
    width: 38px;
    position: relative;
    border: 0;
    height: 100%;
	outline: none;
	z-index: 100;
}

.gj-datepicker .form-control.is-invalid, .gj-datepicker .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(3.75em + .375rem) calc(.75em + .375rem);
}



.gj-timepicker [role="right-icon"] {
    position: absolute;
    right: 0;
	height: 100%;
}





.gj-timepicker input {
	border: 1px solid darkgray !important;
}

.gj-timepicker-bootstrap [role="right-icon"] button {
    border: 0px solid #ced4da;
    height: 100%;
}


.gj-timepicker-bootstrap .mask-time.is-invalid {
    background-position: right calc(.375em + 1.7rem + .1875rem) center; 
}



.gj-timepicker-bootstrap [role="right-icon"] .btn-outline-secondary:not(:disabled):not(.disabled).active, .gj-timepicker-bootstrap [role="right-icon"] .btn-outline-secondary:not(:disabled):not(.disabled):active, .gj-timepicker-bootstrap [role="right-icon"] .show > .btn-outline-secondary.dropdown-toggle {
    color: #fff !important;
    background-color: #17b2a6;
    border: 0;
    
    background-position: right calc(2rem) center;
    transition: all 0.5s ease-in-out;
} 

.gj-timepicker-bootstrap [role="right-icon"] button:hover{
    color: #fff;
    background-color: #17b2a6;
    border: 0;
    
    background-position: right calc(2rem) center;
}

.gj-timepicker-bootstrap [role="right-icon"] button:hover .gj-icon.clock {
    color: white;
}

.gj-datepicker-bootstrap [role="right-icon"] button:hover {
  color: #fff;
    background-color: #17b2a6;
}


.gj-datepicker-bootstrap [role="right-icon"] button:hover i {
  color: #fff;
}

.input-group-append {
  z-index: 5;
    transition: all 0.5s ease-in-out;
}


.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
  color: #fff;
  background-color: #17b2a6;
  border-color: #17b2a6;
  border-radius: 4px;
}

.current-month.gj-cursor-pointer {
  font-weight: 300;
}

.calendar-week {
  font-size: 70%;
}


.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}


.tox-statusbar, .tox-menubar {
    display: none !important;
}

toolbar, .tox .tox-menubar + .tox-toolbar-overlord .tox-toolbar__primary {
    border-top: 0px solid #ced4da !important;
}

.tox.tox-tinymce {
    border-radius: 0.25rem;
    overflow: hidden;
	border-color: #ced4da;
}

.tox:not([dir="rtl"]) .tox-toolbar__group:not(:last-of-type) {
    border-right: 1px solid #ced4da;
}

.tox .tox-tbtn:hover {
    background: #17b2a6 !important;
    color: white !important;
}

.tox .tox-tbtn svg {
    fill: #191919 !important;
}

.tox .tox-tbtn:hover svg {
    fill: #fff !important;
}



.select2-container .select2-selection--single {
    background-color: white;
	border: 1px solid #ced4da;
	border-radius: 4px;
	padding: 5px;
	min-height: 42.8px;
}

.is-invalid .select2-container .select2-selection--multiple {
    border: 1px solid #dc3545 !important;
}

.is-invalid .select2-container .select2-container--default .select2-selection--multiple {
    border: 1px solid #dc3545;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42.8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-size: .8125rem;
    display: inline-flex; 
    margin: .125rem;
    padding: 0 .5rem;
    color: white;
    border: none;
    border-radius: .25rem;
    background-color: #17b2a6;
	line-height: 1.59375rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: .5rem;
    color: white;
    order: 2;
    border: 0px;
    display: inline-block;
    position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: lightgray;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 5px 5px 0;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #17b2a6 1px;
}

.iti__country-list {
    z-index: 900;
}

.gj-datepicker-bootstrap .form-control.is-valid, .was-validated .form-control:valid {
    background-position: right calc(1.75em + .1875rem) center;
}


/* BUTTONS */
.btn {
    padding: .3rem .75rem;
    min-height: 36px;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
}

.btn-group .btn {
    padding: .3rem .15rem;
}

.card-button-top .btn-group .btn {
    padding: .3rem .75rem;
}

.btn, .btn:hover, .btn:visited, .btn:active, .btn:focus, .btn.active, .show > .btn.dropdown-toggle {
    box-shadow: 0 0 0 0 !important;
    outline: 0;
}


.btn:hover {
    color: #17b2a6;
    background: white;
}


.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-check:focus + .btn-primary, 
.btn-check:active + .btn-primary, 
.btn-check:checked + .btn-primary, 
.btn-primary.active, .btn-primary:active, 
.show > .btn-primary.dropdown-toggle {
    color: #17b2a6 !important;
    background-color: #fff;
    border-color: #17b2a6;
}


.btn-primary {
    color: #fff !important;
    background-color: #17b2a6;
    border-color: #0fa69a;
}


.btn-danger {
    color: #fff;
}

.btn-danger:hover {
    color: #dc3545;
    background: white;
}


.btn-warning {
    color: white;
}

.btn-warning:hover {
    color: #ffc720 !important;
    background: white;
}


.btn-light {
    color: #17b2a6 !important;
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-light:hover {
    color: #ffffff !important;
    background-color: #17b2a6;
    border-color: #ffffff;
}


.btn-outline {
    color: #17b2a6 !important;
    background-color: transparent;
    border-color: #17b2a6;
}

.btn-outline:hover {
    color: #ffffff !important;
    background-color: #17b2a6;
    border-color: #17b2a6;
}


.btn-app {
    border: 1px solid white;
    color: white;
    padding: 0 .5rem !important;
    height: 36px;
    min-width: 36px;
    box-shadow: 0;
}

@media (min-width: 1399px) {
    .btn-app { 
        display: none;
    }
}


.btn-app.is-active {
    border: 1px solid white;
    color: #17b2a6;
    height: 36px;
    min-width: 36px;
    box-shadow: 0;
    background: white;
}

.btn-app .hamburger {
    padding: 0;
    padding-top: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
}

.btn-app .hamburger.is-active {
    padding-top: 8px;
}

.btn-app .hamburger-box {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 21px;
}

.btn-app .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 30px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 0;
    background-color: white;
}




.btn-app .hamburger-inner::before {
    top: -8px;
}

.btn-app .hamburger--collapse .hamburger-inner::after {
    top: -16px;
}

.btn:hover .hamburger-inner, .btn:hover .hamburger-inner::after, .btn:hover .hamburger-inner::before {
    background-color: #17b2a6;
}

.btn-app .hamburger.is-active .hamburger-inner, .btn-app .hamburger.is-active .btn-app .hamburger-inner::after, .btn-app .hamburger.is-active .hamburger-inner::before {
    background-color: #17b2a6;
}

.btn-app .hamburger.is-active .hamburger-inner, .btn-app .hamburger.is-active .hamburger-inner::after, .btn-app .hamburger.is-active .hamburger-inner::before {
    background-color: #17b2a6;
}




@media (max-width: 499px) {
    .btn-group.btn-cards.payment .btn {
        font-size: .7rem;
        padding: .5rem .15rem;
        min-height: auto;
    }
}

@media (max-width: 332px) {
    .btn-group.btn-cards.payment .btn {
        font-size: .6rem;
        padding: .5rem .15rem;
        min-height: auto;
    }
}


label.btn-primary {
    display: block;
    position: relative;
    margin: 0;
    margin-bottom: .5rem;
}


.card-button-top {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

.card-button-top .btn {
    border-radius: 0;
    border-bottom-left-radius: .5rem;
    border-top-right-radius: .5rem;
    border: 0px;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
}








/* Badge */
.bg-primary {
    background-color: #0fa69a !important;
    color: white !important;
}


.bg-success {
    color: white !important;
}

.bg-warning {
    color: white !important;
}

.bg-danger {
    color: white !important;
}







/* ACCORDION */
.accordion-button:not(.collapsed) {
    color: white;
    background-color: #17b2a6;
    box-shadow: 0 0 0 0;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #17b2a6;
    outline: 0;
    box-shadow: 0 0 0 0;
}


button:not(.collapsed)::after {
    color: white;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-180deg);
}

.accordion-button::after {
    font-family: "Font Awesome 5 Pro"; 
    font-weight: 900; 
    content: "\f078";
    background-image: none;
}

.accordion-button {
    padding: .75rem;
}

.accordion-item {
    overflow: hidden;
}

.accordion-item:first-of-type {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}


/* CHOICE */
.choice-content {
    display: inline-block;
    width: calc(100% - 50px - .5rem);
}

.choice-btn {
    float: right;
    display: block;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    width: 50px;
}

.choice-btn a {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #17b2a6;
    border: 1px solid #17b2a6;
    display: block;
    text-align: center;
    line-height: 36px;
    border-radius: .5rem;
}

.choice-btn a:hover {
    color: #17b2a6;
    background-color: #fff;
    border: 1px solid #17b2a6;
}


/* BTN Group*/
section .btn-group {
    width: 100%;
}

.btn-group .btn-secondary {
    border-left-color: white;
    color: white !important;
}

.btn-group .btn-secondary:last-child {
    border-right-color: #565e64;
}

.btn-group .btn-secondary:hover {
    border-color: #565e64 !important;
    color: #565e64 !important; 
    border-right-color: white;
}


.card-button-top .btn-group .btn-secondary:hover {
    border-color: white !important;
    color: #565e64 !important;
}

.btn-check:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #0fa69a;;
    border-color: #0fa69a;;
}

.btn-secondary {
    color: white !important;
}

.btn-secondary:hover {
    color: #565e64 !important;
}



/* SCANNER */
.scanner-card {
    padding: 0;
    overflow: hidden;
}

.scanner-card .scanner-body {
    padding: 0;
    overflow: hidden;
}

.scanner-card .scanner-body > div {
    padding: 0;
    margin: -1rem;
}

.scanner-card .scanner-body video {
    width: 100%;
}

.videotest video {
    width: 100%;
}




/* DROPDOWN */
.dropdown-menu {
    padding: 0;
    overflow: hidden;
    min-width: 180px;
    border-color: #0fa69a;
    background: white;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.125) !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: white;
    background-color: #17b2a6;
}

.dropdown-item {
    padding: .5rem 1rem;
}



/* ALERTS */
.alert {
    position: relative;
    border-radius: .5rem;
    padding: .6rem 1rem;
	font-weight: 400; 
	line-height: 1.2;
}

.alert p {
    margin-bottom: 0;
}


/* ALERTS */
.getList .list-group-item {
    padding: 0;
}

.getList .list-group-item > a {
    position: relative;
    display: block;
    padding: .5rem 0rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
}

.getList li.list-group-item:last-child > a {
    margin-bottom: -.5rem;
}

.getList .list-group-item .item-content {
    position: relative;
    display: block;
    padding: .5rem 0rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
}

.getList li.list-group-item:last-child .item-content {
    padding-bottom: 0;
}


.getList .list-group-item .noList {
    position: relative;
    display: block;
    padding: 1.5rem 0rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
}


.getList .list-group-item > a .counter, .getList .list-group-item > .item-content .counter {
    height: 50px;
    width: 50px;
    background: #0fa69a;
    margin-right: .5rem;
    color: white;
    border-radius: .25rem;
}

.getList .list-group-item > a .counter .count, .getList .list-group-item > .item-content .counter .count {
    width: 100%;
    text-align: center;
    line-height: .8;
    padding: .75rem .25rem;
    font-weight: 900;
}

.getList .list-group-item > a .counter .count small, .getList .list-group-item > .item-content .counter .count small {
    font-size: 50%;
    font-weight: 300;
}
.getList .list-group-item > a .content, .getList .list-group-item > .item-content .content {
    line-height: .9;
    padding: .125rem 0;
}

@media (max-width: 767px) {
	.getList .list-group-item > a .content, .getList .list-group-item > a .content {
        line-height: 1;
        padding: .25rem 0;   
    }
}

.getList .testtimer {
    display: block;
    position: absolute;
    top: 0;
    margin-top: .5rem;
    height: calc(100% - 1rem + 1px);
    width: 100%;
    background: rgba(23, 178, 166, .75);
    border: 1px solid rgba(23, 178, 166, 1);
    border-radius: .25rem;
    text-align: center;
    vertical-align: middle;
    font-size: 2rem;
    color: white;
    font-weight: 700;
    padding: .75rem
}


.getList .list-group-item:last-child .testtimer {
    height: calc(100% - .5rem + 1px);
}




.list-group-item .list-btn {
    float: right;
    display: block;
    position: absolute;
    right: 0;
    height: 36px;
    top: .5rem;
    width: 36px;
}

.list-group-item .list-btn a {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    line-height: 36px;
    border-radius: .5rem;
    padding: 0 !important;
}




/*  Slotlist */
.slotlist .accordion-item {
    background: whitesmoke;
    border: 1px solid rgba(0,0,0,.075) !important;
    border-radius: .5rem;
    margin-bottom: 2px;
}

.slotlist .accordion-item:last-child {   
    margin-bottom: 0;
}

.slotlist .accordion-button {
    padding: .5rem .75rem;
    background: transparent;
}

.slotlist .accordion-button.collapsed:hover {
    background: #17b2a6;
    color: white;
}

.slotlist .accordion-button:not(.collapsed) {
    color: #17b2a6;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,.075) !important;
}

.slotlist button:not(.collapsed)::after {
    color: #17b2a6;
}


.slotlist .accordion-button:focus {
  z-index: 3;
  border-color: rgba(0,0,0,.075) ;
  outline: 0;
  box-shadow: 0 0 0 0;
}

.slotlist .accordion-body {
    padding: .5rem .75rem .5rem;
}




/*  Stat Counter */

.stat-counter {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    overflow: hidden;
	margin-bottom: .5rem;	
    background: #0fa69a;
    border-radius: .25rem;
    color: white;
    text-align: center;
}

.stat-counter::before {
    padding-top: 100%;
    display: block;
    content: "";
}

.stat-counter .stat-wrapper {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
    padding: 0.5rem;
    
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.stat-counter .stat-wrapper small, .stat-counter .stat-wrapper span {
    display: block;
    width: 100%;
    position: relative;
}


.stat-counter .stat-wrapper span {
    line-height: 1.6;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}


.stat-counter-outline ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
}

@media (max-width: 576px) {
    .stat-counter-outline ul li {
        display: inline-block;
    }
    .stat-counter-outline ul li::before {
        content: " | ";
        font-size: 12px;
    }
    .stat-counter-outline ul li:first-child::before {
        content: "";
    }
}






/* BADGE */
.badge {
    font-size: 10px;
    color: #696969;
}

.bg-light {
    background: #dee2e6;
}


/* BADGE */
.collapse, .collapsing {
    width: calc(100% - 50px) !important; 
}


.bg-light {
    background: #dee2e6;
}

/* TABEL */
.table {
    margin-bottom: 0;
    overflow: scroll;
}

.table > :not(:first-child) {
    border-top: 1px solid currentColor;
}

.table > :not(caption) > * > * {
    padding: 0.25rem 4px;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > :not(caption) > * > * {
    padding: 0.25rem 4px;
    background-color: var(--bs-table-bg);
    border-bottom-width: 0px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table .table-header {
    font-size: 10px;
    font-weight: 300;
    line-height: 1;
}


.table .table-rowheader {
    font-size: 10px;
    font-weight: 300;
    min-width: 75px;
}

.table .table-rowheader.table-date span {
    width: 18px;
    display: inline-block;
}

.table .table-footer.table-subline {
    font-size: 10px;
    font-weight: 300;
    line-height: 1;
}

.table .table-data {
    text-align: right;
    min-width: 40px;
}

.table .table-rowsplit {
    border-right: 1px solid;
}









/* Progressbar */
#progressbar {
    overflow: hidden;
    color: lightgrey;
    padding-left: 0px;
}

#progressbar .active {
    color: white;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 16.66666666666667%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar.progressbar-20 li {
    width: 20%;
}

#progressbar .step1:before {
    content: "\f3c5";
	font-family: "Font Awesome 5 Pro"; 
	font-weight: 900; 
}

#progressbar .step2:before {
    content: "\f017";
	font-family: "Font Awesome 5 Pro"; 
	font-weight: 900; 
}

#progressbar .step3:before {
    content: "\f492";
	font-family: "Font Awesome 5 Pro"; 
	font-weight: 900; 
}

#progressbar .step4:before {
    content: "\f007";
	font-family: "Font Awesome 5 Pro"; 
	font-weight: 900; 
}

#progressbar .step5:before {
    content: "\f09d";
	font-family: "Font Awesome 5 Pro"; 
	font-weight: 900; 
}

#progressbar .step6:before {
    content: "\f00c";
	font-family: "Font Awesome 5 Pro"; 
	font-weight: 900; 
}

#progressbar li:before {
    width: 30px;
    height: 30px;
    line-height: 25px;
	display: block;
	font-size: 14px;
    background: #efefef;
    border-radius: 50%;
    margin: auto;
    padding: 2px;
	position: relative;
	z-index: 2;
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 6px;
    background: #efefef;
    position: absolute;
    left: 0;
    top: 13px;
    z-index: 0
}

#progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

#progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #17b2a6 
}








/* FOOTER */
footer.footer-app {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #17b2a6;
    padding: 0.5rem 0rem;
    box-shadow: 0 -.125rem .25rem rgba(0,0,0,.125) !important;
    z-index: 1000;
    padding-left: 300px
}

@media (max-width: 1399px) {

    footer.footer-app {
        padding-left: 0;
    }
}


footer.footer-app .btn {
    border: 1px solid white;
    font-weight: 400;
}



footer.footer-app .btn-primary  {
    border: 1px solid white;
    background: white;
    color: #17b2a6 !important;
}

footer.footer-app .btn-primary:hover, 
footer.footer-app .btn-primary:focus, 
footer.footer-app .btn-primary:active{
    color: white !important;
    background-color: #17b2a6;
}

