@import './index.css';
@import './fitness.css';

@font-face {
    font-family: "Nunito Sans", sans-serif;
    src: url('../../fonts/Nunito-Sans.ttf');
}

:root {
    --clr-primary: #213764;
    --clr-secondary: #0d6efd;
    --clr-accent: #2d4a86;
    --clr-font: #213764;
    --clr-bg: #dfe6f1;
    --main-img: url("/tt/img/vfm.jpg");
}

/* Custom styles for SweetAlert2 */
.custom-popup-class {
    font-size: 18px;
    border-radius: 10px;
  }
.custom-title-class {
    color: #3D3D3D;;
    font-weight: bold;
}

.custom-confirm-button-class {
    background-color: #e5ca2d !important; /* Custom confirm button color */
    border-radius: 5px;
}

:root {
    /* --clr-primary: #e5ca2d; */
    /* --clr-secondary: #63E5E5; */
    --clr-third: #059293;
    /* --clr-font: #000; */

    --clr-primary-btn: #0b92f8;
    --clr-secondary-btn: #065d9f;
    --clr-primary-bg: #f1f1f1;
    --clr-nav-bg: #bfbfbf;
    --clr-primary-hov: #065d9f;
    --clr-secondary-grey: #3D3D3D;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

.row-main-home {
    grid-column: main-start / main-end;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Width is already determined by the grid column above */
    /* No changes needed here as it fills the main-start/main-end area */
}

.home-content {
    width: 100%;
}

.select-project-title {
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 1.7rem;
}

.mood-cell {
    text-align: center;
    cursor: pointer;
}

.mood-cell:hover {
    background-color: var(--clr-secondary);
}

.time-spent-tag {
    font-size: x-small;
    background-color: var(--clr-primary);
    color: white;
    border-radius: 0.75rem;
    padding: 5px;
    margin-right: 3px;
}

.mood-cell-selected {
    text-align: center;
    background-color: var(--clr-primary);
}

html {
    box-sizing: border-box;
    font-family: "Nunito Sans";
    /* 10px / 16 px = 62.5% -> 1rem 10px */
    font-size: 62.5%;
}

button:focus,
input:focus,
textarea:focus {
    border: none;
    outline: none;
}

button:hover,
input:hover,
textarea:hover {
    cursor: pointer;
}
.drag-active {
    border: 10px dashed grey;
    background-color: rgba(52, 152, 219, 0.05);
}

.file-drop-zone {
    background-color: #e0e0e0;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.drop-zone-content {
    text-align: center;
    color: #000;
}

.drop-zone-content img {
    margin-bottom: 10px;
    opacity: 0.7;
}

.drop-zone-content p {
    margin: 0;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
label,
input,
div,
span,
strong,
input,
select,
button,
textarea {
    font-family: "Nunito Sans";
}

.logo-ka {
    width: 200px;
}

.nav-icon-circle {
    width: 44px;
}

.bg-road {
    background: url("../images/road.jpg");
}

.lang-select {
    color: var(--clr-font);
    background-color: transparent;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.lang-wrapper {
    padding: 10px;
    position: relative;
}

.dropdown-lang {
    position: absolute;
    top: calc(100% + 5px);
    right: -10px;
    width: 100%;
    min-width: 80px;
    background-color: white;
    border-radius: 5px;
    padding: 5px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    height: auto;
    overflow-y: auto;
    display: none;
}

.dropdown-arrow {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 5px 6px 5px;
    border-color: transparent transparent var(--clr-font) transparent;
    transform: rotate(180deg);
    align-self: center;
 }

 .dropdown-arrow.open {
    transform: rotate(0deg);
}
.dropdown-lang-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-list-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.2s;
    text-transform: uppercase;
    text-align: center;
}

.lang-list-item.settings {
    color: var(--clr-font);
    font-weight: bold;
}

.lang-list-item.settings:hover {
    color: var(--clr-primary);
}

.dropdown-lang-item:hover {
    background-color: #f1f1f1;
    color: var(--clr-font);
    cursor: pointer;
    transition: all .2s ease-in-out;
    font-weight: bold;
}

.light-blue-btn:focus,
.light-blue-btn {
    padding: 10px;
    border-radius: 999px;
    background-color: var(--clr-primary);
    color: #FFF;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    text-align: center;
    transition: all .2s ease-in-out;
    border-bottom: 1px solid grey;
}

input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 999px;
    color: #000;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
    background: #f2f2f2;
}

.light-blue-btn:not(:first-of-type) {
    margin-left: 30px;
}

.blue-btn:focus,
.blue-btn {
    width: 360px;
    height: 60px;
    border-radius: 10px;
    background-color: #0e508b;
    color: #ffffff;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    padding: 18px 10px;
    transition: all .2s ease-in-out;
}

.btns-cal-lg {
    display: block;
}

.btns-cal-sm {
    display: none;
}

.btn-mob {
    height: 50px;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: var(--clr-primary);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

.btn-mob-md {
    margin: 0 20px;
}

.btn-change-org {
    margin: 20px 0;
}

.btn-mob:nth-of-type(1) {
    flex-grow: 1;
}

.btn-mob:nth-of-type(2) {
    flex-grow: 2;
}

.btn-mob:nth-of-type(3) {
    flex-grow: 1;
}

.img-arrow {
    height: 30px;
}

/* KK */
/* Buttons Styling */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-secondary,
.btn-secondary:focus,
.btn-secondary:active {
    height: auto;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    transition: all .3s ease-in-out;
    margin: 20px 0;
}

#login .btn-primary {
    max-width: none;
    width: 100%;
}

#login .hero-logo {
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    font-size: 1.6rem;
    width: 100%;
    max-width: 260px;
}

.btn-primary span {
    transition: all .4s;
    margin-left: .5rem;
}

.btn-primary span img {
    width: 18px;
}

.btn-primary:hover span {
    margin-left: 1.5rem;
}

.contact-home-col .btn-primary {
    font-size: 1.6rem;
    max-width: 300px;
    width: 100%;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--clr-primary);
    color: #fff;
    border-radius: 5px;
}

.btn-secondary,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #ffffff;
    color: #000;
}

.btn-secondary:active {
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--clr-accent);
}

.btn-secondary:hover {
    background-color: var(--clr-primary);
    color: #000;
}

.about .btn-primary {
    margin-bottom: 15px;
}

.btn-calc {
    display: none;
}

/* !Buttons Styling */

/* Chat room page styling */
.practicans {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    font-size: 1.8rem;
    color: inherit;
    width: 100%;
}

.org-name {
    color: var(--clr-secondary-grey);
    font-weight: 500;
    font-size: 4rem;
}

.chat-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 20px;
}

.chat-header h1 {
    padding-top: 20px;
}

.meeting-chat {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.chat-header-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    margin-left: 10px;
}

.hidden-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.icon-button,
.icon-button:active,
.icon-button:focus {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 !important;
    min-width: 100px;
    height: auto;
    border: 1px solid #c4bfbf;
    border-radius: 5px;
    padding: 8px;
    transition: background-color 0.2s;
}

.file-upload-container {
    position: relative;
}

/* Hide the actual file input */
.hidden-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

/* Style the custom icon button */
.file-upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: auto;
    height: auto;
    cursor: pointer;
    background-color: #f0f0f0;
    border-radius: 5;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-upload-icon span {
    font-size: 14px;
    font-family: "Nunito Sans";
    color: #737373;
    font-weight: normal;
}

.file-upload-icon:hover {
    background-color: #e0e0e0;
}

.icon-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    font-size: 12px;
}

.icon-button .icon img {
    width: 20px;
    height: 20px;
}

.information-icon-circle {
    width: 25px;
    height: 25px;
}

.history-icon-circle {
    width: 20px;
    height: 20px;
    filter: grayscale(1) opacity(0.5);
    margin-left: 8px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

.information-icon-circle,
.history-icon-circle {
    display: inline-block;
    vertical-align: middle;
}

.history-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.history-dropdown {
    display: block; /* Standard block display */
    position: static; /* Normal document flow */
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    margin-bottom: 10px;
    width: 300px;
}

/* Keep the simple list styling */
.history-dropdown-list {
    list-style-type: none;
    padding: 5px 0;
    margin: 0;
}

.history-dropdown-list li {
    padding: 0;
}

.history-dropdown-list li a {
    display: block;
    padding: 6px 12px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

/* Hover effect */
.history-dropdown-list li a:hover {
    background-color: #f5f5f5;
    text-decoration: underline;
}

.icon-button:hover {
    background-color: #f5f5f5;
}

.icon-button-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 !important;
}

.icon-button-bottom .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 8px;
    border-radius: 999px;
    color: #737373;
    height: auto;
    width: auto;
    font-size: 14px;
    margin-bottom: 5px;
    transition: background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}

.icon-button-bottom .icon-upload {
        display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 8px;
    border-radius: 999px;
    color: #737373;
    height: auto;
    width: auto;
    font-size: 14px;
    margin-bottom: 5px;
    transition: background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #f0f0f0;

}

/* Improved highlighted state */
.icon-button-bottom.button-bottom-highlighted .icon {
    background-color: #fffacd; /* Light lemon chiffon instead of harsh yellow */
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.6); /* Subtle glow e
    ffect */
    border: 1px solid #ffdc62; /* Subtle border */
    transform: scale(1.05); /* Slight grow effect */
}

.icon-button-bottom .icon img {
    width: 20px;
    height: 20px;
}

/* Regular hover effect for non-highlighted buttons */
.icon-button-bottom:not(.button-bottom-highlighted) .icon:hover {
    background-color: #e0e0e0;
}

/* Override hover effect for highlighted buttons */
.icon-button-bottom.button-bottom-highlighted .icon:hover {
    background-color: #fff5b8; /* Slightly brighter than the highlighted color */
    border: 1px solid #ffd000; /* Slightly deeper border */
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.7); /* Enhanced glow */
}

.participant-item {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

.participant-icon {
    display: flex;
    align-self: flex-end;
}

.participant-name {
    align-self: flex-end;
    font-size: 20px;
}

.participant-icon img {
    width: 30px;
    height: 30px;
}

.icon-button .label {
    font-size: 12px;
    color: #666;
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meeting-chat table {
    display: block;
    overflow-x: auto;
}

/* Custom Checkbox with Yellow Check */
.starred-checkbox {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    user-select: none;
    margin-right: 30px;
    font-size: 15px;
  }
  
  /* Hide default checkbox */
  .starred-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    
  }
  
  /* Custom checkbox container */
  .checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  /* Hover effects */
  .starred-checkbox:hover .checkmark {
    border-color: #999;
  }
  
  /* The checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .starred-checkbox input:checked ~ .checkmark:after {
    display: block;
  }

  
  /* Style the checkmark/indicator */
  .starred-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #e5ca2d;  /* Yellow checkmark color */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  /* Focus state for accessibility */
  .starred-checkbox input:focus ~ .checkmark {
    box-shadow: 0 0 0 2px rgba(229, 202, 45, 0.25);
  }
  
  /* Label text styling */
  .label-text {
    margin-left: 4px;
  }

.post-area {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    background-color: #ffffff;
}

.light-red-btn:focus,
.light-red-btn {
    padding: 12px 25px;
    border-radius: 999px;
    background-color: #C85C5E;
    color: #ffffff;
    border: none;
    font-size: 1.8rem;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    transition: all .2s ease-in-out;
}

.textarea-wrapper {
    position: relative;
    width: 100%;
}

.post-content {
    border-radius: 5px;
}

.post-txt-area {
    width: 100%;
    padding-right: 60px; /* Make room for the button */
    box-sizing: border-box;
}

.modern-send-button {
    position: absolute;
    bottom: 30px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.modern-record-button {
    position: absolute;
    bottom: 30px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.modern-send-button:hover {
    background-color: grey;
}

.modern-record-button:hover {
    background-color: grey;
}
/* Target the image specifically */
.modern-record-button .record-icon {
    filter: brightness(0) invert(1); /* This converts the image to white */
}

.modern-send-button .send-icon {
    filter: brightness(0) invert(1); /* This converts the image to white */
}

.record-icon,
.send-icon {
    width: 20px;
}

#upload_button,
#reset_button {
    margin-left: 30px;
}

#img_display {
    width: 300px;
}

.light-blue-btn:hover,
.blue-btn:hover,
.article-btn:hover,
.light-red-btn:hover {
    filter: brightness(.85);
    /* transform: scale(1.02);
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 50%); */
}

.light-blue-btn:active,
.blue-btn:active,
.article-btn:active,
.light-red-btn:active {
    /* transform: scale(1);
    box-shadow: none; */
}

.calc-prem-btn {
    margin: 80px 0;
}

.btn-table:focus,
.btn-table {
    border-radius: 999px;
    background-color: #f2f2f2;
    border: none;
    text-align: center;
    text-decoration: none;
    padding: 15px 25px;
    transition: all .2s ease-in-out;
    display: inline-block;
}

.btn-table:hover {
    filter: brightness(.9);
}

.btns-wrp-sm {
    margin: 15px 0;
}

.highlight-1 {
    background-color: #f4c1c1;
    padding: 10px;
    border-radius: 10px;
}

.highlight-2 {
    background-color: #f4f4c1;
    padding: 10px;
    border-radius: 10px;
}

.highlight-3 {
    background-color: #c5f4c1;
    padding: 10px;
    border-radius: 10px;
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #aca7a7;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-left: 5px;
}

.plus-icon:hover {
    background-color: #918c8c;
}

.plus-icon::before,
.plus-icon::after {
    content: '';
    position: absolute;
    background-color: white;
    transition: transform 0.2s ease;
}

/* Horizontal line */
.plus-icon::before {
    width: 12px;
    height: 2px;
}

/* Vertical line */
.plus-icon::after {
    width: 2px;
    height: 12px;
}

/* Active state animation */
.plus-icon.active::before,
.plus-icon.active::after {
    transform: rotate(45deg);
}

.add-team {
    border: 1px solid #d0d0d0;
    border-radius: 10px;
}

.add-team>div {
    padding: 50px;
}

.post-item {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    box-sizing: border-box; /* Include padding in width calculation */
    overflow: visible; /* Allow normal text to wrap */
}

/* Fix for list overflow issue */
.post-item ol, .post-item ul {
    padding-left: 2.5rem; /* More space for list markers */
    margin-left: 0;
    box-sizing: border-box;
}

/* Fix for code overflow issue - WITH NO WRAPPING */
.post-item pre {
    white-space: pre; /* Preserve code formatting exactly */
    overflow-x: auto; /* Add horizontal scroll */
    max-width: 100%; /* Container width */
    border-radius: 5px;
    padding: 20px;
    background-color: #f2f2f2;
}


/* For code blocks within post-item */
.post-item pre code, .post-item .code-block code {
    white-space: pre; /* Never wrap code */
    font-family: monospace;
    overflow-x: auto;
}

/* For inline code within post-item */
.post-item :not(pre) > code:not(.code-block code) {
    white-space: pre-wrap; /* Allow wrapping */
    word-break: break-word; /* Break words if needed */
    font-family: monospace;
    overflow-wrap: anywhere;
}

.post-item.ai-answer {
    background-color: white;
    align-self: flex-start;
    width: 100%;
}

.post-item.person-answer {
    background-color:#d5dee6; 
    align-self: flex-end;
    width: 80%;
}

.post-icon {
    width: 35px;
    height: 35px;
    align-self: center;
}

/* Make KaTeX math formulas horizontally scrollable like code */
.post-item .katex-display {
    overflow-x: auto;
    max-width: 100%;
}

.post-item .katex, 
.post-item .katex-mathml {
    display: inline-block;
    white-space: nowrap;
    overflow-x: auto;
    max-width: 100%;
}

/* Add some styling for math containers */
.post-item .katex {
    padding: 0;
    background-color: transparent;
}

/* Fix any nested scrolling issues */
.post-item .katex-html {
    overflow-x: visible;
}

.post-inside-buttons-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.btn-sm {
    font-size: 1.7rem;
    text-decoration: none;
    color: #000;
    background-color: #f2f2f2;
    padding: 10px 35px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.btn-sm.post {
    font-size: 1.3rem;
    background-color: white;
    padding: 6px;
    margin: 5px;
    color: #737373;
}

.btn-sm.remove-background {
    box-shadow: none;
    border: none;
    border-radius: 50px;
    padding: 4px 7px;
}

.btn-sm.remove-background:hover {
    filter: none;
}

/* Common styles for both icons */
.collapse-post {
    width: 100%;
    display: flex;
    justify-content: flex-end;

}
.collapse-post span {
    font-size: 1.3rem;
  
}
/* Arrow Button Styling */
.scroll-button {
    position: fixed;
    right: 20px; /* Fixed distance from right instead of percentage */
    bottom: 20px;
    z-index: 1000; /* Ensure buttons appear above other content */
}

.scroll_arrow_btn {
    position: relative;
    width: 60px; /* Fixed width */
    height: 60px; /* Fixed height */
    min-width: 60px; /* Prevent shrinking */
    min-height: 60px; /* Prevent shrinking */
    border-radius: 50%;
    background-color: rgba(213, 222, 230, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(224, 224, 224, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px; /* Add space between buttons when both are visible */
}

.scroll_arrow_btn:hover {
    background-color: rgba(196, 208, 218, 0.95);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.scroll_arrow_btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Arrow styling */
.arrow_down {
    width: 12px;
    height: 12px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    transform: rotate(45deg);
    margin-top: -6px;
}

.arrow_up {
    width: 12px;
    height: 12px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    transform: rotate(-135deg); /* Up arrow */
  }


.btn-sm.border {
    border-bottom: 1px solid grey;
}

.btn-sm:hover {
    filter: brightness(.9);
}

.btn-conf-decl {
    color: #fff;
    background-color: var(--clr-primary);
    padding: 12px 25px;
}

.mr-btn {
    margin-right: 15px;
}

.tt-link {
    font-size: 2rem;
    color: #065D9F;
}

.download-btn {
    margin: 30px 0 60px 0;
}

h1 {
    font-size: 7rem;
    font-weight: 700;
}

h2 {
    font-size: 4rem;
    font-weight: 600;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.5rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

.bold {
    font-weight: bold;
}

::placeholder {
    font-size: 1.6rem;
    font-weight: normal;
    color: #939292;
}

.container {
    display: grid;
    grid-template-columns: [full-start] minmax(7%, 1fr) [main-start] minmax(0, 1200px) [main-end] minmax(7%, 1fr) [full-end];

    grid-template-rows: 100px 1fr minmax(120px, min-content);
    color: var(--clr-font);
}

.container-page {
    grid-column: full-start / full-end;

    display: grid;
    grid-template-columns: [full-start] minmax(7%, 1fr) [main-start] minmax(0, 1200px) [main-end] minmax(7%, 1fr) [full-end];
    min-height: calc(100vh - 270px);
    /* 100 visual height - footer height */
    position: relative;
    margin-bottom: 50px;
}

.row-full {
    grid-column: full-start / full-end;

    display: grid;
    grid-template-columns: [full-start] minmax(7%, 1fr) [main-start] minmax(0, 1200px) [main-end] minmax(7%, 1fr) [full-end];
    grid-template-rows: auto;
    background-color: #f2f2f2;
}

.row-full-dark {
    grid-column: full-start / full-end;
    display: grid;
    grid-template-columns: [full-start] minmax(7%, 1fr) [main-start] minmax(0, 1200px) [main-end] minmax(7%, 1fr) [full-end];
    grid-template-rows: auto;
    /* background-image: linear-gradient(to right, #000, #737373); */
    background-color: #1a1a1a;
}

.row-full-lighter {
    grid-column: full-start / full-end;
    display: grid;
    grid-template-columns: [full-start] minmax(7%, 1fr) [main-start] minmax(0, 1200px) [main-end] minmax(7%, 1fr) [full-end];
    grid-template-rows: auto;
    background-color: var(--clr-bg);
}

.row-full-lighter.hero {
    background: url("/tt/img/vfm.jpg") center / cover no-repeat;
    position: relative;
    color: var(--clr-font);
    min-height: 400px;
}

.row-full-lighter.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

.row-full-lighter.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading-main {
    font-size: 6rem;
    font-weight: 700;
    margin: 80px 30px;
    text-align: center;
}

.heading-secondary {
    font-size: 4rem;
    font-weight: 600;
    margin: 80px 30px;
    text-align: center;
}

.hero-logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 120px;
}

.have-account {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.have-account p,
.have-account a {
    font-size: 1.5rem;
    color: inherit;
    margin: 10px 0;
}

.have-account p {
    margin-right: 5px;
}

.have-account a:hover {
    color: var(--clr-primary);
}

.recording-timer {
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.recording-indicator {
    color: #e53935;
    font-size: 18px;
    margin-bottom: 10px;
}

.timer-display {
    font-size: 58px;
    font-weight: regular;
    font-family: monospace;
}

@media screen and (max-width: 1000px) {
    .row-full.white {
        grid-column: full-start / full-end;

        display: grid;
        grid-template-columns: [full-start] minmax(7%, 1fr) [main-start] minmax(0, 1200px) [main-end] minmax(7%, 1fr) [full-end];
        grid-template-rows: auto;
        background-color: #fff;
    }
}

.row-main {
    grid-column: main-start / main-end;
    display: flex;
    justify-content: center;
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.row-main-sidebar {
    width: 260px;
    background-color: #f7f7f8;
    padding: 15px;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #e0e0e0;
}

.row-main.sticky-input {
    /*position: fixed;*/
    bottom: 0;
    left: 0;
    width: 100%;
    /*padding: 30px 60px;*/
    background-color: #fff;
    margin: 0;
}

.row-full-white {
    grid-column: full-start / full-end;
    background-color: #fff;
}

.row-inner {
    grid-column: main-start / main-end;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-main-nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.header-main-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none; 
}

.header-list-item a,
.dropdown-lang-item a {
    font-family: inherit;
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 300;
    color: #3D3D3D;
}

.phone-num img {
    width: 14px;
    margin-right: 3px;
}

.navigation {
    background-color: var(--clr-primary);
}

.nav-content {
    grid-column: main-start / main-end;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-dd {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 700px;
    width: 40vw;
    height: 0;
    padding: 115px 40px 20px 40px;
    border-radius: 20px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.57);
    background-color: var(--clr-primary);
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    z-index: 100;
    opacity: 0;
    transition: .3s linear;
    display: none;
}

.nav-ddl {
    margin-bottom: 5rem;
}

.nav-ddl-item {
    margin: 0;
    text-align: left;
    list-style: none;
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.nav-ddl-sub-item {
    margin-left: 5rem;
}

.nav-ddl-title {
    color: #bfbfbf;
    margin-left: 0;
}

.nav-ddl-item a {
    color: #ffffff;
    text-decoration: none;
}

.dl-item {
    color: #bfbfbf;
    cursor: initial;
}

.nav-sub {
    margin-left: 25px;
}

.nav-sub-item {
    margin-top: 35px;
}

.login-logout {
    width: 120px;
    padding: 14px 8px;
    margin-left: 50px;
}

.schedule-table td {
    border: 1px solid #9a9a9a;
}

.non-business {
    border: 1px solid #9a9a9a;
    background-color: lightgray;
    padding: 3px;
}

.schedule-period {
    color: #fff;
    background-color: var(--clr-primary);
    padding: 5px;
}

td.today {
    font-weight: bold;
    color: #fff;
    background-color: #FC7F03;
    border: 3px solid #9a9a9a;
    padding: 3px;
}

.regular-day {
    padding: 3px;
    background-color: rgba(5, 146, 147, 0.25);
}

.actively-scheduled {
    background-color: blue;
}

.absense {
    background-color: #00aeef;
}

.absense-requested {
    background-color: #D4F0FD;
}

.absense-red {
    background-color: #C85C5E;
}

.absense-red-requested {
    background-color: #FDBDBE;
}

.absense-green {
    background-color: #83A66A;
}

.absense-green-requested {
    background-color: #D8E9CB;
}

.absense-primary {
    background-color: var(--clr-primary);
}

.absense-primary-requested {
    background-color: var(--clr-secondary);
    ;
}

.absense-brown {
    background-color: #CE833A;
}

.absense-brown-requested {
    background-color: #DFC1A3;
}

.absense-yellow {
    background-color: #DFE047;
}

.absense-yellow-requested {
    background-color: #E9E9C5;
}

.other-type-absense {
    background-image: linear-gradient(45deg, #00aeef 25%, #ffffff 25%, #ffffff 50%, #00aeef 50%, #00aeef 75%, #ffffff 75%, #ffffff 100%);
}

.other-type-absense-requested {
    background-image: linear-gradient(45deg, #D4F0FD 25%, #ffffff 25%, #ffffff 50%, #D4F0FD 50%, #D4F0FD 75%, #ffffff 75%, #ffffff 100%);
}

.other-type-primary-absense {
    background-image: linear-gradient(45deg, var(--clr-primary) 25%, #ffffff 25%, #ffffff 50%, var(--clr-primary) 50%, var(--clr-primary) 75%, #ffffff 75%, #ffffff 100%);
}

.other-type-primary-absense-requested {
    background-image: linear-gradient(45deg, var(--clr-secondary) 25%, #ffffff 25%, #ffffff 50%, var(--clr-secondary) 50%, var(--clr-secondary) 75%, #ffffff 75%, #ffffff 100%);
}

.arrive-late-absense {
    background: linear-gradient(90deg, rgba(0, 174, 255, 1) 0%, rgba(255, 255, 255, 1) 60%);
}

.arrive-late-absense-requested {
    background: linear-gradient(90deg, rgba(151, 222, 255, 1) 0%, rgba(255, 255, 255, 1) 50%);
}

.arrive-late-primary-absense {
    background: linear-gradient(90deg, var(--clr-primary) 0%, rgba(255, 255, 255, 1) 60%);
}

.arrive-late-primary-absense-requested {
    background: linear-gradient(90deg, var(--clr-secondary) 0%, rgba(255, 255, 255, 1) 60%);
}

.leave-early-absense {
    background: linear-gradient(270deg, rgba(0, 174, 255, 1) 0%, rgba(255, 255, 255, 1) 60%);
}

.leave-early-absense-requested {
    background: linear-gradient(270deg, rgba(151, 222, 255, 1) 0%, rgba(255, 255, 255, 1) 50%);
}

.leave-early-primary-absense {
    background: linear-gradient(270deg, var(--clr-primary) 0%, rgba(255, 255, 255, 1) 60%);
}

.leave-early-primary-absense-requested {
    background: linear-gradient(270deg, var(--clr-secondary) 0%, rgba(255, 255, 255, 1) 60%);
}

.user-name-cell {
    padding: 5px;
}

td.current-user-name-cell {
    font-weight: bold;
    color: #fff;
    background: #FC7F03;
    border: 3px solid #9a9a9a;
    padding: 5px;
}

.sick-leave-absense {
    background-image: linear-gradient(45deg, red 25%, #ffffff 25%, #ffffff 50%, red 50%, red 75%, #ffffff 75%, #ffffff 100%);
}

.sick-leave-absense-requested {
    background-image: linear-gradient(45deg, #FDBDBE 25%, #ffffff 25%, #ffffff 50%, #FDBDBE 50%, #FDBDBE 75%, #ffffff 75%, #ffffff 100%);
}

/* NAV ICON */
#nav-icon {
    width: 45px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 200;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(2) {
    top: 12px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(3) {
    top: 24px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

#nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 29px;
    left: 8px;
}

/* NAVLIST STYLE */
.nav-list {
    display: flex;
}

.nav-list-item {
    margin-left: 5%;
    list-style: none;
    width: 280px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center
}

.login-btn {
    display: none;
}

.nav-list-item a,
.login-btn a {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

/* PAGES HEADER STYLES */
.header-pages {
    grid-column: main-start / main-end;
    display: flex;
    /* justify-content: center; */
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 0;
}

.header-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.header-title-img {
    display: none;
    border-radius: 50%;
}

.header-title-img-no-radius {
    display: none;
}

.header-title-par,
.header-sub-title {
    font-size: 2.5rem;
    width: 80%;
    margin-top: 50px;
}

.header-sub-title {
    width: 100%;
}

.header-title-span {
    font-size: 2.5rem;
    font-weight: bold;
}

.header-img {
    justify-self: center;
    align-self: center;
}

.header-img-item {
    border-radius: 50%;
}

.header-img-rect-item {
    max-width: 35vw;
    margin-left: 100px;
}

.header-img-rect-item-sm {
    display: none;
    width: 65vw;
}

/* .header-img-item-no-radius {
} */

.header-title-login {
    display: flex;
    flex-wrap: wrap;
}

.header-title-login p {
    font-size: 1.8rem;
    color: #7e7e7e;
    margin-right: 10px;
}

.header-title-login a {
    font-size: 1.8rem;
    color: #00355d;
}

.header-join-us-btn {
    margin: 80px 0 40px 0;
}

.error-label {
    font-size: 2rem;
    color: #d72828;
    margin: 0 0 30px 20px;
}

.error-field {
    border: solid 1px #d72828;
}

#alert_message,
#alert_mobile {
    display: none;
}

/* COLLAPSIBLE ELEMENTS STYLES */
.collapsible {
    margin: 140px 0;
}

.row-collapsible {
    width: 100%;
    margin: 15px 0;
    padding: 35px 50px;
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.21);
    border: solid 1px #888686;
    display: flex;
    flex-direction: column;
}

.par {
    font-size: 1.6rem;
    text-align: left;
    color: inherit;
    margin: 10px 0;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.par-align-right {
    font-size: 2rem;
    text-align: right;
    color: inherit;
    margin: 10px 0;
}

.par-align-center {
    font-size: 2rem;
    text-align: center;
    color: inherit;
    margin: 10px 0;
}

.first-ch {
    margin: 25px 0;
}

.title-li {
    font-size: 2.5rem;
    font-weight: bold;
}

.collapsible-title,
.collapsible-txt {
    margin-bottom: 70px;
}

.collapsible-txt {
    font-size: 2rem;
    color: inherit;
}

.expand-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    color: #7e7e7e;
    background: none;
    border: none;
}

.collapsible-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    font-size: 2rem;
    color: inherit;
    margin-top: 60px;
}

.collapsible-content h3 {
    margin: 60px 0 30px 0;
    color: #7e7e7e;
}

.collapsible-content h5 {
    font-size: 2rem;
}

.collapsible-content ul {
    margin: 30px 0;
}

.collapsible-list-item {
    font-size: 2.5rem;
    margin-left: 20px;
}

.nested-list-item {
    font-size: 2rem;
    list-style-type: "+ ";
}

.ol-item {
    font-size: 2rem;
}

.list-style-none {
    list-style: none;
}

.list-style-disc {
    list-style: disc;
}

hr:not([size]).horz-hr {
    width: 60%;
    border: solid 1px #778686;
    align-self: center;
}

.get-know {
    text-align: left;
    color: #778686;
    width: 100%;
}

.get-know h3 {
    color: #7e7e7e;
}

.get-know-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px 0;
}

.get-know-item-txt h4 {
    margin-bottom: 15px;
}

.collapsible-btns {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 40px 0 50px 0;
}

.underline-text {
    text-decoration: underline;
}

.award-par-title {
    margin: 50px 0 25px 0;
}

.award-link {
    color: #778686;
    font-weight: bold;
    margin-bottom: 20px;
}

/* FLAT-PICKR STYLES */
.dp-custom-wp {
    display: flex;
    justify-content: space-between;
}

.dp-custom-wp>h5 {
    padding-top: 15px;
}

.dp-custom-input {
    border: 1px solid #778686;
    box-shadow: 0 0 1px #778686;
    border-radius: 4px;
    padding: 12px;
}

.dp-custom-input[type="text"] {
    font-size: 20px;
    color: #778686;
}

.dp-custom-input:hover {
    border-color: #778686;
    box-shadow: 0 0 4px #778686;
    border-radius: 4px
}

/* FOOTER CONTAINER */
.footer {
  background-color: #e5ecf5;
  color: #0f2942;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 20px 0;
}

.footer-container {
  grid-column: main-start / main-end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: start;
}

.footer-logo {
  width: 60px;
  display: block;
}

.footer-col a {
  color: #0f2942;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col strong {
  font-weight: 600;
}

/* STYLING TEXT CONTAINERS */
.container-txt {
    margin: 0 0 50px 0;
    display: flex;
    justify-content: start;
    align-items: start;
}

.container-txt:first-child {
    margin: 50px 0;
}

.container-txt h3 {
    color: #082947;
    margin-bottom: 25px;
}

.container-txt h4,
.container-txt h5 {
    color: inherit;
}

.container-txt h5 {
    margin-top: 25px;
}

.container-txt p,
.container-txt ul {
    font-size: 1.8rem;
    color: inherit;
    margin-bottom: 25px;
}

.container-txt ul li:not(:last-child) {
    margin-bottom: 5px;
}

.container-txt p {
    margin-top: 5px;
}

.container-txt p.par-title {
    margin-bottom: 10px;
}

.container-txt ul li {
    margin-left: 20px;
}

.imprint {
    min-height: 180px;
    height: calc(100vh - 670px);
}

/* Landing Page */
.partner-logo-landing-page {
    max-width: 400px;
    margin-bottom: 25px;
}

.section-landing-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.img-lg-landing-page {
    max-width: 450px;
    margin-left: 100px;
}

.logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.logo-wrapper-img {
    margin-right: 25px;
}

/* Settings Page */
.settings-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

/* CO2 Compensation Page */
.logo-co2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.logo-co2 img {
    max-width: 300px;
    margin: 40px;
}

.logo-co2-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-co2-text {
    text-align: center;
    margin-top: 30px;
}

.table-co2 {
    border-collapse: collapse;
    font-size: 1.8rem;
    border: 1px solid #484848;
    margin: 50px 0;
}

.table-co2 th,
.table-co2 td {
    border: 1px solid #484848;
    padding: 5px 10px;
}

.co2-link {
    color: #778686;
    font-size: 1.8rem;
    font-weight: bold;
}

.save-changes-btn {
    margin: 40px 0;
    background-color: green;
}

.save-changes-btn:disabled,
.save-changes-btn[disabled] {
    opacity: 0.45;
}

.artical-label {
    margin-bottom: 10px;
}

.upload-img-btn-wrapper {
    padding: 20px 0;
}

.attached-par {
    font-weight: bold;
    padding-top: 20px;
}

/* Create article styles */
.create-update-btn:disabled,
.create-update-btn[disabled] {
    opacity: 0.45;
}

/* Articles list styles */
#articles-page {
    background-color: #f2f2f2;
}

.article-btn {
    width: auto;
    padding: 18px;
    border-radius: 10px;
    background-color: var(--clr-primary);
    color: #ffffff;
    border: none;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: all .2s ease-in-out;
}

.new-article-btn {
    margin-top: 50px;
}

.read-more-article-btn {
    align-self: flex-end;
}

.article-list-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    margin-bottom: 30px;
    max-width: 1000px;
    height: auto;
}

.article-list-item:last-child {
    margin-bottom: 100px;
}

.article-list-wrapper-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-list-img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-right: 60px;
}

.article-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.article-title {
    text-align: left;
    color: #7e7e7e;
}

.articles-list {
    margin-top: 100px;
}

.articles-list-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.article-par {
    font-size: 1.8rem;
    color: #778686;
    white-space: pre-line;
}

.article-list-content .article-par {
    margin: 25px 0;
}

.articles-list-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.articles-show-more-btn {
    margin-bottom: 80px;
}

/* View article styles */
#view_article {
    background-color: #f2f2f2;
}

.article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    height: auto;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    margin: 100px 0;
}

#article .lang-select {
    margin-left: 10px;
}

#article .sender-message,
#article .contact-form-input {
    font-weight: 500;
    cursor: auto;
}

.article-status {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: left;
    color: #7e7e7e;
}

.edit-article-btn {
    margin: 20px 0 50px 0;
}

.article-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 30px 0 40px 0;
}

.article-share-bottom {
    margin: 30px 0 0 0;
}

.article-share .article-par {
    padding: 10px 0;
}

.article-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-right: 20%;
}

.article-social-icon {
    width: 35px;
    height: auto;
    margin-left: 15px;
}

.article-header-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 40px;
}

.article-footer-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 40px;
}

/* Vue screen styles */
[v-cloak] {
    display: none;
}

/* Time Track Styles */
#time-track .nav-list-item,
#time-track .nav-content,
#time-track .header-nav-item,
#time-track .phone-num {
    display: none;
}

table {
    border-collapse: collapse;
}

tr {
    border-bottom: 1px solid #bfbfbf;
}

td {
    font-size: 1.6rem;
    text-align: left;
    color: #000;
    padding: 15px;
}

td img {
    max-width: 20px;
}

td a {
    cursor: pointer;
}

.column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.table-add-people .contact-home-input {
    margin-bottom: 0;
}

.table-add-people {
    margin: 25px 0;
}

.table-add-people tr {
    border-bottom: none;
}

.add-approver {
    display: flex;
    width: 75%;
    margin-bottom: 25px;
}

.add-approver .contact-home-input:not(:first-child),
.add-approver button {
    margin-left: 15px;
}

.input-max-w {
    max-width: 350px;
}

.filter-sorting-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}

@media screen and (max-width: 1200px) {
    .filter-sorting-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        gap: 30px;
    }
}

.filter-sorting {
    flex-direction: column;
    display: flex;
   
}

.filter-sorting:last-child {
    padding-bottom: 20px;
}
.filter-sorting-bnt {
    pointer-events: none;
    padding: 10px;
    border: none;
    font-size: 16px;
    width: 100%;
    background-color: #f1f1f1;

    &:focus,
    &:active {
        pointer-events: none;
        outline: 0;
        border: none;

    }
}

.filter-sorting-div {
    flex-basis: 50%;
}

.filter-sorting-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 50px;
    padding: 10px 38px 10px 16px;
    background: #fff url("select-arrows.svg") no-repeat right 16px center;
    background-size: 10px;
    transition: border-color .1s ease-in-out, box-shadow .1s ease-in-out;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    font-size: 16px;
}

.filter-sorting-select:hover {
    border: 1px solid #999;
}

.filter-sorting-select:focus {
    border: 1px solid #999;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2);
    outline: none;
}

.filter-sorting-select::-ms-expand {
    display: none;
}

.team-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    background-color: white;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid #000;
}


.team-desc {
    padding: 10px 15px;
}

.team-absense {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 1.4rem;
    align-items: center;
    margin-top: 10px;
}

.team-absense-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 30px;
}

.team-absense-legend {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

/* Settings Page */
#add_edit_leave_type h4 {
    margin: 0 0 30px 0
}

.settings-title h4,
#signature h4 {
    margin-top: 20px;
}

.settings-types h4 {
    margin: 50px 0 30px 0;
}

#settings h5 {
    margin-bottom: 15px;
}

.settings-types .light-blue-btn {
    margin: 0 0 20px 0;
}

#settings .contact-home {
    margin: 50px 0;
}

input[type=checkbox] {
    width: 15px;
    margin: 0 10px 0 0;
}

.btns-group {
    display: flex;
    flex-wrap: wrap;
}

.btns-group .light-blue-btn {
    margin: 0 30px 0 0;
}

.radio-types {
    display: flex;
    gap: 15px;
    padding-bottom: 12px;
}

.radio-types>div {
    display: flex;
}

.radio-types>div>input {
    margin: 3px;
}

/* User Guide Page */
.user-guide-heading {
    text-align: center;
    padding: 50px 20px;
}

.user-guide-heading ul {
    list-style: none;
}

.user-guide-heading ul li {
    font-size: 2.2rem;
    font-weight: bold;
    text-decoration: underline;
    line-height: 4.4rem;
    color: var(--clr-third);
    cursor: pointer;
}

.user-guide-heading ul li:hover {
    color: #FC7F03;
}

.user-guide-main img {
    margin: 50px 0;
}

.user-guide-heading h1 {
    color: #000;
    margin-bottom: 20px;
}

.user-guide h4 {
    color: var(--clr-third);
    margin: 0 0 30px 0;
}

.user-guide-main h2 {
    margin-bottom: 50px;
}

.user-guide-main h3 {
    color: var(--clr-third);
    margin-bottom: 30px;
    text-decoration: underline;
}

.user-guide-group {
    margin-bottom: 50px;
}

.user-guide-group ul {
    line-height: 2.6rem;
}

.user-guide-main img {
    width: 100%;
    height: auto;
}

.ug-img-lg {
    max-width: 750px;
}

.ug-img-md {
    max-width: 550px;
}

.ug-img-sm {
    max-width: 450px;
}

/* Help Panel */
.help-panel {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 360px;
    height: fit-content;
    background-color: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow:
        0px 24px 38px 3px rgb(0 0 0 / 12%),
        0px 9px 46px 8px rgb(0 0 0 / 10%),
        0px 11px 15px -7px rgb(0 0 0 / 20%);
    overflow-y: scroll;
    z-index: 1000;
}

.arrow-up-right {
    width: 20px;
    cursor: pointer;
}

.help-panel-main h5 {
    margin: 20px 0 10px 0;
}

.contact-panel .help-panel-main h5 {
    margin: 20px 0;
}

.help-panel-main ul {
    list-style: none;
}

.help-panel-main a {
    font-size: 1.6rem;
    text-decoration: underline;
    line-height: 3rem;
    color: #000;
    cursor: pointer;
}

.help-panel-main a:hover {
    color: var(--clr-primary);
}

.help-panel-contact {
    margin-top: 20px;
}

.need-help {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 25px;
    border: 1px solid #bebebe;
    box-shadow: none;
}

.need-help:focus {
    border: 1px solid var(--clr-primary);
}

.help-panel-btn {
    width: 100%;
}

.help-panel-img {
    position: fixed;
    bottom: 50px;
    right: 50px;
    border-radius: 50%;
    width: 60px;
    height: auto;
    box-shadow:
        0px 24px 38px 3px rgb(0 0 0 / 12%),
        0px 9px 46px 8px rgb(0 0 0 / 10%),
        0px 11px 15px -7px rgb(0 0 0 / 20%);
    cursor: pointer;
    z-index: 1000;
}

.log-time-img {
    position: fixed;
    bottom: 50px;
    right: 150px;
    border-radius: 50%;
    width: 60px;
    height: auto;
    box-shadow:
        0px 24px 38px 3px rgb(0 0 0 / 12%),
        0px 9px 46px 8px rgb(0 0 0 / 10%),
        0px 11px 15px -7px rgb(0 0 0 / 20%);
    cursor: pointer;
    z-index: 900;
}

/* Privacy Policy Page styles */
#privacy-policy {
    margin: 50px 0;
}

#privacy-policy h4 {
    margin-bottom: 25px;
}

#privacy-policy h5 {
    margin: 25px 0 10px 0;
}

#privacy-policy ul li {
    font-size: 1.6rem;
    text-align: left;
    color: inherit;
    margin: 5px 0 5px 20px;
}

.chart-container {
    position: relative;
    margin: 50px 0;
    height: auto;
    width: 100%;
}

.chart-container-narrow {
    position: relative;
    margin: 50px 0;
    height: auto;
    width: 100%;
    max-width: 600px
}

.chart-container-user {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.chart-container-user .chart-user:first-child {
    margin-right: 25px;
}

.chart-container-user .chart-user:last-child {
    margin-left: 25px;
}

.chart-user {
    position: relative;
    margin: 50px 0;
    height: auto;
    width: 50%;
}

.chart-user-tag {
    max-width: 66%;
}

.logged-time-report {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.logged-time-report-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.logged-time-report-item .btn-sm {
    text-align: center;
    margin: 10px 15px;
}

.item-mob {
    display: none;
}

.item-dsk {
    display: block;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-top: 30px;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 28px;
    transition: 0.3s;
    font-size: 17px;
    background-color: #f2f2f2;
    color: var(--clr-font);
    border-right: 1px solid #ccc;
}

.tab button:hover {
    background-color: var(--clr-primary);
    filter: brightness(1.1);
    color: #fff;
}

.tab button:active,
.tab button.active {
    background-color: var(--clr-primary);
    color: #fff;
}

.tabcontent {
    display: none;
    padding: 25px;
    border: 1px solid #ccc;

    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.tabcontent p {
    margin: 0 0 15px 0;
    font-size: 1.8rem;
}

.tabcontent a {
    font-size: 1.8rem;
}

.found-result {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    width: 100%;
}

.found-result-wrapper {
    display: flex;
}

.found-result-wrapper-item {
    display: flex;
}

.found-result a {
    text-decoration: none;
    color: #4d4747;
    font-weight: 600;
    position: relative;
    padding-bottom: 7px;
}

.found-result a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: var(--clr-secondary);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.found-result a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.found-result:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.tooltip img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 80px;
    background-color: #e5ca2d;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -40px;
    z-index: 1;
    font-size: 12px;
    border: 1px solid #e5ca2d;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}


/* SweetAlert modal styles */
.swal2-popup {
    width: 500px !important;
    max-width: 85vw !important;
    min-height: 250px !important;
    padding: 30px !important;
    font-size: 18px !important;
}

.swal2-title {
    font-size: 32px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.swal2-html-container {
    font-size: 20px !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

.swal2-actions {
    gap: 20px !important;
    margin-top: 25px !important;
}

.swal2-confirm, .swal2-cancel {
    font-size: 18px !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    min-width: 120px !important;
}

.swal2-icon {
    font-size: 80px !important;
    width: 80px !important;
    height: 80px !important;
    margin: 20px auto 30px !important;
}

.swal2-icon.swal2-question {
    font-size: 80px !important;
}

@media (max-width: 768px) {
    .swal2-popup {
        width: 90vw !important;
        padding: 25px !important;
    }
    
    .swal2-title {
        font-size: 24px !important;
    }
    
    .swal2-html-container {
        font-size: 16px !important;
    }
    
    .swal2-confirm, .swal2-cancel {
        font-size: 16px !important;
        padding: 12px 25px !important;
    }
}

@media screen and (max-width: 1700px) {
    .product-item {
        display: none;
    }
}

@media screen and (max-width: 1300px) {
    .chat-header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .chat-header-buttons {
        margin-left: 0;
    }
}

@media screen and (max-width: 1200px) {
    html {
        /* 1 rem = 9 px, 9/16 = 56.25% */
        font-size: 56.25%;
    }

    .phone-num img {
        width: 12px;
    }

    .nav-list-item {
        width: 230px;
    }

    .collapsible-btns {
        justify-content: space-between;
    }

    .footer-content-left div:not(:last-child) {
        margin-right: 60px;
    }

    .footer-content {
        justify-content: center;
        align-items: center;
    }

    .footer-last-item {
        text-align: center;
    }

    .footer-content-right {
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .footer-content-right p {
        text-align: center;
    }

    .img-lg-sbb {
        max-width: 400px;
        margin-left: 50px;
    }

    .chart-container-user {
        flex-direction: column;
    }

    .chart-container-user .chart-user:first-child {
        margin-right: 0;
    }

    .chart-container-user .chart-user:last-child {
        margin-left: 0;
    }

    .chart-user,
    .chart-user-tag {
        width: 100%;
        max-width: 600px;
    }
}

@media screen and (max-width: 1000px) {
    /* html {
        font-size: 50%; 
        1 rem = 8 px, 8/16 = 50%
    } */

    .row-inner {
        padding: 50px 0;
    }

    .header-main-nav-list-partners,
    .header-nav-item {
        display: none;
    }

    .nav-list-item {
        display: none;
    }

    .container-page {
        position: inherit;
        height: auto;
    }

    .login-btn {
        display: flex;
        align-items: center;
        height: 60px;
    }

    /* PAGES HEADER STYLES */
    .header-pages {
        align-items: center;
    }

    .header-title {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .header-title h2 {
        text-align: center;
        margin-bottom: 60px;
    }

    #motor-insurance .header-title h2 {
        margin-bottom: 0;
    }

    .header-title-img {
        display: block;
        width: 45vw;
        margin: 40px 0;
    }

    .header-title-img-no-radius {
        display: block;
        width: 45vw;
        margin: 40px 0;
    }

    .header-title-par,
    .header-sub-title {
        margin-top: 0;
    }

    .header-sub-title {
        text-align: center;
    }

    .header-img-item,
    .header-img-rect-item {
        display: none;
    }

    .header-img-item-no-radius {
        display: none;
    }

    .header-img-rect-item-sm {
        display: block;
    }

    .nav-dd {
        width: 85vw;
    }

    .header-btn {
        margin-bottom: 20px;
    }

    /* COLLABSIBLE ELEMENTS STYLES */
    .collapsible {
        margin: 70px 0;
    }

    .collapsible-content {
        margin-top: 40px;
    }

    .collapsible-content h3 {
        margin: 40px 0 20px 0;
    }

    .collapsible-content ul {
        margin: 20px 0;
    }

    .collapsible-btns {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .collapsible-btns .blue-btn:first-child {
        margin-bottom: 30px;
    }

    .get-know-item-txt {
        width: 70%;
    }

    /* SBB */
    .img-sm-sbb {
        margin: 40px auto;
    }

    /* Blog styles */
    #article .lang-select {
        border-radius: 10px;
    }

    .article-list-item {
        flex-direction: column;
    }

    .article-list-img {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .add-approver {
        width: 100%;
    }

    .add-employee {
        width: 65%;
    }

    .add-employee tr {
        display: flex;
        flex-direction: column;
    }

    .add-employee .btn-table {
        width: 100%;
    }

    .post-area {
        justify-content: center;
        align-items: center;
    }

    .action-btns {
        margin-bottom: 20px;
    }

    .row-main.sticky-input {
        position: inherit;
        padding: 0;
    }
}

@media screen and (max-width: 900px) {
    .chat-header div {
        flex-wrap: wrap;

    }

    .chat-header-buttons {
        margin-left: 0;
        flex-wrap: wrap; /* Wrap icon buttons to the next line */
        justify-content: center; /* Center the wrapped buttons */
    }
}

@media screen and (max-width: 800px) {
    .chat-header h1 {
        font-size: 4rem;
        padding-bottom: 20px;
    }
    
    .chat-header-buttons {
        margin-bottom: 50px;
    }
    
    .chat-header {
        margin-top: 0;
    }
    .container-page {
        grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] minmax(0, 1200px) [main-end] minmax(4%, 1fr) [full-end];
    }
}


@media screen and (max-width: 768px) {
    html {
        font-size: 50%;

        /* font-size: 43.75%; */
        /* 1 rem = 7 px, 7/16 = 43.75% */
    }

    .container {
        grid-template-rows: 100px 1fr min-content;
    }

    /* .logo-ka {
        width: 70px;
    } */

    /* NAV ICON */
    #nav-icon {
        width: 38px;
        height: 25px;
    }

    #nav-icon span {
        height: 5px;
        border-radius: 5px;
    }

    #nav-icon span:nth-child(2) {
        top: 10px;
    }

    #nav-icon span:nth-child(3) {
        top: 20px;
    }

    #nav-icon.open span:nth-child(1) {
        top: -2px;
        left: 8px;
    }

    #nav-icon.open span:nth-child(3) {
        top: 25px;
        left: 8px;
    }

    .phone-num img {
        width: 10px;
    }

    .login-btn {
        height: 45px;
    }

    /* PAGES HEADER STYLES */
    .header-title-img {
        width: 55vw;
    }

    .header-title-img-no-radius {
        width: 55vw;
    }

    .header-title-par {
        width: 100%;
    }

    /* COLLABSIBLE ELEMENTS STYLES */
    .expand-btn span:first-child {
        text-align: left;
        width: calc(100vw - 7%);
    }

    hr:not([size]).horz-hr {
        width: 80%;
    }

    .get-know-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin: 30px 0;
    }

    .get-know-item-txt:nth-of-type(1) {
        order: 2;
    }

    .get-know-item-txt:nth-of-type(2) {
        order: 1;
    }

    .get-know-item-txt {
        width: 100%;
    }

    .get-know-item img {
        width: 65px;
        height: auto;
        margin-bottom: 10px;
    }

    .imprint {
        height: 100%;
    }

    /* SBB */
    .partner-logo-sbb {
        max-width: 300px;
    }

    .add-employee {
        width: 100%;
    }

    .add-employee tr td {
        padding: 15px;
    }

    .add-approver {
        flex-direction: column;
    }

    .add-approver .contact-home-input {
        margin-bottom: 20px;
    }

    .add-approver .contact-home-input:not(:first-child),
    .add-approver button {
        margin-left: 0;
    }

    .login-logout {
        width: 100px;
        padding: 14px 8px;
        margin-left: 25px;
    }

    .chat-header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }


    .row-main.sticky-input {
        position: inherit;
        width: 100%;
        padding: 0;
    }

    .chat-header h1 {
        font-size: 4rem;
        padding-bottom: 20px;
    }

    .chat-header-buttons {
        margin-bottom: 50px;
    }

    .chat-header {
        margin-top: 0;
    }

}

@media screen and (max-width: 576px) {
    /* html {
        1 rem = 7 px, 7/16 = 43.75%
        font-size: 43.75%;

        1 rem = 6 px, 6/16 = 37.5%
        font-size: 37.5%;
    } */

    .nav-dd {
        padding: 100px 40px 20px 40px;
    }

    .container-txt p,
    .container-txt ul {
        font-size: 2.1rem;
    }

    .blue-btn:focus,
    .blue-btn,
    .light-red-btn:focus,
    .light-red-btn {
        width: 100%;
    }

    #upload_button,
    #reset_button {
        margin-top: 20px;
        margin-left: 0;
    }

    #img_display {
        width: 80%;
    }

    .light-blue-btn:focus,
    .light-blue-btn {
        width: 100%;
        margin: 0;
    }

    .light-blue-btn:not(:first-of-type) {
        margin-left: 0;
    }

    /* PAGES HEADER STYLES */
    .header-title-img {
        width: 60vw;
    }

    .header-title-img-no-radius {
        width: 60vw;
    }

    .row-collapsible {
        padding: 30px;
    }

    /* Landing Page */
    .partner-logo-landing-page {
        max-width: 100%;
    }

    /* Articles list styles */
    .article-btn {
        width: 100%;
    }

    .articles-list {
        margin-top: 40px;
    }

    .article {
        margin: 40px 0;
    }

    .btn-primary,
    .contact-home-col .btn-primary,
    .btn-secondary {
        font-size: 1.8rem;
        width: 100%;
        max-width: none;
    }

    .settings-icon {
        display: block;
    }

    .settings-link {
        display: none;
    }

    .input-max-w {
        max-width: 100%;
    }

    .btns-cal-sm {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .btns-cal-lg {
        display: none;
    }

    #img_display {
        width: 80%;
    }

    .leave-type-icon {
        display: none;
    }

    .btns-group .light-blue-btn {
        margin: 0 0 30px 0;
    }

    .help-panel {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
    }

    .help-panel-img {
        right: 7%;
    }

    .log-time-img {
        right: 25%;
    }

    .flat-pickr-wrapper {
        width: 100%;
    }

    .dp-custom-input {
        width: 100%;
    }

    .logged-time-report-item {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .logged-time-report-item .btn-sm {
        margin: 10px 0;
        width: 100%;
    }

    .table-projects {
        width: 100%;
    }

    .logo-ka {
        width: 150px;
    }

    .item-mob {
        display: block;
    }

    .item-dsk {
        display: none;
    }

    .nav-icon-circle {
        width: 30px;
    }

    .post-item.person-answer{
        width: 100%;
    }

}

@media screen and (max-width: 576px) {
    .logo-ka {
        width: 120px;
    }

    .btn-calc {
        display: block;
        margin-top: 25px;
    }

    .logo-ka {
        width: 120px;
    }

    .chat-header h1 {
        font-size: 3.5rem;
        padding-bottom: 20px;
    }

    .chat-header-buttons {
        margin-bottom: 20px;
        flex-wrap: wrap; /* Wrap icon buttons to the next line */
        justify-content: center; /* Center the wrapped buttons */
    }

    .chat-header {
        margin-top: 20px;
    }

    .post-item.person-answer{
        width: 100%;
    }

    .scroll_arrow_btn {
        width: 35px;
        height: 35px;
    }

    .house-icon-main {
        display: none;  
    } 

    .header-main-nav-list {
        justify-content: center;
    }

}

@media screen and (max-width: 479px) {
    .header-main {
        flex-direction: column;
    }

    .logo-ka {
        width: 120px;
    }

    .row-collapsible {
        padding: 20px;
    }

    .container-txt p,
    .container-txt ul {
        font-size: 2.1rem;
    }
    /* SBB */
    .partner-logo-sbb {
        max-width: 250px;
    }

    .article-share {
        justify-content: center;
    }

    .article-social-icons {
        margin-right: 5%;
    }

    .chat-header h1 {
        font-size: 3.5rem;
        padding-bottom: 20px;
    }

    .chat-header-buttons {
        margin-bottom: 30px;
    }

    .chat-header {
        margin-top: 20px;
    }

    .post-item.person-answer{
        width: 100%;
    }

    .header-main-nav {
        justify-content: center;
    }

    .header-main-nav-list {
        padding: 0;
        margin: 0;
    }

    .header-list-item {
        margin: 0;
        list-style: none;
    }

    .btn-primary,
    .contact-home-col .btn-primary,
    .btn-secondary {
        font-size: 1.8rem;
        width: 100%;
        max-width: none;
    }
}


@media screen and (max-width: 420px) {
    .header-main {
        flex-direction: column;
    }

    .logo-ka {
        width: 120px;
    }

    .chat-header h1 {
        font-size: 3rem;
        padding-bottom: 20px;
    }

    .chat-header-buttons {
        margin-bottom: 30px;
    }

    .chat-header {
        margin-top: 20px;
    }

    .post-item {
        font-size:4rem;
    }

    .post-item.person-answer {
        width: 100%;
        font-size:4rem;
    }

    .header-main-nav {
        justify-content: center;
    }

    .header-main-nav-list {
        padding: 0;
        margin: 0;
    }

    .chat-header-buttons {
        flex-wrap: wrap;
    }

    .action-btns {
        width: auto;
        gap: 10px;
    }

    .action-btns button:first-child {
        margin: 0;
    }

    .btn-primary,
    .contact-home-col .btn-primary,
    .btn-secondary {
        font-size: 1.8rem;
        width: 100%;
        max-width: none;
    }
}
