@import './index.css';

@font-face {
    font-family: Verdana;
    src: url('../../fonts/Verdana.ttf');
}

:root {
    --clr-primary: #059293;
    --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;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

.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: Verdana;
    /* 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;
}

h1, h2, h3, h4, h5, h6, p, label, input, div, span, strong {
    font-family: inherit;
}

.logo-tt {
    width: 100px;
    padding: 20px 0;
}

.settings-icon {
    display: none;
    margin: 0 25px;
}

.bg-road {
    background: url("../images/road.jpg");
}

.lang-select {
    font-family: inherit;
    font-size: 1.6rem;
    outline: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    background-color: var(--clr-primary);
    border-radius: 0.6rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    text-align-last: center;
    padding: 7px 8px;
}

.lang-wrapper {
    position: relative;
}

.contact-home-input,
.contact-home-textarea {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 15px;
}

.dropdown-lang {
    position: absolute;
    top: 1;
    right: -1.2px;
    z-index: 20;
    background-color: #ffffff;
    box-shadow: 0 6px 6px 0 rgb(0 0 0 / 35%);
    border-radius: 0.6rem;
    display: none;
    margin: 10px 0 0 -4px;
}

.blog-list-item {
    color: var(--clr-primary);
     text-decoration: none;
}

#blog_posts_list {
    padding: 20px 0;
}

.post-section-title {
    font-size: 36px;
    margin: 20px 0;
    font-weight: 600;
    text-align: left;
}

.post-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.post-item:hover {
    background-color: #f9f9f9;
}

.post-title {
    font-size: 26px;
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #222;
}

.post-meta {
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
}

.post-list-image {
    margin: 15px 0;
}

.post-list-image img {
    max-width: 50%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .post-list-image img {
        max-width: 100%;
    }
}

.post-preview {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.read-more {
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    margin: 20px 0;
    background-color: var(--clr-primary);
    text-align: center;
    display: inline-block;
    font-size: 12px;
    transition: background-color 0.2s ease-in-out, transform 0.15s ease-in-out;
    border-radius: 5px;            
    border: none;
}

.read-more :hover {
    background-color: #047a7b;
    transform: translateY(-2px);
    color: #ffffff;
}

.load-more-container {
    text-align: center;
    margin: 30px 0;
}

.load-more-button {
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.load-more-button:hover {
    background-color: #004c99;
}

.back-to-list-link {
    font-size: 12px;
    display: inline-block;
    padding: 12px 24px;
    margin: 20px 0;
    background-color: var(--clr-primary);
    color: #ffffff;
    text-decoration: none; 
    border-radius: 5px;            
    border: none;
    font-weight: 500; 
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.15s ease-in-out;
}

.back-to-list-link:hover {
    background-color: #047a7b;
    transform: translateY(-2px);
    color: #ffffff;
}


#blog_post_view {
    padding: 20px 0;
}

.post-title {
    font-size: 36px;
    /* Adjusted top margin slightly if needed, or keep as is */
    margin: 0 0 15px 0; /* Removed top margin as link provides spacing */
    font-weight: 600;
    color: #222;
    line-height: 1.2;
}

.post-subtitle {
    color: #444;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.post-meta {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    border-bottom: 1px solid #eee; /* Restore border here */
    padding-bottom: 15px; /* Restore padding */
}

.post-image {
    margin: 25px 0;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.post-content {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

/* ... (rest of the post-content styles remain the same) ... */

.post-content h1 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}

.post-content h2 {
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 26px;
    font-weight: 600;
}

.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content a {
    color: #0066cc; /* Keep existing content link style */
    text-decoration: none;
    border-bottom: 1px solid #0066cc;
    transition: border-bottom 0.2s;
}

.post-content a:hover {
    border-bottom: 2px solid #0066cc;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 6px;
}

.post-content pre {
    background-color: #f6f8fa;
    padding: 18px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 16px;
    margin: 20px 0;
    border: 1px solid #e1e4e8;
}

.post-content code {
    background-color: #f6f8fa;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 90%;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}

.post-content blockquote {
    border-left: 4px solid #ddd;
    padding: 0 0 0 18px;
    margin: 25px 0;
    color: #555;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 8px;
}

.dropdown-lang-item {
    font-family: inherit;
    text-align: center;
    list-style: none;
    width: 100%;
    font-size: 1.6rem;
    padding: 7px 8px;
}

.dropdown-lang-item:hover,
.dropdown-lang-item:hover > a {
    background-color: var(--clr-primary);
    color: #ffffff;
    border-radius: 0.6rem;
    cursor: pointer;
}


.light-blue-btn:focus,
.light-blue-btn {
    padding: 12px 25px;
    border-radius: 5px;
    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;
    transition: all .2s ease-in-out;   
}

.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;
}

/* Buttons Styling */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-secondary,
.btn-secondary:focus,
.btn-secondary:active {
    height: auto;
    border: 2px solid var(--clr-primary);
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    padding: 16px 8px;
    transition: all .2s ease-in-out;
}

.btn-primary,
.btn-secondary {
    font-size: 1.6rem;
    width: 250px;
}

.contact-home-col .btn-primary {
    font-size: 1.6rem;
    width: 300px;
}

.blog-home-col h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
    color: var(--clr-primary);
}

.blog-home-col {
    font-size: 1.6rem;
    width: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    align-items: center;
}

.file-upload-container {
    width: 100%;
}


.btn-primary,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--clr-primary);
    color: #ffffff;
}

.btn-secondary,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #ffffff;
    color: var(--clr-primary);
}

.btn-secondary:active {
    box-shadow: none;
}

.btn-primary:hover {
    /* background-color: #ffffff;
    color: var(--clr-primary); */

    /* box-shadow: 
        0px 18px 28px 2px rgb(0 0 0 / 12%),
        0px 5px 25px 4px rgb(0 0 0 / 10%),
        0px 7px 10px -5px rgb(0 0 0 / 20%); */

    transform: scale(1.02);
    box-shadow: 0 3px 6px 1px rgb(0 0 0 / 30%);
}

.btn-secondary:hover {
    /* background-color: var(--clr-primary);
    color: #ffffff; */

    /* 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%); */

    transform: scale(1.02);
    box-shadow: 0 3px 6px 1px rgb(0 0 0 / 30%);
}

.about .btn-primary {
    margin-bottom: 15px;
}

.btn-calc {
    display: none;
}
/* !Buttons Styling */

.light-red-btn:focus,
.light-red-btn {
    padding: 12px 25px;
    border-radius: 5px;
    background-color: #C85C5E;
    color: #ffffff;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}

#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 {
    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: 10px;
    background-color: #f2f2f2;
    border: none;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    transition: all .2s ease-in-out;
    display: inline-block;
}

.btn-table:hover {
    filter: brightness(.9);
}

.btns-wrp-sm {
    margin: 15px 0;
}

.btn-sm {
    font-size: 1.8rem;
    text-decoration: none;
    color: #778686;
    background-color: #f2f2f2;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.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: 4rem;
    font-weight: bold;
    color: #082947;
}

h2 {
    font-size: 3.5rem;
    font-weight: bold;
}

h3 {
    font-size: 3rem;
    font-weight: bold;
}

h4 {
    font-size: 2.5rem;
    font-weight: bold;
}

h5 {
    font-size: 2rem;
    font-weight: bold;
}

h6 {
    font-size: 1.8rem;
    font-weight: bold;
}

.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: 120px 1fr minmax(200px, 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];
    grid-template-rows: repeat(2, auto);
    min-height: calc(100vh - 330px);
}

.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;
}

.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);
}

@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;
}

.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 {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-main-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--clr-primary);
}

.lang-list-item {
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--clr-primary-btn);
}

.header-list-item {
    margin-left: 45px;
    list-style: none;
}

.header-list-item a,
.dropdown-lang-item a {
    font-family: inherit;
    font-size: 1.8rem;
    color: #000;
    text-decoration: none;
    font-weight: 300;
}

.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;
}

.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: var(--clr-primary);
    color: #ffffff;
}

.footer-content {
    grid-column: main-start / main-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

.footer-last-item {
    flex: 0 0 100%;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 30px 0;
}

.footer-content-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-content-left div:not(:last-child) {
    margin-right: 50px;
}

.footer-content-left li {
    list-style-type: none;
    margin: 12px 0;
    font-size: 1.6rem;
}

.footer-content-left a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
}

.footer-content-left ul li:first-child {
    font-size: 1.8rem;
    font-weight: bold;
}

.footer-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer-content-right p {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 12px 0;
}

.footer-content-right-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content-right-icons a:last-child {
    margin-left: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}

.footer-contact-img {
    height: 25px;
    margin-right: 10px;
}

.ft-ct-sp {
    margin-bottom: 2px;
}

/* STYLING TEXT CONTAINERS */
.container-txt {
    margin: 0 0 50px 0;
}

.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;
}

/* 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: 2rem;
    text-align: left;
    color: #000;
    padding: 15px;
}

td img {
    max-width: 30px;
}

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;
}

.team-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background-color: var(--clr-primary);
    padding: 10px 15px;
    cursor: pointer;
}

.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: 5px;
    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: 5px;
    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;
}

@media screen and (max-width: 1700px) {
    .product-item {
        display: none;
    }
}

@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;
    }

    .dropdown-lang {
        margin: 10px 0 0 -6px;
    }

    .header-main-nav-list-partners,
    .header-nav-item {
        display: none;
    }
    
    .nav-list-item {
        display: none;
    }

    .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%;
    }
}

@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-tt {
        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;
    }
}

@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%;
    } */

    .header-list-item {
        margin-left: 33px;
    }

    .nav-dd {
        padding: 100px 40px 20px 40px;
    }

    .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%;
    }

    .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%;
    }
}

@media screen and (max-width: 576px) {
    .btn-calc {
        display: block;
        margin-top: 25px;
    }
}

@media screen and (max-width: 479px) { 
    /* .light-blue-btn:focus,
    .light-blue-btn {
        padding: 18px 20px 18px 20px;
    } */

    .row-collapsible {
        padding: 20px;
    }

    /* SBB */
    .partner-logo-sbb {
        max-width: 250px;
    }

    .article-share {
        justify-content: center;
    }

    .article-social-icons {
        margin-right: 5%;
    }
}
