/* ============================================================
   ZMIENNE GLOBALNE
   ============================================================ */

:root {
     --light: #3e98ff;
     --normal: #0466d7;
     --dark: #0a338d;
     --grey: #b9b9b9;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

* {
     margin: 0;
     padding: 0;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     font-optical-sizing: auto;
     scroll-behavior: smooth;
}

html,
body {
     width: 100vw;
     min-height: 100vh;
     padding: 0;
     margin: 0;
     overflow-x: hidden;
     scroll-behavior: smooth;
     position: relative;
     background-color: #f2f2f2;
     font-family: "Roboto", sans-serif;
     font-size: 1vw;
     font-weight: 400;
     font-style: normal;
}


/* ============================================================
   TYPOGRAFIA
   ============================================================ */

h3 {
     font-family: "Roboto", sans-serif;
     font-size: 1.5rem;
     font-weight: 800;
     text-transform: uppercase;
     -ms-flex-item-align: center;
     align-self: center;
     text-align: center;
}

h3 > span {
     color: var(--normal);
}

h4 {
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 600;
     -ms-flex-item-align: center;
     align-self: center;
     text-align: center;
     letter-spacing: 1px;
}

h5 {
     font-size: 0.8rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     padding: 0;
     margin: 0 0 3vh 0;
     color: var(--dark);
}

p {
     font-family: "Roboto", sans-serif;
     font-size: 1rem;
     font-weight: 400;
     line-height: 175%;
     padding-bottom: 2vh;
}

p:last-child {
     padding-bottom: 0;
}

label {
     color: var(--grey);
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     padding-left: 0.5vw;
     margin-bottom: 0.35vh;
}

label i {
     color: #ffb2b2;
}


/* ============================================================
   FORMULARZE — INPUTY, SELECT, TEXTAREA
   ============================================================ */

input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
input[type="password"] {
     width: 100%;
     padding: 0.5vh 0.5vw;
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 400;
     font-style: normal;
     color: #000000;
}

select {
     width: 100%;
     padding: 0.5vh 0.5vw;
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 400;
     font-style: normal;
     color: #000000;
}

@-moz-document url-prefix() {

     select,
     select option {
          background-color: white !important;
          border: 1px solid #aaaaaa;
          border-radius: 0 !important;
     }
}

textarea {
     width: 100%;
     padding: 0.5vh 0.5vw;
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 400;
     font-style: normal;
     color: #000000;
     resize: vertical;
}

/* Kontener z ikoną edycji */
.input_wrapper {
     width: 100%;
     position: relative;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
}

.input_wrapper input {
     padding-right: 2rem;
     width: 100%;
}

.input_wrapper i {
     position: absolute;
     right: 0.5rem;
     cursor: pointer;
}

.input_wrapper .edit-icon {
     position: absolute;
     right: 1vw;
     top: 50%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     pointer-events: all !important;
     cursor: pointer;
     line-height: 1;
     color: green;
}

.input_wrapper .edit-icon:hover {
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Textarea — dynamiczne dodawanie */
.textarea-container {
     margin-bottom: 15px;
}

.textarea-wrapper {
     margin-bottom: 10px;
     position: relative;
}

.textarea-wrapper:last-child {
     margin-bottom: 0;
}

.textarea-wrapper[data-first="true"] .remove-textarea {
     display: none;
}

/* Załączniki */
.attachments-container {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.fileWrapper {
     width: 100%;
     border: 1px solid grey;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     gap: 10px;
}

.fileWrapper:not([data-first]) {
     margin-top: 0.35vh;
}

/* Ukryty input pliku */
.customFileInput {
     position: absolute;
     width: 0.1px;
     height: 0.1px;
     opacity: 0;
     overflow: hidden;
     z-index: -1;
}

.fileName {
     display: inline-block;
     margin-left: 12px;
     font-size: 0.8rem;
     color: #000000;
     font-style: normal;
     max-width: 200px;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     vertical-align: middle;
}

/* Checkboxy */
.checkbox-group {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     gap: 20px;
     margin-top: 10px;
}

.checkbox-label {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     cursor: pointer;
     gap: 8px;
}

.checkbox-label input[type="checkbox"] {
     width: 18px;
     height: 18px;
     cursor: pointer;
}

.checkbox-label span {
     font-size: 0.7rem;
     color: #333333;
}


/* ============================================================
   PRZYCISKI — WSPÓLNE WZORCE
   ============================================================ */

/* Przycisk submit */
button[type="submit"] {
     border: none;
     outline: none;
     background-color: green;
     color: #ffffff;
     padding: 1.25vh 1.5vw;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.6rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     cursor: pointer;
}

button[type="submit"]:hover {
     background-color: #6ab76a;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Przyciski potwierdzające (teal) */
.modal_line_confirm button[type="button"],
.add-textarea {
     background-color: #00b3b3;
     color: #ffffff;
     border: none;
     outline: none;
     font-family: "Roboto", sans-serif;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     cursor: pointer;
}

.modal_line_confirm button[type="button"] {
     -ms-flex-item-align: start;
     align-self: flex-start;
     padding: 1vh 1.5vw;
     margin: 0;
     font-size: 0.55rem;
}

.add-textarea {
     padding: 10px 20px;
     font-size: 0.65rem;
}

.modal_line_confirm button[type="button"]:hover,
.add-textarea:hover {
     background-color: #5ee0e0;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Przyciski moderate (teal, obramowanie) */
.modal_line_confirm_moderate button[type="button"] {
     background-color: #ffffff;
     color: #00b3b3;
     padding: 0.5vh 0.75vw;
     margin: 0;
     border: 2px solid #00b3b3;
     outline: none;
     font-family: "Roboto", sans-serif;
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     cursor: pointer;
}

.modal_line_confirm_moderate button[type="button"]:hover {
     background-color: #00b3b3;
     color: #ffffff;
     -webkit-transition: 0.3s ease;
     transition: 0.3s ease;
}

/* Przycisk usunięcia usługi */
.remove-service {
     width: 8vw;
     background-color: #ffffff;
     color: #ff3333;
     padding: 0.5vh 0.75vw;
     margin: 0;
     border: 2px solid #ff3333;
     outline: none;
     font-family: "Roboto", sans-serif;
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     cursor: pointer;
}

.remove-service:hover {
     background-color: #ff3333;
     color: #ffffff;
     -webkit-transition: 0.3s ease;
     transition: 0.3s ease;
}

/* Przycisk usunięcia tekstarea */
.remove-textarea {
     background-color: #ffffff;
     color: #ff3333;
     padding: 0.5vh 0.75vw;
     margin: 1vh 0 0 0;
     border: 2px solid #ff3333;
     outline: none;
     font-family: "Roboto", sans-serif;
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     cursor: pointer;
}

.remove-textarea:hover {
     background-color: #ff3333;
     color: #ffffff;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Przycisk usunięcia załącznika */
.remove-attachment {
     background-color: #ff3333;
     color: white;
     border: none;
     padding: 2px;
     cursor: pointer;
     -ms-flex-negative: 0;
     flex-shrink: 0;
}

.remove-attachment:hover {
     background-color: #ff6d6d;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

.remove-attachment i {
     font-size: 0.65rem;
}

/* Przycisk niestandardowego pliku */
.customFileBtn {
     background-color: #00b9a6;
     color: white;
     border: none;
     outline: none;
     padding: 1vh 0.75vw;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.55rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     cursor: pointer;
     display: -webkit-inline-box;
     display: -ms-inline-flexbox;
     display: inline-flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     gap: 8px;
     text-align: center;
     vertical-align: middle;
}

.customFileBtn:hover {
     background-color: #40e0d0;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

.customFileInput:focus + .customFileBtn {
     outline: 2px solid #40e0d0;
     outline-offset: 2px;
     background-color: #2dc4b6;
}

/* Przyciski weryfikacji / oferty / P24 (zielone) */
.verify_yes,
.offer_yes,
.p24 {
     border: none;
     outline: none;
     background-color: green;
     color: #ffffff;
     padding: 1vh 0.75vw;
     margin-top: 1.5vh;
     font-family: "Roboto", sans-serif;
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
}

.verify_yes:hover,
.offer_yes:hover,
.p24:hover {
     background-color: limegreen;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Przycisk RODO */
#rodo_confirm_btn {
     border: none;
     outline: none;
     background-color: green;
     color: #ffffff;
     padding: 1.25vh 1.5vw;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.6rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     cursor: pointer;
}

#rodo_confirm_btn:hover {
     background-color: #6ab76a;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}


/* ============================================================
   LAYOUT — KONTENER OGÓLNY
   ============================================================ */

.container {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     background-color: transparent;
}

.underline {
     width: 6vw;
     height: 2vh;
     background-color: transparent;
     -ms-flex-item-align: center;
     align-self: center;
     text-align: center;
     border-bottom: 4px solid var(--normal);
     margin-bottom: 8vh;
}

.hidden {
     display: none !important;
}


/* ============================================================
   PANEL ADMINISTRACYJNY — NAGŁÓWKI
   ============================================================ */

/* Górny pasek logo + wylogowanie */
header.top {
     margin: 3vh 10vw 0 10vw;
     width: 80vw;
     height: 5vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
}

.logo {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     color: var(--normal);
}

.logo i.fa-logo-gemini {
     font-size: 1.5rem;
}

.logo span {
     font-weight: 800;
     text-transform: uppercase;
     margin-left: 0.1vw;
}

.logo i.fa-gears {
     font-size: 0.8rem;
     margin-left: 0.5vw;
}

i.fa-gears.active {
     color: orange !important;
}

.logout button {
     border: none;
     outline: none;
     color: var(--normal);
     background-color: transparent;
     padding: 0;
     margin: 0;
     font-size: 1.25rem;
     cursor: pointer;
}

.logout button:hover {
     color: var(--light);
     -webkit-transform: scale(1.2);
     transform: scale(1.2);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Podtytuł z wykresami i grafikami */
header.sub {
     margin: 0 10vw;
     width: 80vw;
     height: 8vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     font-size: 1.25rem;
     font-weight: 600;
}

header.sub button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0 0 0 1vw;
     font-size: 1.25rem;
     cursor: pointer;
}

header.sub button:hover {
     opacity: 0.5;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Wspólne style dla .one i .two (wykresy słupkowe) */
header.sub .one,
header.sub .two {
     width: 31vw;
     height: 8vh;
     position: relative;
     background-image: linear-gradient(#e4e4e4 1px, transparent 1px);
     background-size: 100% 10%;
     background-position: 0 0;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: end;
     -ms-flex-align: end;
     align-items: flex-end;
     gap: 1px;
     border-bottom: 1px solid #e4e4e4;
}

header.sub .one .pole,
header.sub .two .pole {
     width: 5px;
     background-color: var(--dark);
}

header.sub .one .pole:hover,
header.sub .two .pole:hover {
     background-color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

header.sub .one span,
header.sub .two span {
     position: absolute;
     top: 0.25vh;
     left: 0.25vw;
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--light);
}

/* Wspólne style dla .three i .four (miniatury) */
header.sub .three,
header.sub .four {
     position: relative;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     border: 2px solid transparent;
}

header.sub .three {
     width: calc(12vw + 4px);
     height: calc(8vh + 4px);
}

header.sub .four {
     width: calc(4vw + 4px);
     height: calc(8vh + 4px);
}

header.sub .three:hover,
header.sub .four:hover {
     border: 2px solid rgba(0, 41, 134, 0.5);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

header.sub .three img,
header.sub .four img {
     width: 100%;
     height: 100%;
     -o-object-fit: cover;
     object-fit: cover;
}

header.sub .three span,
header.sub .four span {
     position: absolute;
     top: 0.25vh;
     left: 0.25vw;
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--light);
}


/* ============================================================
   PANEL ADMINISTRACYJNY — NAWIGACJA
   ============================================================ */

/* Nawigacja zewnętrzna */
nav.btn {
     margin: 0 10vw;
     width: 80vw;
     height: 5vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
}

nav.btn span {
     gap: 0.5vw;
}

nav.btn button.outer_link {
     border: none;
     outline: none;
     background-color: var(--dark);
     color: #ffffff;
     padding: 1vh 0.75vw;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
}

nav.btn button.outer_link:hover {
     background-color: var(--normal);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Nawigacja wewnętrzna */
nav.btn2 {
     margin: 0 10vw;
     width: 80vw;
     height: 5vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
}

nav.btn2 span {
     gap: 0.5vw;
}

nav.btn2 button.inner_link {
     border: none;
     outline: none;
     background-color: var(--normal);
     color: #ffffff;
     padding: 1vh 0.75vw;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
}

nav.btn2 button.inner_link:hover {
     background-color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

nav.btn2 button.spy_link {
     border: none;
     outline: none;
     color: var(--normal);
     background-color: transparent;
     padding: 0;
     margin: 0;
     margin-left: 1vw;
     font-size: 1.25rem;
     cursor: pointer;
}

nav.btn2 button.spy_link:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Linki główne */
nav.links {
     margin: 0 10vw;
     padding-left: 0.75vw;
     padding-top: 1vh;
     width: 80vw;
     height: 6vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
}

nav.links .fa-envelope {
     background-color: transparent;
     color: var(--normal);
     padding: 1vh 0;
     margin: 0;
     font-size: 1.15rem;
     font-weight: 600;
}

nav.links .fa-envelope:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

nav.links button {
     border: none;
     outline: none;
     background-color: transparent;
     color: #a2a2a2;
     padding: 1vh 2vw 1vh 0;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.95rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
}

nav.links button.active {
     color: var(--light);
}

nav.links button:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

nav.links .underway {
     background-color: transparent;
     color: #a2a2a2;
     padding: 1vh 0;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.95rem;
     font-weight: 600;
     text-transform: uppercase;
}

nav.links button.order {
     border: none;
     outline: none;
     background-color: var(--normal);
     color: #ffffff;
     padding: 1vh 0.75vw;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
     -ms-flex-item-align: end;
     align-self: flex-end;
}

nav.links button.order:hover {
     background-color: var(--light);
     color: #ffffff;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Podlinki */
nav.sublinks {
     display: none;
     margin: 0 10vw;
     padding-left: 0.75vw;
     padding-bottom: 1vh;
     width: 80vw;
     height: 3vh;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
}

nav.sublinks.active {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
}

nav.sublinks button {
     border: none;
     outline: none;
     background-color: transparent;
     color: #a2a2a2;
     padding: 1vh 1vw 1vh 0;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.7rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
}

nav.sublinks button.active {
     color: var(--light);
}

nav.sublinks button:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}


/* ============================================================
   PANEL ADMINISTRACYJNY — GŁÓWNA TREŚĆ (main)
   ============================================================ */

main.quasar {
     display: none;
     margin: 0 10vw;
     width: 80vw;
     height: 58vh;
}

main.quantum {
     display: none;
     margin: 0 10vw;
     width: 80vw;
     height: 71vh;
}

main.active {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

/* Nagłówek tabeli */
.table_header {
     width: 100%;
     height: 4vh;
     padding: 1vh 1vw;
     margin-top: 1vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     background-color: var(--grey);
     color: #ffffff;
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
}

/* Komunikaty braku danych */
.table_alert_quasar {
     width: 100%;
     height: 58vh;
     margin: 1vh 0;
     padding: 5vh 1.5vw;
     font-size: 1rem;
     font-weight: 600;
     font-style: italic;
     background-color: #ffffff;
     color: var(--normal);
}

.table_alert_quantum {
     width: 100%;
     height: 69vh;
     margin: 1vh 0;
     padding: 5vh 1.5vw;
     font-size: 1rem;
     font-weight: 600;
     font-style: italic;
     background-color: #ffffff;
     color: var(--normal);
}

/* Zawartość tabeli — wspólne style przewijania */
.table_content_quasar,
.table_content_quantum {
     width: 100%;
     margin: 1vh 0;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     overflow-y: auto;
     scrollbar-width: none;
     -ms-overflow-style: none;
}

.table_content_quasar::-webkit-scrollbar,
.table_content_quantum::-webkit-scrollbar {
     display: none;
}

.table_content_quasar {
     height: 54vh;
}

.table_content_quantum {
     height: 65vh;
}

/* Widok profilu */
.table_content_quantum_profile {
     width: 100%;
     height: 69vh;
     margin: 1vh 0;
     font-size: 0.8rem;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: start;
     -ms-flex-align: start;
     align-items: flex-start;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
}

.box_third {
     height: 100%;
     background-color: #ffffff;
     padding: 4vh 1.5vw;
}

/* Wiersz tabeli */
.table_line {
     width: 100%;
     padding: 2vh 1vw;
     background-color: #ffffff;
     font-size: 0.8rem;
     margin-bottom: 1vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: horizontal;
     -webkit-box-direction: normal;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-box-align: start;
     -ms-flex-align: start;
     align-items: flex-start;
}

.table_line:last-child {
     margin-bottom: 0;
}

.table_line i:hover {
     opacity: 0.5;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Kafelki */
.tile_table {
     width: 100%;
     display: grid;
     grid-template-columns: repeat(10, 1fr);
     gap: 4vh 0.5vw;
     padding: 2vh 0;
     background-color: #ffffff;
}

.tile_item {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: center;
}

.doc_file_icon button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0 0 0.5vh 0;
     cursor: pointer;
}

.doc_file_icon i {
     font-size: 1.15rem;
}

.doc_file_icon i:hover {
     opacity: 0.5;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

.doc_file_name {
     font-size: 0.65rem;
}

.zeroing_up {
     width: 100%;
     background-color: var(--grey);
     color: #ffffff;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     padding: 1vh 0.5vw;
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
}

.zeroing_down {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     padding-top: 0.5vh;
}

.zeroing_line {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     padding: 1vh 0.5vw;
     border-bottom: 1px solid var(--grey);
}

.online_up {
     width: 100%;
     background-color: var(--grey);
     color: #ffffff;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     padding: 1vh 0.5vw;
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
}

.online_down {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     padding-top: 0.5vh;
}

.online_line {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     padding: 1vh 0.5vw;
     border-bottom: 1px solid var(--grey);
}

.icon-grey {
     color: var(--grey);
}

.icon-red {
     color: red;
}

button.btn-icon {
     background: none;
     border: none;
     padding: 0;
     cursor: pointer;
     font-size: 1.4rem;
}

button.btn-icon:hover {
     background: none;
     -webkit-box-shadow: none;
     box-shadow: none;
     -webkit-transform: none;
     transform: none;
     -webkit-filter: none;
     filter: none;
}

button.btn-icon.btn-active i {
     color: red;
}

button.btn-icon.btn-active i:hover {
     color: #ff8282;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

button.btn-icon.btn-disabled {
     cursor: not-allowed;
}

button.btn-icon.btn-disabled i {
     color: var(--grey);
}



/* ============================================================
   PANEL ADMINISTRACYJNY — KOLUMNY TABELI
   ============================================================ */

/* --- Tabela zamówień (col_01–col_11) --- */

.col_01 {
     width: 7%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.col_02 {
     width: 4%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: center;
}

.col_02 span.nr_id {
     font-size: 0.65rem;
     margin-top: 0.35vh;
}

.col_03 {
     width: 3%;
     text-align: center;
}

.col_03 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     font-size: 1rem;
     cursor: pointer;
}

.col_05 {
     width: 7%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     gap: 0.25vw;
}

.col_05 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     color: var(--normal);
     font-size: 1rem;
     cursor: pointer;
}

.col_06 {
     width: 13%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.kod_klienta {
     margin-top: 1vh;
     font-size: 0.65rem;
}

.col_07 {
     width: 24%;
     padding-right: 10px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.languages {
     font-size: 0.65rem;
     margin-bottom: 1vh;
}

.authors {
     font-size: 0.65rem;
}

.filename {
     margin-top: 1vh;
     font-size: 0.65rem;
}

.executors {
     margin-top: 1vh;
     font-size: 0.65rem;
}

.col_08 {
     width: 15%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: left;
     gap: 1vh;
}

.col_08 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     cursor: pointer;
}

.col_08 i {
     font-size: 1.15rem;
}

.col_09 {
     width: 6%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: right;
}

.cena {
     margin-top: 1vh;
     font-size: 0.65rem;
}

.objetosc {
     margin-top: 1vh;
     font-size: 0.65rem;
}

.col_10 {
     width: 7%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     gap: 0.25vw;
}

.col_10 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     font-size: 1rem;
     cursor: pointer;
}

.col_10 i.szary {
     color: darkgrey;
}

.col_10 i.kolor {
     color: var(--normal);
}

.col_11 {
     width: 14%;
     padding-left: 1%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: right;
}

.col_11 span {
     -ms-flex-item-align: start;
     align-self: flex-start;
}

.col_11 span.alert_cancel {
     font-weight: 700;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     margin-left: auto;
}

.ocena_termin {
     margin-top: 1vh;
     font-size: 0.65rem;
}

.ocena_objetosc {
     font-size: 0.65rem;
}

.ocena_jakosc {
     font-size: 0.65rem;
}

.ocena_plagiaryzm {
     font-size: 0.65rem;
}

/* --- Tabela klientów (col_21–col_29) --- */

.col_21 {
     width: 2%;
     font-size: 0.8rem;
}

.col_21a {
     width: 2%;
     font-size: 0.8rem;
}

.col_22 {
     width: 3%;
     text-align: center;
}

.col_22 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     color: var(--normal);
     font-size: 1rem;
     cursor: pointer;
}

.col_23 {
     width: 13%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     padding-right: 15px;
}

.rodo {
     margin-top: 1vh;
}

.col_24 {
     width: 29%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.katedra {
     margin-top: 1vh;
}

.ulica {
     margin-top: 1vh;
}

.nip {
     margin-top: 1vh;
}

.col_25 {
     width: 3%;
     text-align: center;
}

.col_25 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     color: var(--normal);
     font-size: 1rem;
     cursor: pointer;
}

.col_26 {
     width: 22%;
}

.col_27 {
     width: 3%;
     text-align: center;
}

.col_27 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     color: var(--normal);
     font-size: 1rem;
     cursor: pointer;
}

.col_28 {
     width: 8%;
}

.col_29 {
     width: 16%;
     text-align: right;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.wyrazy {
     margin-top: 1vh;
}

/* --- Tabela finansów (col_41–col_47) --- */

.col_41 {
     width: 7%;
}

.col_42 {
     width: 10%;
}

.col_43 {
     width: 17%;
}

.col_44 {
     width: 20%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.col_45 {
     width: 30%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.col_46 {
     width: 9%;
     text-align: right;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.total {
     margin-top: 1vh;
     font-size: 0.65rem;
}

.col_47 {
     width: 7%;
     text-align: right;
}

/* --- Tabela plików (col_61–col_66) --- */

.col_61 {
     width: 7%;
}

.col_62 {
     width: 22%;
     padding-right: 15px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.document {
     font-size: 0.65rem;
}

.col_63 {
     width: 33%;
     padding-right: 10px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.col_64 {
     width: 14%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     gap: 1vh;
}

.col_64 button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     cursor: pointer;
}

.col_64 i {
     font-size: 1.15rem;
}

.col_65 {
     width: 8%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: right;
}

.col_66 {
     width: 16%;
     padding-left: 3%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: right;
}

.col_66 span {
     -ms-flex-item-align: start;
     align-self: flex-start;
}

/* --- Tabela (col_71–col_75) --- */

.col_71 {
     width: 15%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.col_72 {
     width: 15%;
     text-align: center;
     font-weight: 600;
}

.col_73 {
     width: 40%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.col_74 {
     width: 15%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: right;
}

.col_75 {
     width: 15%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: right;
}

.col_81 {
     width: 60%;
}

.col_82 {
     width: 20%;
     text-align: right;
     padding-right: 3%;
}

.col_83 {
     width: 5%;
     text-align: center;
}

.col_84 {
     width: 5%;
     text-align: center;
}

.col_85 {
     width: 10%;
     text-align: right;
}

.col_91 {
     width: 10%;
}

.col_92 {
     width: 60%;
}

.col_93 {
     width: 30%;
     text-align: right;
}

.col_101 {
     width: 10%;
}

.col_101 img {
     width: 65%;
}

.col_102 {
     width: 43%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
}

.col_102 span {
     margin-bottom: 1vh;
}

.col_103 {
     width: 7%;
     text-align: right;
}

.col_103 button {
     border: none;
     outline: none;
     background-color: transparent;
     color: var(--normal);
     padding: 0;
     margin: 0;
     font-size: 1.15rem;
     cursor: pointer;
}

.col_104 {
     width: 40%;
     padding-left: 15px;
}


/* ============================================================
   PANEL ADMINISTRACYJNY — IKONY PLIKÓW
   ============================================================ */

i.zrodlowy {
     color: grey;
}

i.poprawki {
     color: #015d01;
}

i.finalny {
     color: limegreen;
}

i.certyfikat {
     color: dodgerblue;
}

i.zewnetrzny {
     color: #038e9a;
}

i.raport {
     color: rebeccapurple;
}

i.faktura {
     color: orangered;
}

i.korygujaca {
     color: hotpink;
}

i.godziny {
     color: maroon;
}

i.oferta {
     color: darkgoldenrod;
}

i.protokol {
     color: saddlebrown;
}

i.umowa {
     color: #000000;
}


/* ============================================================
   PANEL ADMINISTRACYJNY — ALERTY / STANY
   ============================================================ */

.pay_alert {
     font-size: 0.75rem;
     font-weight: 700;
     color: red;
     text-align: right;
}

.warning {
     font-size: 0.65rem;
     font-weight: 500;
     color: red;
     background-color: yellow;
     text-align: center;
     padding: 1vh 2vw;
     margin: 1vh 0;
}

.warning_invoice {
     width: 100%;
     height: 6vh;
     font-size: 0.65rem;
     font-weight: 500;
     text-transform: uppercase;
     color: red;
}

.add-attachment {
     margin-top: 1vh;
}


/* ============================================================
   PANEL ADMINISTRACYJNY — STOPKA
   ============================================================ */

footer.panel {
     margin: 0 10vw 3vh 10vw;
     width: 80vw;
     height: 4vh;
     padding: 0 1vw;
     font-size: 0.7rem;
     font-weight: 500;
     background-color: #000000;
     color: #ffffff;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
}

footer.panel span {
     width: 33.33%;
}

footer.panel span:nth-child(1) {
     text-align: left;
}

footer.panel span:nth-child(2) {
     text-align: center;
     font-size: 0.55rem;
     font-weight: 600;
     letter-spacing: 2px;
}

footer.panel span:nth-child(3) {
     text-align: right;
}

footer.panel button {
     border: none;
     outline: none;
     background-color: transparent;
     color: var(--normal);
     font-family: "Roboto", sans-serif;
     font-size: 0.7rem;
     font-weight: 700;
     cursor: pointer;
}

footer.panel button:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}


/* ============================================================
   PANEL ADMINISTRACYJNY — PRZYCISK "DO GÓRY"
   ============================================================ */

.totop {
     position: fixed;
     right: 4vw;
     bottom: 12vh;
     background-color: transparent;
     border: none;
     outline: none;
     padding: 0;
     margin: 0;
     font-size: 1.75rem;
     color: var(--normal);
     z-index: 4;
     cursor: pointer;
     opacity: 0;
     -webkit-transform: translateY(20px);
     transform: translateY(20px);
     -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
     transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
     transition: opacity 0.5s ease, transform 0.5s ease;
     transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.totop.show {
     opacity: 1;
     -webkit-transform: translateY(0);
     transform: translateY(0);
     -webkit-transition: 0.3s ease-in-out;
     transition: 0.3s ease-in-out;
}

.totop:hover {
     color: var(--light);
}


/* ============================================================
   MODALE
   ============================================================ */

.modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.85);
     display: none;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     z-index: 1000;
     -webkit-backdrop-filter: blur(6px);
     backdrop-filter: blur(6px);
     pointer-events: auto;
}

.modal-overlay.active {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-animation: fadeIn 0.3s ease;
     animation: fadeIn 0.3s ease;
}

.modal {
     background: white;
     -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     max-height: 90vh;
     position: absolute;
     top: 5vh;
     -webkit-animation: slideUp 0.3s ease;
     animation: slideUp 0.3s ease;
     pointer-events: auto;
}

/* Szerokości modali */
.narrow {
     width: 20vw;
     left: 40vw;
}

.medium {
     width: 30vw;
     left: 35vw;
}

.wide {
     width: 40vw;
     left: 30vw;
}

.superwide {
     width: -webkit-fit-content;
     width: -moz-fit-content;
     width: fit-content;
     max-width: 98vw;
     min-width: 300px;
     text-align: center;
     padding: 20px;
     font-size: 0.75rem;
     font-weight: 500;
}

.country-name {
     font-weight: 500;
}

.country-count {
     font-weight: 700;
     color: var(--normal);
}

/* Animacje modali */
@-webkit-keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@-webkit-keyframes slideUp {
     from {
          -webkit-transform: translateY(30px);
          transform: translateY(30px);
          opacity: 0;
     }

     to {
          -webkit-transform: translateY(0);
          transform: translateY(0);
          opacity: 1;
     }
}

@keyframes slideUp {
     from {
          -webkit-transform: translateY(30px);
          transform: translateY(30px);
          opacity: 0;
     }

     to {
          -webkit-transform: translateY(0);
          transform: translateY(0);
          opacity: 1;
     }
}

/* Sekcje modalu */
.modal_header {
     width: 100%;
     height: 5vh;
     padding: 0 2vw;
     background-color: var(--dark);
     color: #ffffff;
     font-size: 0.6rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
}

.modal_subheader {
     width: 100%;
     height: 7vh;
     padding-top: 1vh;
     color: #000000;
     font-size: 0.5rem;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     gap: 4px;
}

.modal_subheader .option {
     width: 12.5%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     gap: 8px;
}

.modal_subheader .option input[type="radio"] {
     margin: 0;
     padding: 0;
     width: 18px;
     height: 18px;
     cursor: pointer;
}

.modal_subheader .option label {
     margin: 0;
     padding: 0;
     text-align: center;
     width: 100%;
     color: #000000;
}

.modal_body {
     width: 100%;
     max-height: 78vh;
     padding: 2vh 2vw;
     background-color: #ffffff;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     font-size: 0.8rem;
     overflow-y: auto;
}

.client_search {
     padding-bottom: 1vh;
     margin-bottom: 1vh;
     border-bottom: 2px solid var(--normal);
}

/* Wiersze i pola modalu */
.modal_line {
     width: 100%;
     margin-bottom: 1vh;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: end;
     -ms-flex-align: end;
     align-items: flex-end;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     gap: 1vw;
}

.modal_line_part {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-box-pack: end;
     -ms-flex-pack: end;
     justify-content: flex-end;
     -webkit-box-flex: 1;
     -ms-flex: 1;
     flex: 1;
     min-width: 0;
     position: relative;
}

.modal_line_submit {
     width: 100%;
     margin: 3vh 0 1vh 0;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
}

.modal_line_confirm {
     width: 100%;
     margin: 1vh 0;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
}

.modal_line_confirm_moderate {
     width: 100%;
     margin: 0;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: end;
     -ms-flex-pack: end;
     justify-content: flex-end;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
}

.messages_sort {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: start;
     -ms-flex-pack: start;
     justify-content: flex-start;
}

.messages_sort button {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     color: var(--grey);
     cursor: pointer;
}

.messages_sort button:hover {
     color: var(--light);
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}

.message_item {
     padding-top: 2vh;
     padding-bottom: 2vh;
     border-bottom: 1px solid var(--grey);
}

.message_item:last-child {
     padding-bottom: 0;
     border-bottom: none;
}

.message_line_up {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     font-size: 0.7rem;
     padding-bottom: 1vh;
}

.message_line_down {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: start;
     -ms-flex-align: start;
     align-items: flex-start;
     -webkit-box-pack: start;
     -ms-flex-pack: start;
     justify-content: flex-start;
     font-size: 0.8rem;
}


/* ============================================================
   STRONA PUBLICZNA — HERO (vignette)
   ============================================================ */

.vignette {
     width: 100vw;
     height: 100vh;
     background: url("graph/guy_blue.jpg");
     background-size: auto 100%;
     background-position: right center;
     background-repeat: no-repeat;
     position: relative;
}

.vignette h1 {
     font-size: 2rem;
     text-transform: uppercase;
     position: absolute;
     left: 10vw;
     bottom: 58vh;
     color: #181893;
}

.vignette h2 {
     font-size: 1.25rem;
     position: absolute;
     left: 10vw;
     bottom: 45vh;
     line-height: 150%;
     color: #626262;
}

.vignette > button.order {
     position: absolute;
     left: 10vw;
     bottom: 25vh;
     border: none;
     outline: none;
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 700;
     letter-spacing: 1px;
     word-spacing: 3px;
     text-transform: uppercase;
     padding: 10px 60px;
     background-color: var(--normal);
     color: #ffffff;
     cursor: pointer;
}

.vignette > button.order:hover {
     background-color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}


/* ============================================================
   STRONA PUBLICZNA — GŁÓWNY NAGŁÓWEK
   ============================================================ */

header.main {
     width: 100%;
     height: 12vh;
     position: absolute;
     top: 0;
     left: 0;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     padding: 4vh 10vw;
     background-color: transparent;
}

header.main > .left {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
}

header.main > .middle {
     width: 60%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: start;
     -ms-flex-pack: start;
     justify-content: flex-start;
     gap: 3vw;
}

header.main > .middle > button.upper_menu {
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     margin: 0;
     font-family: "Roboto", sans-serif;
     font-size: 0.95rem;
     font-weight: 800;
     letter-spacing: 1px;
     word-spacing: 3px;
     text-transform: uppercase;
     color: #707070;
     cursor: pointer;
}

header.main > .middle > button.upper_menu:hover {
     color: var(--normal);
     -webkit-transition: 0.3s all ease;
     transition: 0.3s all ease;
}

/* Dropdown */
.dropdown {
     position: relative;
     display: inline-block;
}

.dropdown-btn {
     background-color: transparent;
     font-size: 1rem;
     font-weight: 700;
     letter-spacing: 1px;
     word-spacing: 3px;
     color: #707070;
     padding: 0;
     border: none;
     outline: none;
     cursor: pointer;
}

.dropdown-btn:hover {
     color: var(--normal);
     -webkit-transition: 0.3s all ease;
     transition: 0.3s all ease;
}

.dropdown-list {
     list-style-type: none;
     margin: 5px 0 0 -14px;
     padding: 0;
     background-color: #f8f8f8;
     border: none;
     outline: none;
     max-height: 0;
     overflow: hidden;
     -webkit-transition: max-height 0.6s ease;
     transition: max-height 0.6s ease;
     position: absolute;
     left: 0;
     z-index: 1;
}

.dropdown:hover .dropdown-list {
     max-height: 90vh;
}

.dropdown-list li {
     padding: 4px 16px;
     cursor: pointer;
}

/* Przycisk języka */
button.lang {
     width: 100%;
     font-family: "Roboto", sans-serif;
     font-size: 0.7rem;
     font-weight: 600;
     font-style: normal;
     text-transform: none;
     color: #626262;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: start;
     -ms-flex-pack: start;
     justify-content: flex-start;
     border: none;
     outline: none;
     background-color: transparent;
     padding: 0;
     cursor: pointer;
}

button.lang:hover {
     color: var(--normal);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

button.lang svg {
     height: 0.9rem;
     margin-right: 20px;
}

/* Przycisk klienta */
button.client {
     border: none;
     outline: none;
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 800;
     letter-spacing: 1px;
     word-spacing: 3px;
     text-transform: uppercase;
     padding: 10px 60px;
     background-color: var(--normal);
     color: #ffffff;
     cursor: pointer;
}

button.client:hover {
     background-color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

/* Link "Zapomniałem hasła" */
a.forgot_link {
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 600;
     font-style: italic;
     color: var(--normal);
     cursor: pointer;
     text-decoration: none;
}

a.forgot_link:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}


/* ============================================================
   STRONA PUBLICZNA — SEKCJE
   ============================================================ */

/* O nas */
section.about {
     width: 100vw;
     background-color: #ffffff;
     padding: 4vh 10vw;
}

section.about > .container > .box {
     width: 100%;
     overflow: auto;
     margin-bottom: 6vh;
     background-color: transparent;
}

section.about > .container > .box:last-child {
     margin-bottom: 0;
}

section.about > .container > .box > .float_image_left {
     float: left;
     margin: 0 40px 20px 0;
     width: 45%;
     height: auto;
     border: none;
     outline: none;
     display: block;
}

section.about > .container > .box > .float_image_right {
     float: right;
     margin: 0 0 20px 40px;
     width: 30%;
     height: auto;
     border: none;
     outline: none;
     display: block;
}

/* Partnerzy */
section.partners {
     width: 100%;
     background-color: #ffffff;
     padding: 10vh 10vw;
}

section.partners > .container {
     overflow: hidden;
     position: relative;
}

section.partners > .container > .marquee {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     gap: 80px;
     white-space: nowrap;
}

.marquee::before {
     content: attr(data-content);
     display: inline-block;
     white-space: nowrap;
}

section.partners > .container > .marquee > .icon {
     height: 80px;
     width: auto;
}

/* Usługi */
section.services {
     width: 100vw;
     background-color: #f0f0f0;
     padding: 4vh 10vw;
}

section.services > .container > .box {
     display: grid;
     gap: 1vh 1.3vw;
     grid-template-columns: repeat(auto-fit, minmax(12.25vw, 1fr));
     max-width: calc(6 * 12.25vw + 5 * 1.3vw);
}

section.services > .container > .box > .item {
     width: 12.25vw;
     border-radius: 5px;
     background-color: #ffffff;
}

section.services > .container > .box > .item > img {
     width: 100%;
     height: 12.25vw;
     -o-object-fit: cover;
     object-fit: cover;
     border: none;
     outline: none;
     display: block;
     -webkit-filter: sepia(1) saturate(5) hue-rotate(182deg) brightness(1.2);
     filter: sepia(1) saturate(5) hue-rotate(182deg) brightness(1.2);
}

section.services > .container > .box > .item > .title {
     width: 100%;
     height: 12vh;
     color: #ffffff;
     background-color: var(--dark);
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
}

section.services > .container > .box > .item > .essence {
     width: 100%;
     padding: 25px;
}

section.services > .container > .box > .item > .essence > p {
     font-family: "Roboto", sans-serif;
     font-size: 0.8rem;
     font-weight: 500;
     line-height: 180%;
     padding-bottom: 2vh;
}

section.services > .container > .box > .item > .essence > p:last-child {
     padding-bottom: 0;
}

/* Cennik */
section.prices {
     width: 100vw;
     background-color: #ffffff;
     padding: 4vh 10vw;
}

section.prices > .container > .box {
     width: 30vw;
     margin: auto;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     background-color: transparent;
}

.simple_line {
     width: 15vw;
     background-color: transparent;
     margin-left: 7.5vw;
     margin-bottom: 1vh;
}

.simple_line label {
     color: var(--grey);
     font-size: 0.5rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     word-spacing: 2px;
     padding-left: 0.5vw;
     margin-bottom: 0.35vh;
}

button.btn-calc {
     width: 10vw;
     border: none;
     outline: none;
     background-color: var(--normal);
     color: #ffffff;
     padding: 1vh 0.75vw;
     margin: 1vh 0 1vh 10vw;
     font-family: "Roboto", sans-serif;
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
}

button.btn-calc:hover {
     background-color: var(--light);
     color: #ffffff;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

.summary {
     width: 100%;
     font-family: "Roboto", sans-serif;
     font-size: 1rem;
     font-weight: 500;
     color: #000000;
     text-align: center;
}

/* Ikony */
section.icons {
     width: 100vw;
     background-color: var(--gry);
     padding: 4vh 10vw;
}

section.icons > .container > .box {
     width: 80vw;
     margin: 6vh auto;
     background-color: transparent;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: space-evenly;
     -ms-flex-pack: space-evenly;
     justify-content: space-evenly;
}

button.linky {
     background-color: transparent;
     padding: 0;
     margin: 0;
     border: none;
     cursor: pointer;
}

button.linky svg {
     height: 30px;
     fill: #aaaaaa;
}

button.linky svg:hover {
     fill: var(--light);
     -webkit-transition: 0.3s all;
     transition: 0.3s all;
}


/* ============================================================
   STRONA PUBLICZNA — ARTYKUŁ (ciemne tło)
   ============================================================ */

article {
     width: 100vw;
     padding: 4vh 10vw;
     position: relative;
     overflow: hidden;
}

article::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 200%;
     background-color: rgba(10, 10, 10, 0.95);
     z-index: 1;
     pointer-events: none;
}

.rotated_image {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100%;
     height: 200%;
     -o-object-fit: cover;
     object-fit: cover;
     -webkit-transform: translate(-50%, -50%) rotate(10deg);
     transform: translate(-50%, -50%) rotate(10deg);
     -webkit-transform-origin: center;
     transform-origin: center;
     z-index: 0;
}

article > .container > .box {
     width: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: start;
     -ms-flex-align: start;
     align-items: flex-start;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     z-index: 2;
}

article > .container > .box h5 {
     font-size: 0.85rem;
     color: var(--normal);
}

article > .container > .box > .left {
     display: -webkit-inline-box;
     display: -ms-inline-flexbox;
     display: inline-flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
}

article > .container > .box > .left > svg {
     height: 26px;
     fill: var(--normal);
     margin-right: 12px;
     display: inline-block;
     vertical-align: middle;
}

article > .container > .box > .left > h6 {
     font-family: "Roboto", sans-serif;
     font-size: 22px;
     font-weight: 800;
     text-transform: uppercase;
     color: var(--normal);
     margin: 0;
     padding: 0;
     line-height: 1;
     display: inline-block;
     vertical-align: middle;
     -webkit-transform: translateY(1px);
     transform: translateY(1px);
}

article > .container > .box ul {
     list-style-type: none;
     padding-left: 0;
     font-family: "Roboto", sans-serif;
     font-size: 16px;
     font-weight: 300;
     letter-spacing: 1px;
     word-spacing: 3px;
     color: #ffffff;
}

article > .container > .box ul li {
     position: relative;
     margin-bottom: 3vh;
}

article > .container > .box ul button {
     font-family: "Roboto", sans-serif;
     font-size: 16px;
     font-weight: 300;
     text-transform: none;
     letter-spacing: 1px;
     word-spacing: 3px;
     color: #ffffff;
     background-color: transparent;
     padding: 0;
     margin: 0;
     border: none;
     outline: none;
     cursor: pointer;
}

article > .container > .box ul button:hover {
     color: var(--ter);
     -webkit-transition: 0.3s all;
     transition: 0.3s all;
}

article .middle svg {
     height: 16px;
     fill: var(--normal);
}


/* ============================================================
   STRONA PUBLICZNA — STOPKA
   ============================================================ */

footer.main {
     width: 100vw;
     background-color: #000000;
     color: #ffffff;
     padding: 4vh 10vw;
     font-size: 0.7rem;
     font-weight: 500;
}

footer.main .box {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
}

footer.main button {
     border: none;
     outline: none;
     background-color: transparent;
     color: var(--normal);
     font-family: "Roboto", sans-serif;
     font-size: 0.7rem;
     font-weight: 700;
     cursor: pointer;
}

footer.main button:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

footer.main span {
     width: 33.33%;
}

footer.main span:nth-child(1) {
     text-align: left;
}

footer.main span:nth-child(2) {
     text-align: center;
     font-size: 0.55rem;
     font-weight: 600;
     letter-spacing: 2px;
}

footer.main span:nth-child(3) {
     text-align: right;
}


/* ============================================================
   BANER COOKIES
   ============================================================ */

.moj_baner {
     display: none;
     position: fixed;
     bottom: 8vh;
     left: 25vw;
     width: 50vw;
     background: #1a1a1a;
     color: #ffffff;
     padding: 4vh 2vw;
     z-index: 9999999;
     text-align: center;
     border: none;
}

.moj_baner p {
     font-family: "Roboto", sans-serif;
     font-size: 0.85rem;
     line-height: 1.2;
}

.moj_baner a {
     color: var(--normal);
     font-weight: 500;
     text-decoration: none;
}

.moj_baner a:hover {
     color: var(--light);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

.akceptuj_btn,
.odrzuc_btn {
     border: none;
     outline: none;
     color: #ffffff;
     padding: 1vh 0.75vw;
     margin: 0 1vw;
     font-family: "Roboto", sans-serif;
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
     cursor: pointer;
}

.akceptuj_btn {
     background-color: green;
}

.akceptuj_btn:hover {
     background-color: #07bc07;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}

.odrzuc_btn {
     background-color: darkred;
}

.odrzuc_btn:hover {
     background-color: #c32f2f;
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}


/* ============================================================
   REGULAMIN / WARUNKI
   ============================================================ */

.terms {
     width: 100%;
     padding: 2vh 20vw 4vh 20vw;
     font-family: "Roboto", sans-serif;
     font-size: 1rem;
     font-weight: 400;
     line-height: 180%;
     background-color: #ffffff;
     color: #000000;
}

.terms h6 {
     font-family: "Roboto", sans-serif;
     font-size: 1.1rem;
     font-weight: 700;
     color: #000000;
     margin: 0 0 2vh 0;
     padding: 0;
}

ol.aaa {
     list-style-type: decimal;
     list-style-position: inside;
     text-indent: -40px;
}

ol.aaa > li {
     margin-left: 40px;
     margin-bottom: 10px;
}

ol.bbb {
     list-style-type: lower-roman;
     list-style-position: inside;
}

ol.ccc {
     list-style-type: lower-latin;
     list-style-position: inside;
}

ol.bbb > li,
ol.ccc > li {
     margin-left: 60px;
     text-indent: -40px;
}

.mobile {
     display: none !important;
}

@media (max-width: 768px) {

     .desktop,
     footer.panel {
          display: none;
     }

     * {
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
     }

     .mobile {
          display: block !important;
     }

     .quasar_mobile {
          width: 100vw;
          height: 100vh;
     }

     .quantum_mobile {
          width: 100vw;
          height: 100vh;
     }

     .main_mobile {
          width: 100vw;
          font-size: 4rem;
     }

     .mobile_header {
          width: 100vw;
          height: 8vh;
          padding: 0 4vw;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
     }

     .mobile_header i {
          font-size: 5rem;
          color: var(--normal);
     }

     .mobile_header span {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
     }

     .mobile_header span span {
          font-size: 4.25rem;
          font-weight: 600;
          text-transform: uppercase;
          color: var(--normal);
          margin-left: 1vw;
     }

     .mobile_header button {
          border: none;
          outline: none;
          background-color: transparent;
          color: var(--normal);
     }

     .mobile_header button i {
          font-size: 7rem;
     }

     .mobile_menu {
          width: 100vw;
          height: 9vh;
          padding: 1vh 4vw;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          font-size: 5rem;
          font-weight: 600;
     }

     .quasar_mobile .mobile_button {
          width: 28vw;
          height: 7vh;
          border: none;
          outline: none;
          background-color: var(--normal);
          color: #ffffff;
          font-family: "Roboto", sans-serif;
          font-size: 3rem;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
     }

     .quantum_mobile .mobile_button {
          width: 28vw;
          height: 7vh;
          border: none;
          outline: none;
          color: var(--normal);
          font-size: 7rem;
     }

     .mobile_content {
          width: 100vw;
          height: 83vh;
          padding: 4vw;
          overflow-y: auto;
     }

     .mobile_content2 {
          width: 100vw;
          height: 65vh;
          padding: 4vw;
          overflow-y: auto;
     }

     .mobile_box {
          width: 100%;
          background-color: #ffffff;
          padding: 4vw;
          margin-bottom: 4vw;
     }

     .mobile_box:last-child {
          margin-bottom: 0;
     }

     .mobile_box_1 {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
     }

     .mobile_badge {
          width: 12vw;
          height: 12vw;
          color: #ffffff;
          background-color: var(--normal);
          font-size: 5rem;
          font-weight: 600;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
     }

     .mobile_box_1 span {
          font-size: 5rem;
          font-weight: 600;
     }

     .mobile_box_2 {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          font-size: 5rem;
          font-weight: 600;
          padding: 2vh 0;
     }

     .mobile_box_3 {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          font-size: 6rem;
          font-weight: 600;
          padding: 2vh 0;
     }

     .mobile_box_4 {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
     }

     .mobile_line {
          width: 100%;
          background-color: #ffffff;
          padding: 3vw 2vw;
          margin-bottom: 1.5vh;
          font-size: 4rem;
          font-weight: 500;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
     }

     .mobile_line:last-child {
          margin-bottom: 0;
     }

     .mobile_order {
          width: 70%;
     }

     .mobile_value {
          width: 30%;
          text-align: right;
     }

     .main_mobile_vignette {
          width: 100%;
          height: 100vh;
          overflow: hidden;
          position: relative;
     }

     .main_mobile_header {
          width: 100%;
          height: 12vh;
          position: absolute;
          top: 0;
          left: 0;
          padding: 0 10vw;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
     }

     .main_mobile_header .logo {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
     }

     .main_mobile_header .logo i {
          font-size: 7rem;
          color: var(--normal);
     }

     .main_mobile_header .logo span {
          font-size: 6rem;
          color: var(--normal);
     }

     .main_mobile_header > .dropdown > button {
          border: none;
          outline: none;
          padding: 0;
          margin: 0;
          background-color: transparent;
          color: var(--normal);
          font-size: 5rem;
     }

     .dropdown-list {
          list-style-type: none;
          margin: 0;
          padding: 0;
          background-color: #f8f8f8;
          border: none;
          outline: none;
          max-height: 0;
          overflow: hidden;
          -webkit-transition: max-height 0.6s ease;
          transition: max-height 0.6s ease;
          position: absolute;
          left: -18vw;
          z-index: 1;
     }

     .dropdown:hover .dropdown-list {
          max-height: 90vh;
     }

     .dropdown-list > li {
          padding: 4px 16px;
          cursor: pointer;
     }

     .dropdown-list > li > button {
          background-color: transparent;
          color: var(--normal);
     }

     .dropdown-list > li > button > svg {
          height: 5vw;
     }

     .main_mobile_header button {
          border: none;
          outline: none;
          background-color: var(--normal);
          color: #ffffff;
          font-family: "Roboto", sans-serif;
          font-size: 3rem;
          font-weight: 700;
          text-transform: uppercase;
          text-align: center;
          letter-spacing: 1px;
          padding: 1vh 4vw;
     }

     .main_mobile_vignette > img {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
          object-fit: cover;
          -o-object-position: 79% center;
          object-position: 79% center;
     }



     .main_mobile_vignette h1 {
          margin: 0;
          padding: 0;
          font-size: 7rem;
          font-weight: 700;
          text-transform: uppercase;
          color: var(--dark);
          position: absolute;
          top: 40vh;
          left: 10vw;
     }

     .main_mobile_vignette h2 {
          margin: 0;
          padding: 0;
          font-size: 4rem;
          font-weight: 600;
          text-transform: uppercase;
          line-height: 150%;
          color: #626262;
          position: absolute;
          top: 60vh;
          left: 10vw;
     }
}
