@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans');

html, body {
    font-family: 'Open Sans', sans-serif !important;
    max-width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.wf-loading body {
    display: none;
}

a, a:hover {
    text-decoration: none;
    display: contents;
    color: unset;
}

.content {
    padding-top: 1.1rem;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: var(--support-darkred);
    font-size: 12px;
    white-space: break-spaces !important;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.material-icons:after, .material-icons-outlined:after {
    content: attr(data-icon);
}

.grey-70 {
    color: var(--grey-70);
}

.card {
    border: none;
}

.primary-green {
    color: var(--primary-green);
}

.required-mark {
    margin-left: 3px;
    color: var(--support-darkred);
}

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}

label {
    padding: 0;
    margin: 0;
}

.dirty-popup {
    width: 430px !important;
}

.letter-counter {
    font-size: 12px;
    float: right;
    color: var(--grey-85);
}

/*sidebar*/
.sidebar .expanded-menu .dropdown-menu {
    position: unset !important;
    transform: none !important;
}

.sidebar .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    transform: translate(40px, 0) !important;
}

.sidebar .menu-item:not(.disabled):hover .sidebar-section,
.sidebar .menu-item .sidebar-section.selected,
.sidebar .menu-item.clicked-expanded .sidebar-section {
	border: none !important;
	color: white !important;
	border-right: 4px solid #006400 !important;
}
.sidebar .menu-item .sidebar-section.selected {
	background-color: var(--primary-green) !important;
}
.sidebar .menu-item:not(.disabled):hover .sidebar-section,
.sidebar .menu-item.clicked-expanded .sidebar-section {
	background-color: #88cc1f;
}

.sidebar .menu-item:not(:hover) .dropdown-menu,
.sidebar .menu-item.disabled .menu-sub-item {
	display: none !important;
}

.sidebar .collapsed-menu .dropdown-menu {
    left: 6px !important;
}

.menu-sub-item {
    line-height: 1.4;
}

.menu-sub-item-text-wrapper {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 140px;
}
.menu-sub-item:hover .menu-sub-item-text-wrapper {
	white-space: normal;
	word-break: break-word;
}
.sidebar .menu-item.disabled {
    color: var(--grey-15);
}

.sidebar .menu-item:not(.disabled) {
    cursor: pointer;
}

/*form tabs header*/
.form-tabs-header {
    align-items: center;
    display: flex;
    font-size: 14px;
    color: var(--grey-85);
    border-bottom: 1px solid var(--grey-15);
    background-color: white !important;
    z-index: 2;
    margin-top: 0px;
    right: 0;
}

.form-titles {
    display: flex;
}

.sub-items-header {
    display: flex;
    font-size: 14px;
    border-bottom: 1px solid var(--grey-15);
    margin: 0 10px;
}

    .sub-items-header .sub-items-tab {
        padding: 10px 15px;
        color: var(--grey-70);
        font-weight: 600;
        cursor: pointer;
    }

        .sub-items-header .sub-items-tab.selected {
            border-bottom: 4px solid var(--grey-70) !important;
            color: var(--grey-85);
        }



div.disabled {
    pointer-events: none;
}

span.disabled {
    pointer-events: none;
}

.form-tab {
    cursor: pointer;
    border-bottom: 5px solid;
    border-color: var(--grey-15);
    color: var(--grey-70);
    font-weight: normal;
}

    .form-tab a {
        padding: 18px 38px;
        display: inline-block;
        white-space: nowrap;
    }

    .form-tab.disabled {
        cursor: default;
    }

    .form-tab.selected {
        border-bottom: 5px solid var(--primary-green) !important;
        color: var(--grey-85);
    }

/*edit form sections*/
.section-title {
    align-items: center;
    display: flex;
    margin: 24px 0 22px 10px;
}

    .section-title .section-name {
        font-weight: bold;
        font-size: 16px;
        color: var(--grey-85);
    }

    .section-title .section-count {
        height: 20px;
        width: 20px;
        background-color: var(--grey-45);
        border-radius: 50%;
        display: inline-block;
        padding: 1px 6.5px;
        margin-right: 8px;
        color: white;
        font-size: 12px;
    }

/*edit form*/

.edit-form input[type="text"] {
    height: 38px !important;
}

.edit-form {
    overflow: auto;
}

    .edit-form.user-details {
        height: calc(100% - 70px);
    }

    .edit-form.student-contract-details {
        height: calc(100% - 170px);
    }

    .edit-form.student-address-details {
        height: 100%;
    }

    .edit-form.student-details {
        height: calc(100% - 170px);
    }

    .edit-form.company-details {
        height: calc(100% - 70px);
    }

	.edit-form.event-template-form {
		height: calc(100% - 70px);
	}

    .edit-form.student-details.no-qualifications {
        height: calc(100% - 170px);
    }

    .edit-form.studyprogram-taxes {
        height: calc(100% - 170px)
    }

.form-section {
    margin-left: 40px;
    font-size: 14px;
}

.input-description {
    margin-bottom: 0;
    margin-top: 20px;
    font-weight: bold !important;
}

.input-text {
    height: 38px !important;
}

.section-delimitator {
    height: 1px;
    background-color: var(--grey-15);
    margin-top: 24px;
    margin-left: -20px !important;
}

.checkboxes-row {
    display: flex;
}

.checkboxes-column {
    min-width: 150px !important;
    margin-bottom: 10px !important;
    margin-right: 10px;
}

.section-delimitator.right-side {
    margin-left: 15px !important;
}

.list-count {
    border-radius: 11px;
    border: solid 1px rgba(135, 148, 148, 0.21);
    background-color: rgba(221, 245, 255, 0.5);
    padding: 2px 10px;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 12px;
}

.logout-button {
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 25px;
    color: var(--grey-85);
}

.copy-to-clipboard {
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: 4px;
}

    .copy-to-clipboard:active, .copy-to-clipboard:hover, .copy-to-clipboard .material-icons:active, .copy-to-clipboard .material-icons:hover {
        color: var(--focused-green) !important;
    }

.company-details .dxbl-textbox.input-text, .company-details .half-width,
.company-details .address-width input,
.company-details .plz-width input {
    width: 90% !important;
    min-width: 100px;
}

.company-details .multiple-fields-section {
    display: flex;
}

.company-details .field-item {
    width: 50% !important;
}

.blazored-toast-error {
    background-color: var(--support-darkred) !important;
}

.custom-toaster {
    display: inline-block;
}

    .custom-toaster span {
        cursor: pointer;
        padding: 0 2px !important;
        word-break: break-word;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }

    .custom-toaster q {
        display: inline-flex;
    }

/*upper menu*/
.dxbl-menu div.nav .dx-nav-menu-bar .dx-menu-hamburger {
    cursor: pointer !important;
    color: var(--primary-green) !important;
}

.upper-menu .dx-menu-bar {
    height: 50px !important;
}

.upper-menu li:not(.menu-language-mobile):hover {
    background-color: var(--grey-menu) !important;
}

.upper-menu .menu-tab:not(.selected).dx-menu-item,
.upper-menu .menu-icon-tab.dx-menu-item {
    height: calc(100% - 2px) !important;
}

.upper-menu a::before {
    content: none !important;
}

.upper-menu .dropdown-menu {
    right: 10px !important;
}

.menu-language .dropdown-menu {
    right: unset !important;
}


.upper-menu .logout-section {
    display: none !important;
}

/*Small and medium devices*/
@media screen and (max-width: 619px) {
    .upper-menu .menu-user-section {
        display: none !important;
    }

    .upper-menu .logout-section {
        display: block !important;
    }

    .menu-language-mobile div.dx-menu-item-text-container {
        width: 100% !important;
    }

    .upper-menu .menu-language.menu-icon-tab.dx-menu-item * {
        height: 0px !important;
    }
}

@media screen and (min-width: 620px) {
    li.menu-language-mobile,
    .menu-language-mobile * {
        display: none !important;
    }
}




button:not(:disabled).default-cursor {
	cursor: default;
}

.menu-title .badge {
	color: black;
}

.menu-title .badge-light {
	color: #212529;
	background-color: #f8f9fa;
}

.validation-placeholder {
	height: 12px;
}

/*styling for date items from calendar*/
.dxbl-calendar:not([disabled]):not([readonly]) .dxbl-calendar-table .dxbl-calendar-table-today:hover, .dxbl-calendar:not([disabled]):not([readonly]) .dxbl-calendar-table .dxbl-calendar-table-today.dxbl-calendar-selected-item {
	background-color: var(--primary-green) !important;
}

.dxbl-calendar .dxbl-calendar-table-container .dxbl-calendar-table .dxbl-calendar-table-today {
    background-color: var(--primary-green) !important;
}

.study-preview-grid-container {
    padding: 0px !important;
    margin-top: 12px !important;
}

.study-preview-title-container {
    padding: 0px !important;
}

.attach-file-icon {
    position: relative;
    top: -27px;
    cursor: pointer;
    float: right;
    right: 10px;
}

/*position for blazored toast*/
@media(min-width: 576px) {
    .blazored-toast-container.position-topright {
        right: 180px;
    }
}

.ist-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.not-found-title {
    font-size: 24px;
    font-weight: bold;
}

/* styling text from bootstrap tooltips*/
.tooltip-inner {
    text-align: left;
    font-size: 12px;
}

/*styling for nav menu items*/
.sidebar .collapsed-menu .menu-sub-item {
    width: 164px !important;
}

.sidebar .menu-sub-item {
    display: flex;
    align-items: center;
    width: 199px;

    color: var(--primary-green) !important;
    background-color: #F7FBF2;
    font-size: 14px;
    cursor: pointer;
    margin-right: -4px;
}

    .sidebar .expanded-menu .menu-sub-item a {
        padding-left: 40px;
    }

    .sidebar .collapsed-menu .menu-sub-item a {
        padding-left: 20px;
    }

    .sidebar .menu-sub-item a {
        all: unset;
        padding-top: 13px;
        padding-bottom: 13px;
        display: block;
        width: 100%;
        height: 100%;
    }

    .sidebar .menu-sub-item:hover {
        background-color: #ECF4DF !important;
    }

/*styling for breadcrumb links*/
li a.breadcrumb-link {
    display: inline-block;
    float: left;
    text-decoration: none;
    color: var(--primary-green);
    cursor: pointer;
}

    li a.breadcrumb-link:hover {
        color: var(--focused-green);
    }


.date-from-picker {
    float: left;
    padding-right: 27px;
}

.date-to-picker {
    float: right;
    padding-right: 29px;
}

.date-from-to-separator {
    position: absolute;
    font-size: 20px;
    margin-top: 40px;
    margin-left: -16px;
}

.date-from-to-container {
    padding: 0px;
}

.dropdown-multiple-list {
    max-height: 300px;
}

.blocked-status {
    color: var(--incomplete-text);
    vertical-align: middle;
}

.study-allocation {
    max-height: 64px;
    white-space: break-spaces;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.625;
}

.study-allocation span {
    margin: 0 4px 1px;
    font-size: 12px;
    line-height: 1.67;
    color: #2b7493;
    background-color: #ddf5ff;
    padding: 1px 3px 1px 3px;
}

.max-2-lines {
	max-height: 64px;
	white-space: break-spaces;
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.625;
}
.max-3-lines {
	max-height: 96px;
	white-space: break-spaces;
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.625;
}

.bank-accounts input[type="text"] {
    height: 38px;
}

.checkbox-list .dxbl-checkbox {
	margin-left: 10px;
}

.inactive-teacher .teacher-name {
	color: var(--grey-15);
}

q {
	pointer-events: none;
}

.font-size-12 {
	font-size: 12px;
}

.font-size-14 {
	font-size: 14px !important;
}

.opacity-50 {
	opacity: 50%;
}

.input-label {
	margin-bottom: 3px;
}

.ist-grid .ist-grid_content tbody tr.ist-grid_data-row.obsolete {
	color: var(--grey-25);
}