@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Josefin+Sans:wght@300;400;700&display=swap');
@import "widgets/select-switcher.css";
@import "widgets/star-raiting.css";
@import "widgets/checkbox.css";
@import "widgets/radiobox.css";
@import "widgets/modal.css";
@import "widgets/users.css";

html {
    height: 100%;
    overflow: hidden;
}

.focus-visible {
    box-shadow: 0 0 0 2px blue !important; /* Simulates a focus border */
    border-radius: 8px;

}

body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: "Inter", Arial, sans-serif;
    color: #0F172B;
    letter-spacing: 0;
    background: #fbfbfb;
}

input, textarea {
    font-family: "Inter", Arial, sans-serif;
    line-height: 20px;
    font-size: 1rem;
}

label {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera, and Edge */
}

a {
    color: #267E54;
    text-decoration: none;
}

.scroll-wrapper {
    overflow-y: scroll;
    height: 100%;
}

.main-wrapper {
    position: relative;
    width: 100%;
    min-width: 250px;
    min-height: 100%;
    margin: 0px auto;
    padding-bottom: 150px;
    background: #F2F1FF;
}

.main-wrapper > .container {
    margin-bottom: 190px;
}

textarea::placeholder {
    font-style: italic;
    font-size: 0.875rem;
}

input::placeholder {
    font-style: italic;
    font-size: 1rem;
}

:-webkit-autofill {
    transition: all 100000s ease-in-out 0s;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-evenly {
    justify-content: space-evenly;
}

.flex-column {
    flex-direction: column;
}

.flex-center {
    justify-content: center;
}

.flex-align {
    align-items: center;
}

.flex-space {
    justify-content: space-between;
}

.flex-around {
    justify-content: space-around;
}

.flex-end {
    justify-content: end;
}

.wide {
    width: 100%;
}

.rounded {
    border-radius: 8px;
}

.flex-1 {
    flex: 1;
}

.border {
    border: 1px solid #D0D5DD;
}

.pointer,
.btn {
    cursor: pointer;
}

.shadow {
    box-shadow: 0px 4px 2px -4px #c9c9c9;
}

h1, h2, h3, .bold {
    color: #0F172B;
}

.margin-right-10 {
    margin-right: 10px;
}

/* Style the scrollbar itself (the track) */
textarea.form-input::-webkit-scrollbar {
    width: 15px; /* width of the entire scrollbar */
    background-color: #eeeeee; /* color of the track */
    cursor: default;
    border-radius: 8px;
}

/* Handle (the draggable part of the scrollbar) */
textarea.form-input::-webkit-scrollbar-thumb {
    background-color: #4F46E6; /* color of the thumb */
    border-radius: 10px; /* roundness of the corners */
    border: 2px solid #F5F5F5; /* creates a little border inside of the track */
}

/* Handle on hover */
textarea.form-input::-webkit-scrollbar-thumb:hover {
    background-color: #3229CC; /* darker color on hover */
    cursor: pointer;

}

/* Search bar */
.search-bar {
    border: 1px solid #D0D5DD;
    background: white;
    height: 53px;
    width: 590px;
    transition: .2s;
}

.search-bar.active {
    border: 1px solid #3229CC;
}


.search-bar input {
    border: none;
    padding: 20px;
    width: 100%;
    background: none;
}

.search-btn {
    display: flex;
    align-items: center;
    border: 1px solid #D0D5DD;
    padding: 8px 30px;
    margin: 10px;
    cursor: pointer;
    transition: .2s;
    background: #ffffff;
}

.search-btn:hover {
    background: #ddd8ff;
    border: 1px solid #ddd8ff;
}

.search-btn i {
    color: #4F46E6;
}

.search-btn.clear-btn {
    padding: 8px 10px;
}

/* Main header */
.main-header {
    position: relative;
    height: 200px;
    background: url('../images/content-slide.jpg');
    background-position: center top;
    background-size: cover;
    border-bottom: 1px solid #ddd;
}

.main-header .upper {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #ddd;
}

.main-header .upper .middle {
    display: block;
    position: relative;
    max-width: 1150px;
    height: 72px;
    margin: 0px auto;
    text-align: right;
}

.main-header .slide {
    display: flex;
    flex-flow: column nowrap;
    max-width: 1150px;
    height: 137px;
    margin: 0px auto;
    padding: 0px 0px 10px 0px;
    justify-content: center;
}

.main-header .slide .title {
    display: block;
    margin: 0px 0px 5px 0px;
    color: #444;
    font-size: 24px;
    line-height: 26px;
}

.main-header .slide .text {
    display: block;
    color: #383936;
    font-size: 15px;
    line-height: 17px;
}

/* Header navigation */
.header-nav {
    padding-top: 25px;
    margin: 0 50px;
}

.header-content .user-side {
    justify-content: flex-end;
}

.header-nav .logo img {
    width: 155px;
}

.header-nav .menu {
    display: inline-block;
    vertical-align: middle;
    margin-top: 25px;
    font-size: 0px;
}

.header-nav .menu li {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 0px 0px 10px;
}

.header-nav .menu li a {
    display: block;
    padding: 5px 5px;
    font-size: 14px;
    line-height: 14px;
    color: #444;
    text-transform: uppercase;
    font-weight: bold;
}

.header-nav .menu li:first-child {
    margin-left: 0px;
}

.header-nav .menu li:hover a {
    color: #111;
}

.header-nav .menu li.active a {
    color: #09851d;
}

.header-nav .languages {
    display: inline-block;
    vertical-align: middle;
    margin: 25px 0px 0px 15px;
    padding: 0px 0px 0px 15px;
    font-size: 0px;
    border-left: 1px solid #ccc;
}

.header-nav .languages li {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 0px 0px 5px;
}

.header-nav .languages li:first-child {
    margin-left: 0px;
}

.header-nav .languages li a {
    display: block;
    padding: 3px 3px;
    font-size: 14px;
    line-height: 14px;
    color: #444;
    text-transform: uppercase;
    font-weight: bold;
}

.header-nav .languages li:hover a {
    color: #111;
}

.header-nav .languages li.active a {
    color: #09851d;
}

.header-nav .mobile-trigger {
    display: none;
    position: absolute;
    right: 20px;
    top: 24px;
    text-align: left;
}

.header-nav .mobile-trigger {
    font-size: 0px;
    cursor: pointer;
}

.header-nav .mobile-trigger .language {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    padding: 0px 3px;
    font-size: 16px;
    line-height: 16px;
    color: #444;
    text-transform: uppercase;
    font-weight: bold;
}

.header-nav .mobile-trigger .icon {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

.header-nav .mobile-trigger .icon img {
    width: 100%;
}

.header-nav .font-size-toggle {
    align-items: center;
    /*margin-top: 10px;*/
    /*margin: 0 160px;*/
}

.header-nav .font-size {
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.header-nav .font-size .letter {
    transition: .2s;
}

.header-nav .font-size:not(.active) .letter {
    color: #352e9b;
}

.header-nav .font-size:hover .letter {
    color: #4F46E6;
}

.header-nav .font-size.small {
    font-size: 14px;
}

.header-nav .font-size.small .letter {
    position: relative;
    top: 3px;
}

.header-nav .font-size.medium {
    font-size: 21px;
}

.header-nav .font-size.large {
    font-size: 30px;
}

.header-nav .font-size.large .letter {
    position: relative;
    bottom: 3.3px;
}

.header-nav .font-size-btn {
    border: 1px solid #D0D5DD;
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
    cursor: pointer;
}

.header-nav .font-size-btn.minus-btn {
    margin-right: 10px;
}

.header-nav .font-size-btn.plus-btn {
    margin-left: 10px;
}


.auth-area .login-btn {
    margin-right: 20px;
}

.auth-area .register-btn {
    background: #ffffff;
    padding: 8px 25px;
}

/* Active filters */
/*.active-filters {*/
/*    background: #ffffff;*/
/*    padding: 10px;*/
/*    border-radius: 8px;*/
/*}*/

.active-filters {
    margin-bottom: 20px;
}

.active-filters li:not(:last-child) {
    margin-right: 10px;
}

.active-filters > .label {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.active-filters .filter-tag {
    cursor: pointer;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 0 8px;
    height: 30px;
    transition: .5s;
    margin-bottom: 10px;
    background: #ffffff;
}

.active-filters .filter-tag:hover > .label {
    text-decoration: line-through;
}

.active-filters .filter-tag .type {
    margin-right: 5px;
}

.active-filters .filter-tag .value {
    font-weight: bold;
}

.active-filters .clear-all-filters {
    transition: .2s;
}

.active-filters .clear-all-filters:hover {
    background: #ffb0b0;
    color: white;
}

/* Mobile navigation */
.mobile-nav {
    display: none;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 270px;
    height: 100%;
    padding: 25px 25px;
    background: #f5f5f5;
    border-left: 1px solid #ccc;
    box-shadow: -2px 0px 3px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.opened {
    display: block;
}

.mobile-nav .close {
    position: absolute;
    right: 21px;
    top: 25px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    z-index: 1;
}

.mobile-nav .close img {
    width: 100%;
}

.mobile-nav .section {
    display: block;
    margin: 0px 0px 10px 0px;
    font-size: 14px;
    line-height: 24px;
    color: #00a63f;
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-nav .menu {
    margin: 0px 0px 35px 0px;
}

.mobile-nav .menu li {
    display: block;
}

.mobile-nav .menu li a {
    display: block;
    margin: 2px 0px;
    padding: 10px 0px;
    font-size: 16px;
    line-height: 16px;
    color: #444;
    text-transform: uppercase;
    font-weight: bold;
}

.mobile-nav .menu li:hover a {
    color: #00a63f;
}

.mobile-nav .menu li.active a {
    color: #00a63f;
}

.mobile-nav .menu .sub-menu {
    margin-left: 20px;
    margin-bottom: 15px;
}

.mobile-nav .menu .sub-menu li {
    margin-top: 15px;
}

.mobile-nav .languages li {
    display: inline-block;
    vertical-align: middle;
}

.mobile-nav .languages li a {
    display: block;
    padding: 5px 12px;
    font-size: 16px;
    line-height: 16px;
    color: #444;
    text-transform: uppercase;
    font-weight: bold;
}

.mobile-nav .languages li:first-child a {
    padding-left: 0px;
}

.mobile-nav .languages li.active a {
    color: #00a63f;
}


/* HERO SECTION */
.hero-section {
    margin-top: 50px;
}

.info-area {
    text-align: center;
}

.info-area h1 {
    color: #220B59;
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: bold;
}

.info-area .info {
    max-width: 690px;
    line-height: 1.5;
}

.add-new-area {
    margin-top: 50px;
    margin-bottom: 40px;
}

.add-new-observation-btn {
    background: #4F46E6;
    padding: 20px 45px;
    color: #fff;
    border: 1px solid #3229CC;
    box-shadow: 0px 0px 0px 8px #e8e7ff;
    transition: .5s;
}

.add-new-observation-btn:hover {
    background: #433bc0;
    color: #fff;
    box-shadow: 0px 0px 0px 0px #e8e7ff;
}

.add-new-observation-btn .svg-icon {
    display: inline-block;
    margin-right: 10px;
}

.observation-url.error {
    border-color: red;
}

.observation-country .flag {
    width: 32px;
    margin-right: 10px;
}

.tag-delete:hover {
    text-decoration: line-through;
}

/* Mobile submenu */
.mobile-submenu {
    display: none;
    margin: 0px 0px 25px 0px;
}

.mobile-submenu li {
    display: block;
    margin: 0px 0px 3px 0px;
}

.mobile-submenu li:last-child {
    margin-bottom: 0px;
}

.mobile-submenu li a {
    display: block;
    padding: 15px 18px;
    font-size: 15px;
    line-height: 17px;
    color: #192853;
    background: #f5f6f6;
    border-left: 4px solid #ddd;
}

.mobile-submenu li:hover a {
    color: #001040;
    border-left-color: #09851d;
}

.mobile-submenu li.active a {
    color: #001040;
    border-left-color: #09851d;
}

/* Content */
.container {
    margin: 0 auto;
    max-width: 848px;
}

.container-large {
    margin: 0 auto;
    max-width: 1170px;
}

.tag-area {
    margin-bottom: 65px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    background: #ffffff;
    display: inline-block;
    padding: 3px 10px;
    color: #4F46E6;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
}

.tag:hover {
    background: #f3f3f3;
}

.hero-section .tag {
    padding: 8px 10px;
}

.tag-area .tag {
    margin-bottom: 10px;
}

.tag-area li:not(:first-child) .tag {
    margin-left: 10px;
}

/* OBSERVATION */

.observation-terms-label .value {
    line-height: 23px;
    margin-top: -3px;
}

.observation-section .filters {
    margin-bottom: 30px;
}

.observation-content {
    background: white;
    border-radius: 8px;
    position: relative;
}

.observation-text {
    white-space: pre-wrap; /* Ensures whitespace and new lines are preserved */
}

.observation-text a {
    color: #4f46e6;
    text-decoration: underline;
}

.observation:not(:first-child) {
    margin-top: 25px;
}

.observation-header {
    margin: 25px 15px 0px 30px;
}

.observation-header .top-header {
    margin-bottom: 15px;
}

.observation-title h2 {
    font-weight: 700;
    font-size: 1.5rem;
    max-width: 450px;
    margin-top: -3px;
    line-height: 30px;
}

.observation-rating {
    padding-top: 2px;
}

.select-switcher-container.edit-btn {
    margin-top: -3px;
    margin-left: 15px;
}

.observation-header .label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 10px;
    color: #000000;
}

.observation-body {
    margin: 16px 30px 40px 30px;
}

.observation-comment-content {
    margin-right: 25px;
    margin-bottom: -25px;
}

.comment-edit {
    position: absolute;
    right: 10px;
}

.observation .solved-tag {
    position: absolute;
    top: -15px;
    left: -10px;
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #15E066;
    color: #03A744;
    background: #b9ffd4;
    border-radius: 20px;
    font-size: 0.875rem;
}

.observation .solved-tag .icon {
    margin-right: 8px;
}

.observation .solved-tag .value {
    font-weight: 600;
}

.observation .tag {
    border: 1px solid #D0D5DD;
    border-radius: 8px;
}

.observation-content {
    line-height: 24px;
    color: #5D6375;
}

.observation-comment-link .value {
    color: #4F46E6;
}

.observation-link-input {
    position: relative;
}

.form-group .observation-link-input input.form-input {
    padding-right: 50px;
}


.observation-link-input .add-link-btn {
    cursor: pointer;
    border-radius: 6px;
    display: inline;
    padding: 3px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: 1px solid #cbcbcb;
}

.observation .observation-footer {
    border-top: 1px solid #e6e7ee;
    background: #F8F7FC;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 15px;
}

.observation-footer .footer-info {
    padding: 10px 0;
}

.observation-comment {
    position: relative;
    margin-top: 15px;
    margin-left: 35px;
}

.load-observations {
    margin-top: 50px;
}


.observation .footer-info li {
    display: flex;
    align-items: center;
}

.observation .footer-info li:not(:last-child) {
    margin-right: 15px;
}

.observation .footer-info .icon {
    margin-right: 8px;
    margin-top: -3px;
}


.observation-comments {
    position: relative;
}

.first-comment-pointer {
    position: absolute;
    top: -10px;
}

.comment-pointer-angle {
    border-left: 1px solid #4F46E6;
    border-bottom: 1px solid #4F46E6;
    width: 27px;
    height: 27px;
    border-radius: 8px;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
}

.comment-hidden {
    opacity: 0.3;
}

.observation-edit-btn {
    background: #ebebeb;
    padding: 2px 5px 5px 5px;
}

.admin-btn {
    background: #ffffff;
    padding: 5px 10px;
}

.admin-btn .value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0F172B;
}

.admin-btn .icon {
    margin-right: 3px;
}

.admin-section li:not(:first-child) {
    margin-left: 10px;
}

.comment-area {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #D4D7E1;
    padding: 10px;
}

.comment-area.error {
    border: 1px solid red;
}

.add-comment-btn {
    margin-top: 10px;
    display: inline-block;
    background: #4F46E6;
    border: 1px solid #3229CC;
    padding: 10px 35px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

.add-comment .observation-body {
    margin: 16px 30px 20px 30px;
}

.add-comment .observation-title h3 {
    padding: 20px 30px 0 30px;
    font-weight: 700;
    font-size: 1.125rem;
}


.load-more-btn {
    display: inline-block;
    background: #ffffff;
    padding: 15px 55px;
    font-weight: 600;
    color: #4F46E6;
    border-color: #4F46E6;
    transition: .2s;
}

.load-more-btn:hover {
    display: inline-block;
    background: #4F46E6;
    padding: 15px 55px;
    font-weight: 600;
    color: #ffffff;
    border-color: #ffffff;
}


/* Main footer */
.main-footer {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 38px 0px;
}

.main-footer .bottom {
    padding: 0 50px;
}

.main-footer ul {
    display: flex;
}

.main-footer ul li:not(:last-child) {
    margin-right: 30px;
}

.main-footer a {
    font-weight: 400;
    color: #0F172B;
}

.main-footer .euro-flag-icon {
    width: 270px;
}

/* Ensures the side containers take up equal space */
.main-footer .side.left {
    display: flex;
    justify-content: flex-start;
}

.main-footer .side.right {
    display: flex;
    justify-content: flex-end; /* Keeps the EU logo pinned to the right */
}


/* cookies */

body .cookie-popup {
    max-width: 670px;
    padding-inline: clamp(5px, 4vw, 54px);
    padding-block: clamp(5px, 4vw, 40px) clamp(5px, 4vw, 50px);
    border-radius: 8px;
    box-shadow: 0 10px 19px 0 rgba(0, 0, 0, 0.11);
    background: white;
    position: fixed;
    z-index: 100;
    --margin: clamp(5px, 2.5vw, 30px);
    right: var(--margin);
    bottom: var(--margin);
    margin-inline-start: var(--margin);
    margin-block-start: var(--margin);
}

body .cookie-popup p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.69;
    letter-spacing: normal;
    color: #333;
    margin-block-end: 35px;
}

body .cookie-popup .actions,
body .cookie-popup .actions button {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

body .cookie-popup .actions {
    flex-wrap: wrap;
}

body .cookie-popup .actions button {
    flex-wrap: nowrap;
    height: 42px;
    text-align: center;
    padding-inline: 22px;
    border-radius: 27px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-block-start: 20px;
}

body .cookie-popup .actions button.close {
    background-color: #e5e5e5;
    color: #000;
    margin-inline-end: 10px;
}

body .cookie-popup .actions button.close:hover {
    background-color: #c5c5c5;
}

body .cookie-popup .actions button.accept {
    background-color: #4f46e6;
    color: white;
}

body .cookie-popup .actions button.accept:hover {
    background-color: #3b35ab;
}

body .cookie-popup .actions a {
    margin-block-start: 20px;
    margin-inline-start: auto;
    color: #4f46e6;
}

body .cookie-popup .actions a:hover {
    text-decoration: underline;
    color: #3b35ab;
}


/* form */
.form-content .label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 35px;
}

.form-group .tags {
    margin-top: 10px;
}

.form-group .tags ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.form-group .tags ul li {
    margin-bottom: 10px;
}

.form-group .tags ul li:not(:last-child) {
    margin-right: 10px;
}


.form-content .form-input {
    width: 100%;
    padding: 10px;
}

.form-content .form-input:focus,
.form-content .form-input:hover {
    border: 1px solid #3229CC;
}

textarea.form-input {
    min-height: 100px; /* Set a minimum height */
    width: 100%; /* Set width to take the full container width */
    resize: vertical; /* Allow only vertical resizing */
}

.form-btn {
    text-align: center;
    border-radius: 8px;
    background: #4F46E6;
    padding: 15px 35px;
    color: #ffffff;
    border: 1px solid #3229CC;
    cursor: pointer;
    transition: .2s;
}

.form-btn:hover {
    background: #271eb0;
}

.link {
    cursor: pointer;
    color: #4F46E6;
    border-bottom: 1px solid #4F46E6;
    display: inline;
}

.inline-link {
    display: inline;
}

.cancel-btn {
    background: #E8E7F3;
    padding: 15px 35px;
    color: #4F46E6;
    transition: .2s;
    border: none;
    font-size: 1rem;
}

.cancel-btn:hover {
    background: #ccccd3;
}

.submit-btn {
    background: #4F46E6;
    padding: 10px 35px;
    color: #ffffff;
    border: 1px solid #3229CC;
    transition: .2s;
    font-size: 1rem;
}

.submit-btn:hover {
    background: #3b35b0;
}

.alternate-logins .side:first-child {
    margin-right: 20px;
}

.alternate-login-btn {
    padding: 10px 15px;
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    height: 45px;
}

.alternate-login-btn img {
    margin-right: 10px;
}

.no-content-found {
    margin-top: 80px;
}

.no-content-found .label {
    font-size: 2rem;
    font-weight: bold;
}

.no-content-found .back-home-btn {
    background: #ffffff;
    padding: 15px 20px;
    border: 1px solid gray;
    cursor: pointer;
    border-radius: 8px;
    color: black;
    font-size: 1.2rem;
    margin-top: 50px;
}

.mobile-facebook-btn {
    border-radius: 4px;
    height: 40px;
}

.mobile-facebook-btn img {
    width: 20px;
    margin-left: -3px;
}

.mobile-facebook-btn .value {
    color: #484848;
    font-size: 0.85rem;
}

/* media */
@media all and (min-width: 1400px) {
    .observation .footer-info li.desktop-hide,
    .desktop-hide {
        display: none;
    }


    .header-nav .font-size-toggle {
        margin-right: 40px;
    }
}

@media all and (max-width: 1400px) {
    .mobile-hide {
        display: none;
    }

    .mobile-column {
        flex-direction: column;
    }

    .mobile-column div:not(:last-child) {
        margin-bottom: 10px;
    }

    .alternate-logins.mobile-column div {
        width: 100%;
    }

    .observation-title h2 {
        line-height: 40px;
    }

    .header-nav {
        padding-top: 25px;
        margin: 0 10px;
    }

    .header-nav .logo {
        margin-right: 10px;
    }

    .header-nav .logo img {
        width: 100px;
    }

    .header-nav .flex-1 {
        flex: initial;
    }

    .header-content {
        justify-content: space-between;
    }

    .header-content .user-side {
        justify-content: flex-end;
    }

    .header-nav .font-size-toggle {
        padding-right: 20px;
    }

    .header-nav .font-size-toggle li {
        margin-right: 2px;
    }

    .header-nav .font-size.small .letter {
        position: relative;
        top: 3px;
    }

    .observation-header .top-header {
        flex-direction: column;
    }

    .observation-title h2 {
        margin-bottom: 20px;
    }

    .observation .tag:not(:first-child) {
        margin-top: 10px;
    }

    .search-bar {
        width: 100%;
    }

    .mobile-search {
        margin-top: 20px;
    }

    .search-btn {
        padding: 8px 10px;
    }

    .main-header .upper .middle {
        width: 100%;
        padding: 0px 20px;
    }

    .main-header .slide {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-nav .logo {
        left: 20px;
    }

    .main-content {
        width: 100%;
        padding: 20px 20px;
    }

    .main-footer .bottom {
        width: 100%;
        padding: 0px 20px;
    }


    .mobile-footer .side.middle ul {
        display: flex;
        flex-direction: column;
    }

    .mobile-footer .side.middle ul li {
        text-align: center;
        margin: 0;
    }

    .mobile-footer .side.middle ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .main-footer .euro-flag-icon {
        width: 200px;
    }


    .observation-footer .footer-info {
        display: flex; /* Makes the ul a flex container */
        flex-wrap: wrap; /* Allows items to wrap into new rows */
        justify-content: space-between; /* Justifies content as space between */
        align-items: flex-start; /* Aligns items at the start of the cross axis */
        gap: 10px; /* Adds space between the li elements */
    }

    .observation-footer .footer-info li {
        flex: 1 1 50%; /* Makes each li take half the width of the ul, fitting two per row */
        display: flex; /* Makes each li also a flex container */
    }

    /* Adjusts the third or fourth li when alone on a row to take full width */
    .observation-footer .footer-info li:nth-last-child(1):nth-child(3),
    .observation-footer .footer-info li:nth-last-child(1):nth-child(4) {
        flex: 1 1 100%;
    }

    .submit-btn {
        padding: 6px 33px;
        margin-left: 10px;
    }

    .observation-title h2 {
        line-height: 30px;
    }
}

@media all and (max-width: 800px) {
    .table-container {
        overflow-x: auto;
        width: 100%;
    }

    .header-nav .menu {
        display: none;
    }

    .header-nav .languages {
        display: none;
    }

    .header-nav .mobile-trigger {
        display: block;
    }

    .main-content.with-sidebar {
        display: block;
    }

    .main-content.with-sidebar .module-content {
        padding-right: 0px;
    }

    .main-content.with-sidebar .module-sidebar {
        display: none;
    }

    .mobile-submenu {
        display: block;
    }

}

@media all and (max-width: 500px) {
    .main-header .slide .title {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 7px;
    }

    .main-header .slide .text {
        font-size: 14px;
        line-height: 16px;
    }

    .main-footer .bottom {
        font-size: 13px;
    }

    .observation-section .filters .select-switcher-container div.dropdown {
        min-width: 150px;
    }

    .observation-header .bottom-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-footer .bottom .side {
        width: 100%;
    }

    .modal-footer .bottom .side:last-child {
        margin-top: 20px;
    }

    .modal-footer .bottom .btn {
        width: 100%;
        margin: 0;
    }

    .modal-footer .bottom .submit-btn {
        padding: 8px 30px;
    }

    .filters {
        flex-direction: column;
    }

    .filters .sort-side {
        margin-top: 20px;
    }
}

@media all and (max-width: 400px) {
    .mobile-nav {
        width: 75%;
    }

    body .cookie-popup .actions {
        justify-content: center;
    }

    body .cookie-popup .actions a {
        margin-inline: 0;
    }

    .observation-section .filters .select-switcher-container div.dropdown {
        min-width: 150px;
    }

    .observation-country {
        margin-bottom: 10px;
    }

}

@media all and (max-width: 300px) {

    .observation-section .filters .select-switcher-container div.dropdown {
        min-width: 130px;
    }

}


/** LOADER **/
.loader-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.twitchLoader {
    width: 100px;
    transform: rotate(-45deg);
    display: inline-block;
}

.twitchLoader .cube {
    height: 20px;
    width: 20px;
    margin: 15px;
    background-color: #000000;
    float: right;
    opacity: 0;
    outline: 1px solid transparent;
}

.twitchLoader .cube:nth-child(1) {
    background-color: #4F46E6;
    -webkit-animation: purpleAnim 2s infinite 0.55s;
    animation: purpleAnim 2s infinite 0.55s;
    position: fixed;
}

.twitchLoader .cube:nth-child(2) {
    -webkit-animation: cubeAnim1 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 0.26s;
    animation: cubeAnim1 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 0.26s;
}

.twitchLoader .cube:nth-child(3) {
    -webkit-animation: cubeAnim4 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 1.755s;
    animation: cubeAnim4 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 1.755s;
}

.twitchLoader .cube:nth-child(4) {
    -webkit-animation: cubeAnim2 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 0.741s;
    animation: cubeAnim2 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 0.741s;
}

.twitchLoader .cube:nth-child(5) {
    -webkit-animation: cubeAnim3 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 1.235s;
    animation: cubeAnim3 2s infinite cubic-bezier(0.4, 0, 0.2, 1) 1.235s;
}

@-webkit-keyframes cubeAnim1 {
    0% {
        opacity: 0;
        transform: translate(0, -50px);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@keyframes cubeAnim1 {
    0% {
        opacity: 0;
        transform: translate(0, -50px);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes cubeAnim2 {
    0% {
        opacity: 0;
        transform: translate(50px, 0);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@keyframes cubeAnim2 {
    0% {
        opacity: 0;
        transform: translate(50px, 0);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes cubeAnim3 {
    0% {
        opacity: 0;
        transform: translate(0, 50px);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@keyframes cubeAnim3 {
    0% {
        opacity: 0;
        transform: translate(0, 50px);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes cubeAnim4 {
    0% {
        opacity: 0;
        transform: translate(-50px, 0);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@keyframes cubeAnim4 {
    0% {
        opacity: 0;
        transform: translate(-50px, 0);
    }
    40% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes purpleAnim {
    0% {
        transform: translate(50px, 0px);
        opacity: 1;
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(0px, 50px);
    }
    75% {
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(50px, 0px);
        opacity: 1;
    }
}

@keyframes purpleAnim {
    0% {
        transform: translate(50px, 0px);
        opacity: 1;
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(0px, 50px);
    }
    75% {
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(50px, 0px);
        opacity: 1;
    }
}
