:root {
    --spekter-blue: #19bfe9;
    --spekter-gray: #5a656a;
    --spekter-yellow: #ffd438;
}

body,
html {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    margin: 0;
    overflow-y: auto;
}

body > .footer {
    position: sticky;
    top: 100vh;
}

.wrapper {
    left: 0px;
    padding: 0;
    position: relative;
}

.main-grid {
    position: relative;
    z-index: 1;
    padding: 1em !important;
}

.blank {
    min-height: auto !important;
}

/* LOGO AND ICONS */

.logo {
    position: relative;
    z-index: 6;
    width: 14em !important;
}

.logo h1 a {
    color: var(--spekter-gray);
}

.logotip {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.fa-home,
.fa-bell,
.fa-question {
    font-size: 1.2rem !important;
}

/* FOOTER */

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em 0;
    width: 100%;
}

.footer p {
    font-size: 0.9em;
    color: #999;
    line-height: 1.4em;
}

/* HEADER DESKTOP */

.title-bar {
    position: relative;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.05);
    padding: 1em;
    background-color: #fff;
}

.title-navbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    z-index: 9999;
}

.navigacija {
    display: flex;
    justify-content: space-around;
    margin: 0 2em 0 2em;
}

.navigacija-gumb {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--spekter-gray);
    transition: text-decoration-color 300ms;
    text-decoration: underline 0.15em rgba(0, 0, 0, 0);
    text-underline-offset: 3px;
}

.header-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.navigacija-gumb:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.navigacija-gumb-active {
    color: var(--spekter-blue);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.containerSubMenu {
    border-top: 2px solid #f1f1f1;
    background: var(--spekter-blue);
    color: var(--spekter-gray);
    width: 100%;
    /*height: 45px;*/
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 0;
    z-index: 3;
    padding: 0 1em 0 1em;
}

.mobileAddress{
    border-top: 2px solid #f1f1f1;
    background: var(--spekter-blue);
    color: var(--spekter-gray);
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 0;
    z-index: 3;
}

.mobileStanovanjeName {
    color: white;
    margin-right: 1em;
    padding: 0.2em;
    text-align: end;
}

@media (max-width: 770px) {
    .mobileAddress{
        display: grid;
    }
}

.subMenuStanovanjeName {
    color: white;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 1em;
    padding: 0.2em;
    text-align: end;
}

.submenu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 2em 0 2em;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.submenu > a {
    color: white;
    transition: text-decoration-color 300ms;
    text-decoration: underline 0.15em rgba(0, 0, 0, 0);
    text-underline-offset: 3px;
}

.submenu > a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
}

.submenu-active {
    text-decoration: underline 0.15em white !important;
    font-weight: bold !important;
}

h3 {
    padding-bottom: 15px;
}

.profile_details {
    /*margin-left: 2em;*/
}

li.dropdown.head-dpdn a.dropdown-toggle {
    padding: 0;
    margin: 0;
}

li.dropdown.head-dpdn {
    padding-right: 1em;
}

.backButtonContainer {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 1em;
}

.backButtonContainer .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--spekter-yellow);
    color: black;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    transition: ease-in-out 0.2s;
    text-transform: none;
}

.btn-primary:hover {
    background-color: var(--spekter-blue) !important;
}

.btn-primary > * {
    font-size: 1.2rem !important;
    margin-top: 0;
}

/* HEADER MOBILE SETTINGS */

.mobile-menu {
    display: none;
}

.user-menu {
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
}

.menu-toggle {
    display: none;
    height: 100%;
}

.menu-toggle #menu-checkbox {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 0.5em 0 0 0.5em !important;
    z-index: 4;
}

.menu-toggle #menu-checkbox:checked ~ ul {
    transform: none;
}

.menu-toggle #menu-checkbox:checked ~ #icon-open {
    display: none;
}

.menu-toggle #menu-checkbox:not(:checked) ~ #icon-close {
    display: none;
}

#icon-close {
    font-size: 35px;
    margin-top: 10px;
    margin-left: 10px;
    z-index: 3;
    position: absolute;
}

#icon-open {
    font-size: 35px;
    margin-left: 12px;
    margin-top: 10px;
    z-index: 3;
    position: absolute;
}

.mobile-menu a {
    cursor: pointer;
    list-style: none;
    font-size: 2rem;
    font-weight: bold;
    color: var(--spekter-gray);
}

.mobile-menu p {
    cursor: pointer;
    list-style: none;
    font-size: 2rem;
    font-weight: bold;
    color: var(--spekter-gray);
}

.activeMobile {
    color: var(--spekter-blue) !important;
    text-decoration: underline !important;
    text-decoration: underline 0.15em rgba(0, 0, 0, 0);
    text-underline-offset: 3px;
    text-decoration-thickness: 3px !important;
}

.mobile-menu .mobile-links:not(:first-child) {
    margin-top: 1em;
}

.submenu-mobile {
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.submenu-mobile-active {
    display: flex !important;
}

.submenu-mobile a {
    color: var(--spekter-gray);
    font-size: 1.2em;
    font-weight: 500;
    margin-left: 1em;
}

.submenu-mobile a:not(:first-child) {
    margin-top: 0.5em;
}

.mobile-links {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    margin-left: 2em;
}

.mobile-links input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.mobile-links input:checked ~ .submenu-mobile {
    display: flex;
}

.mobile-links input:checked {
    top: 0;
    height: 20%;
}

@media (min-width: 480px) {
    .dashboard-page nav.user-menu {
        top: 0;
        position: relative;
        background-color: white;
        box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.15);
    }

    nav.user-menu {
        height: 60px;
    }
}

@media (max-width: 600px) {
    .main-grid {
        padding: 3em;
    }
}

@media (max-width: 480px) {
    .main-grid {
        padding: 1em;
    }
}

@media (max-width: 1200px) {
    .user-menu {
        display: flex;
    }

    .title-bar {
        display: none !important;
    }

    .containerSubMenu {
        display: none !important;
    }

    .stanovanjeSubMenu {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        padding-bottom: 3em;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        width: 100%;
        height: 100vh;
        box-shadow: 0 0 10px #85888c;
        /* margin: -50px 0 0 -50px;
        padding: 50px; */
        padding-top: 125px;
        background-color: #f5f6fa;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 2;
    }
}

.logo h1 a img {
    width: 100% !important;
    margin: 0 !important;
}

/* PROFILE SETTINGS  */

.profile-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1em;
}

.profile-data-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 2em;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.profile-data-container > h3 {
    color: var(--spekter-blue);
}

.profile-data-container > button {
    margin-top: 1em;
    width: 10rem;
}

.profile-data-container > p {
    margin-top: 1em;
    padding-left: 0;
}

.profile-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-data > button {
    margin-top: 1em;
    width: 11rem;
}

.profile-data-element {
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    border: none;
}

.profile-data-checkbox {
    display: flex;
    flex-direction: row;
    margin-top: 1em;
}

.profile-data-element > label {
    font-size: 16px;
}

.profile-data-element > input,
.profile-data-element > select
{
    margin-top: 0.5em;
    background: #e9ecef;
    color: #495057;
    height: 50px;
    padding: 10px 15px;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem;
}

@media (max-width: 900px) {
    .profile-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* SETTINGS */
.settings-option {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
    width: 60%;
}

.settings-option > *:not(:first-child) {
    margin-left: 2em;
}

/* SLIDER COPIED */

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: var(--spekter-blue);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--spekter-blue);
}

input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.form-control {
    display: inline;
    width: auto;
    border-radius: 4px;
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 2em;
}

.faq-container > *:not(:first-child) {
    margin-top: 1em;
}

.faq-element {
    position: relative;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-element input {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.faq-element input:checked ~ .faq-question {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.faq-element input:checked ~ .faq-answer {
    max-height: 300px;
}

.fa-angle-down,
.fa-angle-up {
    font-size: 1.5rem !important;
}

.faq-element input:not(:checked) ~ .faq-question .fa-angle-up {
    display: none;
}

.faq-element input:checked ~ .faq-question .fa-angle-down {
    display: none;
}

.faq-element input:checked ~ .faq-question .fa-angle-up {
    display: inline-block;
}

.faq-question {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--spekter-blue);
    padding: 1em;
    border-radius: 3px;
    color: white;
}

.faq-answer-inner {
    margin: 1em;
}

@media (max-width: 700px) {
    .faq-container {
        padding: 0;
    }

    .faq-element {
        width: 100%;
    }
}

.signup-heading img {
    padding-bottom: 10px;
}

.signup-heading {
    padding-bottom: 1.5em;
    background: none;
    border-bottom: 1px solid #d8d8d8;
}

.signup-heading h2 {
    margin-top: 20px;
    font-size: 2.1em;
}

.register-form__submit:disabled {
    background: var(--spekter-yellow) !important;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out;

    display: flex;
    justify-content: start;
    width: 100%;
    padding: 0;
    background: var(--spekter-yellow);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.faq-answer-inner {
    margin: 1em;
}

@media (max-width: 700px) {
    .faq-container {
        padding: 0;
    }

    .faq-element {
        width: 100%;
    }
}

/* NOTIFICATIONS */
.notifications-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.notifications-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    width: 60%;
}

@media (max-width: 850px) {
    .notifications-container {
        width: 100%;
    }
}

.notifications-container > .notifications-item:not(:first-child) {
    margin-top: 1em;
}

.notifications-container > a {
    color: black;
}

.notifications-item {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background-color: var(--spekter-blue);
    border-radius: 5px;
}

.notification-badge {
    grid-column: span 1 / span 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    background-color: var(--spekter-gray);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.notification-badge > .fa-circle,
.notification-badge > .fa-check-circle {
    font-size: 2rem;
    color: var(--spekter-yellow);
}

.notification-content {
    grid-column: span 4 / span 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 1em;
    border: var(--spekter-blue);
    border-width: 2px;
    border-style: solid;
    border-radius: 5px;
}

.notification-content > h5 {
    margin-bottom: 0.5em;
}

.notification-content > p {
    color: white !important;
}

/* DOCUMENT PREVIEW */
.preview-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 60vh;
}

@media (max-width: 900px) {
    .preview-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .document-preview {
        min-height: 500px;
    }
}

.document-information {
    color: var(--spekter-gray);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 2em;
    min-height: 400px;
}

.document-preview {
    color: var(--spekter-gray);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 2em;
}

.document-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1em;
}

.document-table > tbody > tr > td:first-child {
    font-weight: 500;
}

.document-table > tbody > tr > td {
    padding: 0.5em;
    width: 50%;
    border-bottom: 0.1px solid var(--spekter-gray);
}

.signin-text {
    margin-top: 1em;
    margin-bottom: 1.5em;
}

.text-left {
    float: none;
}

.signup-body .signin-text p a {
    text-transform: none;
    font-size: 16px;
}

.signup-body a {
    text-transform: none;
}

body.signup-body {
    background: url(../images/login/front-page-city.jpg) no-repeat 0px 0px;
    background-size: cover;
}

.main-grid.home-page {
    padding-top: 0px;
}

.main-grid.home-page .agile-grids .spekter-default .spekter-default-page > h3 {
    text-align: center;
}

/*-- spekter-default --*/
.spekter-default {
    margin: 1em 0 0 0;
    min-height: 650px;
}

.spekter-default-page {
    padding: 1em;
    background: #fff;
    border: 1px solid #ebeff6;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.spekter-default-page p {
    font-size: 100%;
    color: black;
    line-height: 2em;
}

/*-- //spekter-default --*/

.settings-option {
    width: 100%;
}

.header-right span.badge {
    background: var(--spekter-yellow);
}

.subMenuStanovanjeName {
    color: white;
}

/*BANNER*/

.banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.banner-element {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/*MESSAGE MODAL*/
.message-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.message-container {
    z-index: 6;
    width: 50%;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: white;
}

.message-content {
    display: flex;
    width: 100%;
    padding: 1.5rem;
}

.fa-exclamation-triangle, .fa-check-circle {
    font-size: 2rem !important;
    padding: 0 !important;
}

.message-icon {
    flex-basis: 10%;
}

.message-text {
    flex-basis: 90%;
    font-size: 1.2em;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.message-text h3 {
    padding-bottom: 5px;
}

.message-button {
    width: 100%;
    background: #e3e3e3;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0.5rem;
    padding-right: 1rem;
}

.terms-container {
    height: 80%;
    width: 50%;
}

.terms-content {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: scroll;
}

.terms-text {
    font-size: 1em;
    padding: 0 1em 1em 0;
}

.terms-text > p {
    margin-top: 1em;
}

.error__404 {
    font-size: 200px;
    font-weight: 900;
    position: relative;
    display: inline-block;
    z-index: 2;
    line-height: 1;
    color: var(--spekter-blue);
}

/* CONTRACT_PREVIEW */

.contract-download-list {
    margin-top: 1em;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1em;
}

.contract-download-list > * {
    margin-top: 0.5em;
}

.contract-download-option {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    word-wrap: break-word;
}

.contract-download-option > h5 {
    grid-column: 1/3;
}

.preview-container-document {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
}

.preview-element {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preview-element:not(:first-child) {
    margin-top: 1rem;
}

.preview-element-placeholder {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--spekter-blue);
    padding: 1em;
    border-radius: 3px;
    color: white;
}

.preview-element-open {
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: start;
    width: 100%;
    padding: 0;
    background: var(--spekter-yellow);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 1;
}

.preview-element input {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.preview-element input:checked ~ .preview-element-placeholder {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.preview-element input:checked ~ .preview-element-open {
    max-height: 600px;
}

.fa-angle-down,
.fa-angle-up {
    font-size: 1.5rem !important;
}

.preview-element input:not(:checked) ~ .preview-element-placeholder .fa-angle-up {
    display: none;
}

.preview-element input:checked ~ .preview-element-placeholder .fa-angle-down {
    display: none;
}

.preview-element input:checked ~ .preview-element-placeholder .fa-angle-up {
    display: inline-block;
}

@media (max-width: 700px) {
    .preview-container {
        padding: 0;
    }

    .preview-element {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .form-control {
        width: 100% !important;
    }

    .dataTables_filter label{
        width: 100%;
    }

    .dataTables_filter input{
        width: 100%;
        margin-left: 0!important;
    }

    #yearFilter {
        margin-left: 0 !important;
        margin-top: 1em;
    }
}

.align-right {
    text-align: end !important;
}

.input-error {
    color: red !important;
    line-height: 1.4em !important;
    margin-top: 0.5em !important;
}

.progress {
    height: 1.2rem;
    margin-top: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    background: #e1e1e1;
    z-index: 1;
    cursor: pointer;
}

.text-blue {
    color: var(--spekter-blue);
}

.background-blue {
    background: var(--spekter-blue);
}

.subMenuStanovanjeName select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    padding-right: 2em;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    font-family: 'Roboto', sans-serif;
}

.underline {
    text-decoration: underline;
}

.nolink {
    text-decoration: none;
    cursor: default !important;
}

.dataTables_filter {
    float: none !important;
    text-align: start !important;
    margin: 1em 0 1em 0;
}

.switchDropdown {
    opacity: 0;
    position: absolute;
    color: white;
    z-index: 4;
    background: var(--spekter-blue);
    padding: 0.5em;
    border-radius: 4px;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.switchOption {
    padding: 0.3em;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 2px;
}

.switchOption:hover {
    background: var(--spekter-yellow);
    color: black;
}

.fa-info-circle {
    cursor: pointer;
    color: var(--spekter-blue);
}

.iframe-loading {
    background: url(../images/spekter-loading.gif) center center no-repeat;
}

.login-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 3em 0 3em 0;
}

.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

@media (max-width: 1300px) {
    .login-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .login-box{
        width: 90%;
        margin: 1em 0em 1em 0em;
    }

    .terms-container{
        width: 90%;
    }

    height: auto;
}

@media (max-width: 700px){
    .login-grid{
        margin-top: 1em;
    }
}

.width-60 {
    width: 60%;
}

.dtr-details{
    width: 100%;
}

.dtr-details > li:not(:last-child){
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dtr-details > li > span:nth-child(2){
    white-space: normal;
}

.dtr-details > li > .dtr-title{
    white-space: normal;
}

.board-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1em;
    margin: 0;
}

@media (max-width: 900px) {
    .board-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        margin: 0;
    }

    .message-container{
        width: 90%;
    }
}

.board{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    border: 1px black solid;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

#yearFilter{
    margin-left: 2em;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}