/* BASIC */
@charset "UTF-8";

:root {
/*  --primary-color: linear-gradient(90deg, rgb(235, 235, 235) 5%, rgb(239, 235, 235) 20%, rgb(199, 196, 196) 40%, rgb(199, 196, 196) 60%, rgb(239, 235, 235) 80%, rgb(235, 235, 235) 95%);*/
  --primary-color: #1b1d1d;
	--fontColor: #a78412;
}

/* ez a pici segéd a képernyő (box) méretének a kiírására szolgál*/
.vw {
  font-size: 2rem;
  color: #ffff00;
  background-color: rgba(0, 0, 0, 0.62);
  padding: 1rem;
  border-bottom-left-radius: 10rem;
  border-top-left-radius: 10rem;
  font-weight: bold;
  position: absolute;
  z-index: 4;
  top: 12rem;
}
.vh {
  font-size: 2rem;
  color: #00ffa7;
  background-color: rgba(0, 0, 0, 0.62);
  padding: 1rem;
  border-bottom-left-radius: 30rem;
  border-bottom-right-radius: 30rem;
  font-weight: bold;
  position: absolute;
  z-index: 4;
  left: 7.5rem;
  top: 12rem;
}
/* ez a pici segéd a képernyő (box) méretének a kiírására szolgál*/


/* szöveg kijelölést tiltja */
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

/* input mező nyilak rejtése */
    /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
    /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* VÉGE input mező nyilak rejtése */


::placeholder {
  color: rgba(56, 56, 56, 0.25);
  font-weight: bold;
  /*  background-color: #f0f0f0;*/
}
html {
  font-size: 15px;
/*  background: linear-gradient(to right, #696969, #b4c1bf, #b4c1bf, #696969);*/
	background: var(--primary-color);
}
body {
  /*      background-color: aliceblue;*/
  font-family: 'Oswald', sans-serif;
  width: 100%;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	color: var(--fontColor);
	font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
  /*  max-width: 106.66rem;*/
  /*  margin: 0 auto;*/
  /*  padding: 0.5rem;*/
}
h1 {
/*  font-size: clamp(2rem, 3vw, 3rem);*/
	font-size: 4rem;
  font-weight: bold;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: bold;
}
h3 {
/*  font-size: clamp(1.3rem, 3vw, 2rem);*/
  font-weight: bold;
	font-size: 2rem;
}
h4 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: bold;
}
h5 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  letter-spacing: clamp(0.1rem, 1vw, 0.5rem);
  /*  padding-left: 1.25rem;*/
}
h6 {
  font-size: clamp(1.3rem, 3vw, 2.3rem);
}
p, li {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  padding-top: 0.3rem;
}
b {
  font-weight: bold;
}
ul {
  list-style-type: disc;
  list-style-position: inside;
  list-style-image: none;
  padding-left: 1.25rem;
}
ul ul {
  list-style-type: circle;
  list-style-position: inside;
  list-style-image: none;
  padding-left: 1.25rem;
}
ul ul ul {
  list-style-type: square;
  list-style-position: inside;
  list-style-image: none;
  padding-left: 1.25rem;
}
/*
ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1vw;
  font-weight: 800;
}
*/


.indie-flower-regular {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}


/* Alapértelmezett stílusok a listaelemekhez */
ol ul {
/*    font-size: 16px; /* Az alapértelmezett betűméret beállítása */
    line-height: 1.5; /* A sorok közötti távolság szabályozása */
    margin-left: 1rem; /* A lista bal oldali behúzása */
    counter-reset: list-counter; /* A lista számlálója */
}

ol li, ul li {
    font-size: inherit; /* Az ol lista elemei öröklik az ol elem betűméretét */
    line-height: inherit; /* Az ol listaelemek öröklik a sorok közötti távolságot */
    counter-increment: list-counter; /* Minden listaelem növeli a számlálót */
}

/* A számok színe és formázása */
ol li::before {
    content: counter(list-counter) ". "; /* A szám hozzáadása a listaelemhez */
/*    color: red;  A számok színe  */
    font-weight: bold; /* A számok kiemelése */
    margin-right: 10px; /* A szám és a szöveg közötti távolság */
}

hr {
  /*  border: 1px solid red;*/
	/*  border: 1.5px solid;*/
  /*  border: 2px dashed #ceff00;*/
  /*  border: 1px dotted red;*/
  /*  border: 10px solid red;*/
  border-radius: 25px;
	display: block; /* Biztosítja, hogy blokk szintű elem maradjon */
	width: 100%; /* Szélesség 100% */
	border: 0; /* Eltávolítja a default vonalat */
	border-top: 1.5px solid; /* Hozzáadja a kívánt vonalat */

}
a {
  text-decoration: none;
  /*  color: #4848a5;*/
  color: rgb(0, 0, 0);
}
a:hover {
  text-decoration: none;
  /*  color: rgb(90, 98, 94);*/
  /*  font-weight: bold;*/
  /*  font-size: clamp(0.3rem, 2vw, 1.5rem);*/
}
input, select, textarea {
/*  border: none;*/
  /*  border-color: rgba(240, 248, 255, 0);*/
  /*  border-color: rgba(255, 255, 255, 0);*/
    border-radius: 25px;
  /*  font-size: clamp(1rem, 2vw, 1.2rem);*/
  /*  font-size: 1.2rem;*/
  font-size: 1rem;
  padding: 0.2rem;
  /*  font-family: 'Caveat', cursive;*/
  margin-top: 0.5rem;
  background-color: rgba(0, 255, 255, 0);
  border-bottom: 2px solid rgb(255, 255, 255);
  color: aliceblue;
}
input:focus, select:focus, textarea:focus, .list_name input:focus {
  outline: none;
  border: none;
  /*  background-color: #e6e6e6;*/
  background-color: #b7b7b7;
  color: black;
  /*  border-bottom: 2px solid grey;*/
  /*  border-radius: 25px;*/
}
button {
/*    all: unset; /* Ez eltávolítja az összes alapértelmezett stílust */
    background: none; /* Nincs háttérszín */
    color: inherit; /* Örökli a szülőelem szöveg színét */
    border: none; /* Nincs szegély */
    padding: 0; /* Nincs belső térköz */
    font: inherit; /* Örökli a szülő fontját */
}
.empty {
  margin-top: 1rem;
}
.empty2 {
	height: 5rem;
}



.centerImage {
  min-width: 300px;   /*A kép legfeljebb 300px széles lehet */
  max-width: 90%;       /* A rendelkezésre álló helyet kitölti */
  height: auto;      /* A magasság automatikusan arányos marad */
  border-radius: 10px;
}

.box {
	max-width: 200px;  /* A kép legfeljebb 300px széles lehet  */
  cursor: pointer;
}

.txtCenter {
	text-align: center;
}


    /* TELJES KÉPERNYŐT kitöltő overlay */
    #popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;           /* Teljes szélesség */
      height: 100vh;          /* Teljes magasság */
      background: rgba(0, 0, 0, 0.5); /* Átlátszó fekete háttér */
/*      display: none;           Alapból rejtve */
      
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1;          /* Mindig felülre kerüljön */
    }

    #popup-box {
/*      background: white;*/
			background: var(--primary-color);
      padding: 20px;
      border-radius: 10px;
      min-width: 300px;
      min-height: 150px;
			width: 90%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .close-btn {
      margin-top: 20px;
      padding: 6px 12px;
      background: crimson;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

/* TEXTAREA Flexibilis "txta" */
.txta {
  /*	background-color: #7e7e46;*/
  /*  width: 300px;*/
  width: min(100%, 300px);
  /*  max-width: 300px;*/
  min-height: 5px;
  /*  border-radius: 15px;*/
  /*  font-family: Arial, sans-serif;*/
  /*  font-size: 16px;*/
  overflow: hidden;
  line-height: 1;
}
summary {
  cursor: pointer;
  width: 40%;
  background-color: aliceblue;
  font-size: 1.3rem;
}
details p {
  color: aliceblue;
}
/* VÉGE TEXTAREA Flexibilis "txta" */

/* EGYEDI TEXTAREA SZERKESZTHETŐ */
.editor-container {
    display: flex;
    flex-direction: column;  /* Alapértelmezett vertikális elrendezés */
    width: 100%;
    max-width: 100rem;  /* Max szélesség, így nem nő a konténer túl nagyra */
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;  /* A padding és a border ne befolyásolja a szélességet */
}
.toolbar {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;  /* A gombok több sorra törhetnek, ha szükséges */
    gap: 10px;  /* A gombok közötti távolság */
}
button {
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
}
.editor {
    border: 1px solid #000000;
    min-height: 20rem;
    padding: 10px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    resize: none;  /* Lehetővé teszi, hogy a felhasználó ne méretezze túl a szerkesztőt */
    width: 100%;
    box-sizing: border-box;  /* A padding ne befolyásolja a szélességet */
		background-color: #e0e0e0;
}
textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-family: Arial, sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;  /* Ne legyen reszponzív, maradjon fix méretű */
}
#colorPalette {
    display: flex;
    flex-wrap: wrap;  /* A színválasztó gombok több sorra törhetnek, ha szükséges */
    gap: 10px;
}
.colorOption {
    width: 20px;
    height: 15px;
    border: none;
		border-radius: 100%;
    cursor: pointer;
}
#textColor {
    margin-top: 20px;
}
/* VÉGE EGYEDI TEXTAREA SZERKESZTHETŐ */


/* INPUT MÉRETEK */
.wi_1 {
  width: 1rem;
}
.wi_2 {
  width: 2rem;
}
.wi_3 {
  width: 3rem;
}
.wi_4 {
  width: 4rem;
}
.wi_6 {
  width: 6rem;
}
.wi_8 {
  width: 8rem;
}
.wi_10 {
  width: 10rem;
}
.wi_11 {
  width: 11rem;
}
.wi_12 {
  width: 12rem;
}
.wi_14 {
  width: 14rem;
}
.wi_16 {
  width: 16rem;
}
.wi_18 {
  width: 18rem;
}
.wi_20 {
  width: 20rem;
}
.wi_22 {
  width: 22rem;
}
/* VÉGE INPUT MÉRETEK */


/* MÉRETEK */ 
.min_wi_2 {
	min-width: 2rem;
}
.min_wi_4 {
	min-width: 4rem;
}
.min_wi_6 {
	min-width: 6rem;
}
.min_wi_8 {
	min-width: 8rem;
}
.min_wi_10 {
	min-width: 10rem;
}
.min_wi_12 {
	min-width: 12rem;
}

.min_wi_14 {
	min-width: 14rem;
}

.max_wi_1 {
	max-width: 1rem;
}
.max_wi_2 {
	max-width: 2rem;
}
.max_wi_3 {
	max-width: 3rem;
}
.max_wi_4 {
	max-width: 4rem;
}
.max_wi_5 {
	max-width: 5rem;
}
.max_wi_6 {
	max-width: 6rem;
}
.max_wi_8 {
	max-width: 8rem;
}
.max_wi_10 {
	max-width: 10rem;
}
.max_wi_12 {
	max-width: 12rem;
}
.max_wi_16 {
	max-width: 16rem;
}
/* VÉGE MÉRETEK */

/* VERZIOHOZ kapcsolódó beállítások */
.verzioCenter {
  text-align: center;
}
.header_03Index_02 {
  /*    	background-color: #d0d0d0;*/
  /*background: linear-gradient(to right, #696969, #b4c1bf, #b4c1bf, #696969);*/
  /*	max-width: 1000px;*/
  max-width: 66.66rem;
  /*  max-width: 106.66rem;*/
  margin: 0 auto;
  /*    height: 5rem;*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.header_first_row {
  /*	  max-width: 66.66rem;*/
  /*	background-color: aqua;*/
}
.verzioYearcost_button {
  /*	width: 8rem;*/
  /*    height: 100%;*/
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: 'Play', sans-serif;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border: 3px solid #ced2d8;
  border-radius: 10px;
  box-shadow: 10px 5px 15px 3px black;
}
.verzioModal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 4;
  /* Sit on top */
  padding-top: 5rem;
  /* Location of the box */
  /*    left: 40;*/
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /*  transition-duration: 1.2s;*/
}
.verzioModal_2 {
  background-color: rgba(0, 0, 0, 0.72);
  /*  max-width: 1300px;*/
  max-width: calc(100vw - 102px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: aliceblue;
  border-radius: 1rem;
}
.verzioYearcost_button:hover {
  transition: .59s ease-in-out;
  background-color: #ced2d8;
  color: #000000;
  border: 3px solid black;
  box-shadow: none;
}
.link {
  margin: 0 auto;
}
.link a {
  background-color: darkgreen;
  color: aliceblue;
  font-size: 1.5rem;
  padding: 5px;
  letter-spacing: 3px;
}
.link a:hover {
  background-color: aliceblue;
  color: darkgreen;
  transition: .59s ease-in-out;
}
.ver {
  /*  background-color: aqua;*/
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /*  color: dimgray;*/
  color: black;
  padding-right: 4rem;
  /*  font-size: 0.6rem;*/
  /*  width: 20rem;*/
  /*  height: 20px;*/
}
.ver p {
  font-size: 0.8rem;
}
/* VÉGE VERZIOHOZ kapcsolódó beállítások */

.cursor {
	cursor: pointer;
}	

.phpHide {
	color: rgba(0, 0, 0, 0);
  font-size: 0.1px;
}

.flexCenter {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  gap: 3rem;
/*	cursor: pointer;*/
}


.flexCenter_2 {
/*	background-color: #a3e526;*/
	text-align: center;
}

/* GOMBOK ÉS FELSŐ MENÜSOR */
.new_btn_basic {
/*  background-image: linear-gradient(to right, #2C3E50 0%, #4CA1AF 51%, #2C3E50 100%);*/
  /*  margin: 10px;*/
  width: 8rem;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
  margin: 5px;
	font-size: 4rem;
  text-align: center;
	text-transform: uppercase;
  transition: 0.5s;
  background-size: 300% auto;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid;
	color: grey;
}
.new_btn_basic:hover {
  background-position: right center;
  /* change the direction of the change here */
/*  color: rgba(0, 212, 255, 1);*/
  color: white;
  text-decoration: none;
}
.btn_basic {
  /*  background-image: linear-gradient(to right, #2C3E50 0%, #4CA1AF 51%, #2C3E50 100%);*/
  /*  margin: 10px;*/
  width: 8rem;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
  margin: 5px;
	font-size: 2rem;
  text-align: center;
	text-transform: uppercase;
  transition: 0.5s;
  background-size: 300% auto;
 	border-radius: 10px;
  border: 2px solid;
	cursor: pointer;
  color: grey;
}
.btn_basic_function {
  /*  background-image: linear-gradient(to right, #2C3E50 0%, #4CA1AF 51%, #2C3E50 100%);*/
  /*  margin: 10px;*/
  width: 8rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
  margin: 5px;
	font-size: 2rem;
  text-align: center;
	text-transform: uppercase;
  transition: 0.5s;
  background-size: 300% auto;
 	border-radius: 10px;
  border: 2px solid;
	cursor: pointer;
  color: grey;
}
.btn_basic_function_normal {
  height: 2rem;
	padding: 15px 10px 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
	font-size: 1.3rem;
  text-align: center;
  transition: 0.5s;
  background-size: 300% auto;
 	border-radius: 10px;
  border: 2px solid;
	cursor: pointer;
  color: grey;
}
.btn_basic:hover, .btn_basic_function:hover, .btn_basic_function_normal:hover {
  background-position: right center;
  /* change the direction of the change here */
  /*  color: rgba(0, 212, 255, 1);*/
  color: white;
  text-decoration: none;
}
.b_grey {
  background-image: linear-gradient(to right, #b4b4b4 0%, #b4b4b4 25%,#ffffff 50%, #020500 100%);
}
.pageName {
	background-color: blue;
	max-width: 20rem;

}
.filter {
	background-color: #d0dd6b;
}
.header_00 {
	background-color: #09236a;
	color: aliceblue;
  top: 0;
  max-height: 11rem;
	overflow: auto;
  padding-left: 0.5rem;
/*  max-width: 106.66rem;*/
  display: flex;
  flex-direction: row;
	flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
  z-index: 2;
}
.header_01 {
	background-color: #62b3d1;
  padding-left: 0.5rem;
	max-height: 4rem;
	overflow: auto;
  display: flex;
  flex-direction: row;
	flex-wrap: wrap;
  justify-content: flex-start;
  z-index: 2;
}
.btn_basic p, .btn_basic_function p {
	font-size: 0.8rem;
}
/* VÉGE GOMBOK ÉS FELSŐ MENÜSOR */

/* EGYÉB GOMBOK */
.button {
/*	width: 6rem;*/
  height: 2rem;
	padding: 15px 10px 15px 10px;
	border-radius: 10px;
  display: flex;
  align-items: center;
	justify-content: center;
  border: 2px solid;
	cursor: pointer;
  color: grey;
	font-weight: 900;
	font-size: 1.3rem;
}
.button:hover {
  background-position: right center;
  /* change the direction of the change here */
  /*  color: rgba(0, 212, 255, 1);*/
  color: white;
  text-decoration: none;
}
/* VÉGE EGYÉB GOMBOK */

/* SZÍNEK */
.kek {
	background-color: blue;
}
.piros {
	color: red;
}
.zold {
	color: #14ff00;
}
.kek_2 {
	color: blue;
}
/* VÉGE SZÍNEK */

/* RENDEZÉS */
.kozepre {
	margin: 0 auto;
}
/* VÉGE RENDEZÉS */


/* DINAMIKUS STICKY */
.fixHeader {
    background: var(--primary-color);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 3;
}
.main {
/*    background-color: aliceblue;*/
		text-align: center;
}
.tableTitle {
    background-color: lightgray;
    padding: 0.6rem;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    position: relative; /* Az alapértelmezett viselkedés */
    z-index: 1; /* Cím előtt a táblázat */
    width: 100%; /* Biztosítja, hogy a cím rögzítve maradjon */
}
/* Fix fejléc (tableHead fix_row) */
.fix_row {
    background: var(--primary-color);
    background-color: chartreuse;
    position: relative; /* Az alapértelmezett viselkedés */
    top: 0;
    width: 100%; /* Biztosítja, hogy a teljes szélességet lefedje */
    box-sizing: border-box; /* A padding és a border ne befolyásolja a szélességet */
    z-index: 2; /* A fejléc a cím felett */
}
/* VÉGE DINAMIKUS STICKY */

.tableTitleMenu {
  display: flex;
  width: 100%;
}
.tableTitleMenu_1 {
/*  background-color: chartreuse;*/
  cursor: pointer;
	flex-shrink: 0; /* Az első elem nem zsugorodik */
}
.tableTitleMenu_2 {
/*  background-color: lightblue;*/
  cursor: pointer;
  margin-left: auto; /* Az elem a maradék helyet kitöltve a közepére kerül */
  margin-right: auto; /* A margin-right segít, hogy középre igazítsuk */
}


/* full_list.php található */
.teszt {
	display: flex;
	flex-direction: column;
	background-color: burlywood;
}





/* tooltiphez kell */
.tooltip,
.tooltip_2,
.tooltip_3 {
  position: relative;
  display: inline-block;

  /*  background-color: aquamarine;*/
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 8.5rem;
  background-color: dimgray;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-family: 'Play', sans-serif;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: -1px;
  /*  margin-left: -60px;*/
  opacity: 0;
  transition: opacity 1s;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip_2 .tooltiptext_2 {
  visibility: hidden;
  width: 8.5rem;
  background-color: dimgray;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-family: 'Play', sans-serif;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 0;
  /*  margin-left: -60px;*/
  opacity: 0;
  transition: opacity 1s;
}
.tooltip_2 .tooltiptext_2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 75%;
  /*    left: 110%;*/
  margin-top: -15px;
  /*    margin-top: 5px;*/
  border-width: 8px;
  /*    border-bottom-width: 15px;*/
  border-style: solid;
  border-color: transparent transparent dimgray transparent;
  z-index: 3;
}
.tooltip_2:hover .tooltiptext_2 {
  visibility: visible;
  opacity: 1;
}
.tooltip_3 .tooltiptext_3 {
  visibility: hidden;
  width: 100%;
  /*    width: 15rem;*/
  background-color: dimgray;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-family: 'Play', sans-serif;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 2;
  top: 30px;
  /*    right: 0;*/
  left: 0;
  /*  margin-left: -60px;*/
  opacity: 0;
  transition: opacity 1s;
}
.tooltip_3 .tooltiptext_3::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  /*    left: 110%;*/
  margin-top: -15px;
  /*    margin-top: 5px;*/
  border-width: 8px;
  /*    border-bottom-width: 15px;*/
  border-style: solid;
  border-color: transparent transparent dimgray transparent;
}
.tooltip_3:hover .tooltiptext_3 {
  visibility: visible;
  opacity: 1;
}
/* END tooltiphez kell */

/* OSZLOPOK RENDEZÉSE */
.tableHeadData {
    cursor: pointer;
    position: relative;
}
.sort-arrow {
    font-size: 12px;
    margin-left: 5px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.sorted-asc .sort-arrow::after {
    content: '↑';
    opacity: 1;
}
.sorted-desc .sort-arrow::after {
    content: '↓';
    opacity: 1;
}
.tableHeadData.sorted-asc {
    color: green;
		font-weight: bold;
		background-color: skyblue;
}
.tableHeadData.sorted-desc {
    color: red;
		font-weight: bold;
		background-color: skyblue;
}
/* VÉGE OSZLOPOK RENDEZÉSE */


/* LOAD ICON Kezdete */
.icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2%;
}
@keyframes ldio-huvj330hpfv {
  0% {
    opacity: 1;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1.5, 1.5);
  }

  100% {
    opacity: 0;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1, 1);
  }
}
.ldio-huvj330hpfv div > div {
  position: absolute;
  width: 18.84px;
  height: 18.84px;
  border-radius: 50%;
  background: #ff0000;
  animation: ldio-huvj330hpfv 1.2048192771084336s linear infinite;
}
.ldio-huvj330hpfv div:nth-child(1) > div {
  left: 116.5px;
  top: 69.5px;
  animation-delay: -1.0542168674698795s;
}
.ldio-huvj330hpfv > div:nth-child(1) {
  transform: rotate(0deg);
  transform-origin: 125.92px 78.92px;
}
.ldio-huvj330hpfv div:nth-child(2) > div {
  left: 102.5px;
  top: 102.5px;
  animation-delay: -0.9036144578313252s;
}
.ldio-huvj330hpfv > div:nth-child(2) {
  transform: rotate(45deg);
  transform-origin: 111.92px 111.92px;
}
.ldio-huvj330hpfv div:nth-child(3) > div {
  left: 69.5px;
  top: 116.5px;
  animation-delay: -0.753012048192771s;
}
.ldio-huvj330hpfv > div:nth-child(3) {
  transform: rotate(90deg);
  transform-origin: 78.92px 125.92px;
}
.ldio-huvj330hpfv div:nth-child(4) > div {
  left: 35.5px;
  top: 102.5px;
  animation-delay: -0.6024096385542168s;
}
.ldio-huvj330hpfv > div:nth-child(4) {
  transform: rotate(135deg);
  transform-origin: 44.92px 111.92px;
}
.ldio-huvj330hpfv div:nth-child(5) > div {
  left: 21.5px;
  top: 69.5px;
  animation-delay: -0.4518072289156626s;
}
.ldio-huvj330hpfv > div:nth-child(5) {
  transform: rotate(180deg);
  transform-origin: 30.92px 78.92px;
}
.ldio-huvj330hpfv div:nth-child(6) > div {
  left: 35.5px;
  top: 35.5px;
  animation-delay: -0.3012048192771084s;
}
.ldio-huvj330hpfv > div:nth-child(6) {
  transform: rotate(225deg);
  transform-origin: 44.92px 44.92px;
}
.ldio-huvj330hpfv div:nth-child(7) > div {
  left: 69.5px;
  top: 21.5px;
  animation-delay: -0.1506024096385542s;
}
.ldio-huvj330hpfv > div:nth-child(7) {
  transform: rotate(270deg);
  transform-origin: 78.92px 30.92px;
}
.ldio-huvj330hpfv div:nth-child(8) > div {
  left: 102.5px;
  top: 35.5px;
  animation-delay: 0s;
}
.ldio-huvj330hpfv > div:nth-child(8) {
  transform: rotate(315deg);
  transform-origin: 111.92px 44.92px;
}
.loadingio-spinner-spin-gcwf3o6rzre {
  width: 157px;
  height: 157px;
  display: inline-block;
  overflow: hidden;
  /*  background: #f1f2f3;*/
}
.ldio-huvj330hpfv {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}
.ldio-huvj330hpfv div {
  box-sizing: content-box;
}
/* LOAD ICON Vége */

/* login */
.login {
  /*	  background-color: aqua;*/
  display: flex;
  flex-direction: column;
  /*  width: 35rem;*/
  margin: 0 auto;
  align-items: center;
  color: aliceblue;
}
.login2 {
  /*	  background-color: #fa0000;*/
  /*  width: 20rem;*/
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* VÉGE login */

/* LOGIN oldalon a hibás belépéshez köthető felugró ablak */
.message {
  z-index: 2;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: 'Play', sans-serif;
	padding: 0.5rem;
  text-align: center;
  margin: 0 auto;
  width: 24rem;
  height: 2.5rem;
  border: 3px solid #ced2d8;
  border-radius: 10px;
  box-shadow: 10px 5px 15px 3px black;
  /*  display: inline-block;*/
  position: relative;
	top: 0.5rem;
  animation: heartbeat 1s ease-out 2;
}
@keyframes heartbeat {
  0% {
    top: 0.5rem;
    left: 0px;
    background: #bc464b;
  }

  25% {
	top: 0.5rem;
    left: 30px;
    background: #4b4bce;
  }

  50% {
	top: 0.5rem;
    left: -30px;
    background: #bc464b;
  }

  75% {
	top: 0.5rem;
    left: 30px;
    background: #4b4bce;
  }

  100% {
	top: 0.5rem;
    left: 0px;
    background: #bc464b;
  }
}
.red {
	background-color: #bc464b;
}
/* VÉGE LOGIN oldalon a hibás belépéshez köthető felugró ablak */


/* Modern check box */
.switch {
  position: relative;
  display: inline-block;
  float: right;
  /*  width: 30px;*/
  width: 46px;
  /*  height: 17px;*/
  height: 27px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  /*  height: 13px;*/
  height: 23px;
  /*  width: 13px;*/
  width: 23px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2e38b7;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2e38b7;
}
input:checked + .slider:before {
  /*
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
*/
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}
.slider.round:before {
  border-radius: 50%;
}
/* VÉGE!!! Modern check box */


/* Hamburger menü */
.tableOfContents {
  width: min(50%, 400px);
  position: fixed;
  background-color: rgb(119, 119, 119);
  display: flex;
  flex-direction: column;
  /*  overflow: auto;*/
  border-right: 2px solid #403f3f;
  border-bottom: 2px solid white;
  box-shadow: 2px 0px 13px 0 grey;
}
.hamburger {
  display: none;
}
@keyframes animateleft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animateleft {
  animation: animateleft 0.7s;
}
.menu_button {
  background-color: rgba(250, 250, 250, 0);
  color: white;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  /*  position: fixed;*/
}
.closeButton {
  background-color: rgba(250, 250, 250, 0);
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
/* Hamburger menü VÉGE */


/* az oldal alján van, hogy mobilon a felugró billentyűzetet felfogja */
.bottom {
/*  background-color: aliceblue;*/
/*  width: 100%;*/
/*  height: 30rem;*/
  height: calc(100vh - 37rem);
}


/* SELECT2 felugró ablak módosítása  */
.cdropdown {
/*  background-color: rgba(25, 23, 23, 0.94) !important;*/
/*  color: #ffffff !important;*/
  position: fixed !important;
  z-index: 3 !important;
/*  top: 10% !important;*/
/*    padding-top: 5rem;*/
  width: 80% !important;
  left: 10% !important;
/*  height: 10rem !important;*/
/*  overflow: auto !important;*/
}
/* SELECT MULTIPLE egyedi megjelenítéshez kell */
select[multiple] {
  background-color: rgba(0, 255, 255, 0);
  color: aliceblue;
  width: 100%;
  padding: 0.5rem;
  overflow-x: scroll;
  overflow-y: scroll;
  /*	scrollbar-width: none;*/
  box-shadow: 0 2px 5px 1px dimgray;
}
select[multiple]:focus {
  background-color: rgba(0, 255, 255, 0);
  border-bottom: 2px solid rgba(128, 128, 128, 0.06);
  border-radius: 0;
}
/* VÉGE SELECT MULTIPLE egyedi megjelenítéshez kell */


/* ezekkel állítjuk az input mező validálását */
input:invalid,
select:invalid {
  /*  box-shadow: 0 2px 5px 1px red;*/
  /*  box-shadow: 0 2px 1px 0 red;*/
  border-bottom: 2px solid red;
  /*    background-color: red;*/
}
input:focus:invalid,
select:focus:invalid {
  box-shadow: none;
}
input:valid,
select:valid {
  /*  box-shadow: 0 2px 5px 1px #179857;*/
}
/* VÉGE ezekkel állítjuk az input mező validálását */


/* Egyedi DIV tábla */
.fullTable {
	background-color: rgb(180, 180, 180);
	border: 1x solid #000000;
/*	width: 90%;*/
	margin: 0 auto;
/*	padding: 10px;*/
}
.tableHead, .tableRow, .tableSum {
/*	background-color: aquamarine;*/
/*	padding: 10px;*/
	width: 100%;
  display: flex;
  flex-direction: row;
/*  flex-wrap: wrap;*/
/*  justify-content: space-around;*/	
}
.tableHeadData, .tableRowData, .tableSumData {
	border: 1px solid #000;
/*	Ez biztosítja, hogy minden elem kitöltse az elérhető helyet */
  flex-grow: 1;  
	flex: 1 0 0;
/* Megakadályozza, hogy a szöveg törjön */
  white-space: nowrap;  
	/* Ha a szöveg túl hosszú, elrejtse, és három pontot használjon */
  text-overflow: ellipsis; 
	/* Elrejti a túlnyúló szöveget */
  overflow: hidden; 
	/* Opcióként hozzáadhatunk némi paddingot a kinézet javítása érdekében */
  padding: 0.2rem;
}
/* Az első elem bal oldali szegélye */
.tableHeadData:first-child, .tableRowData:first-child, .tableSumData:first-child {
  border-left: 1px solid #000; 
}
/* Az utolsó elem jobb oldali szegélye */
.tableHeadData:last-child, .tableRowData:last-child, .tableSumData:last-child {
  border-right: 1px solid #000; 
}
/* Az első sor felső szegélye */
.tableHead > .tableHeadData {
  border-top: 1px solid #000; 
}
/* A következő sorok felső szegélye */
.tableRow > .tableRowData {
  border-top: 1px solid #000; 
}
/* Az első sor felső szegélye */
.tableRow:first-child > .tableRowData {
  border-top: 1px solid #000; 
}
/* A szomszédos sorok közötti keretek: */
.tableRow:not(:first-child) > .tableRowData {
/* Az egyes sorok között egyenletes keret legyen */
  border-top: 1px solid #000; 
}
/* A footer sor felső szegélye */
.tableSum > .tableSumData {
  border-top: 1px solid #000; 
}
.tableRowData {
/*	background-color: cornflowerblue;*/
}
.tableSumData {
	background-color: #cc7486;
}
.noborder {
	border: none;
}
.tableRow:hover {
  background-color: #588990;
}
.tableRow.selected {
    background-color: #e0f7fa; /* világoskék vagy amit szeretnél */
}
/* VÉGE Egyedi DIV tábla */