@charset "UTF-8";

/* KÉP KEZELÉS, MODAL ABLAKKAL */
.chat_myImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Arányos kicsinyítés, nem torzít */
/*  border-radius: 15px;*/
	cursor: pointer;
  transition: 0.3s;
}
.chat_wrapper {
  display: flex;
  flex-wrap: wrap;  /* Sorba rendezi a képeket, és ha szükséges, új sorba törik */
  gap: 10px;  /* Képek közötti távolság */
  justify-content: center;  /* A képek középre rendezése */
}
/* ezzel állítjuk be a bélyegkép méretét */
.thumbnail {
  width: 100px;
  height: 100px;
  object-fit: contain;
/*
  background-color: #eee;
  border: 1px solid #ccc;
*/
}

/*
.myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
	width: 100%;
	max-width: 10rem;
	max-height: 10rem;
}
*/
.chat_myImg:hover {
	opacity: 0.5;
}
/* The Modal (background) */
.modal_picture {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  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.66); /* Black w/ opacity */
}
/* Modal Content (image) */
.modal_picture-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
/* Add Animation */
.modal_picture-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal_picture-content {
    width: 100%;
  }
}
/* VÉGE KÉP KEZELÉS, MODAL ABLAKKAL */


/* FELUGRÓ ABLAKOK KEZELÉSE */
.modal  {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 4;
  /* Sit on top */
  padding-top: 10px;
  /* Location of the box */
  /*	left: 40;*/
  top: 0;
	left: 0;
  width: 100%;
  /* Full width */
  height: 100vh;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  /*    background-color: rgb(255, 0, 0);*/
  /* Fallback color */
/*  background-color: rgba(0, 0, 0, 0.84);*/
  background-color: var(--bgColor);
/*	background-color: yellow;*/
  /* Black w/ opacity */
  /*  transition-duration: 1.2s;*/
}
.modal_2  {
  position: fixed;
  z-index: 3;
  padding-top: 10px;
  top: 0;
	left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: var(--bgColor);
}
.modal_3  {
  display: none;
  position: fixed;
  z-index: 4;
  padding-top: 10px;
  top: 0;
	left: 0;
  width: 100%;
  /* Full width */
  height: 100vh;
  /* Full height */
  overflow: auto;
	background-color: rgba(0, 0, 0, 0.79);
}
.modal_body {
/*	background-color: #284d4d;*/
	background-color: var(--bgColor);
	width: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
  /* Full height */
  overflow: auto;
	color: #f8fff0;
}
.modal_body_3 {
	background-color: var(--bgColor);
	width: 30rem;
	margin: 0 auto;
	padding: 1rem;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
  overflow: auto;
	color: #f8fff0;
}
.modal_header {
/*	background-color: aliceblue;*/
/*	color: beige;*/
	color: #5d737b;
}
.modal_main {
/*	background-color: grey;*/
/*	color: azure;*/
	color: #5f6480;
	display: flex;
  flex-direction: row;
	flex-wrap: wrap;
  align-items:flex-end;
/*  justify-content: center;*/
/* === EZ A MEGOLDÁS === */
/*    gap: 1rem;  Ez minden irányban (sor és oszlop) 15px távolságot tart */
    
    /* Ha csak a sorok között akarsz távolságot, de az egymás melletti elemeknél nem: */
     row-gap: 1rem; 
}
.modal_footer {
/*	background-color: #0000ff;*/
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
  justify-content: center;
}
/* VÉGE FELUGRÓ ABLAKOK KEZELÉSE */

label {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
/*  color: #7fddff;*/
  color: #5d737b;
	font-weight: 900;
  /*  padding-top: 10px;*/
  /*  line-height: 0.3;*/
}

.js_no_delete_modal, .js_no_delete_modal_2, .js_no_delete_modal_3, .js_no_delete_modal_4, .js_deadline_alert, .email_send {
	background-color: rgba(2, 2, 2, 0.4);
	z-index: 4;
}

.szerkeszt {
/*  background-color: rgba(0, 0, 0, 0.79);*/
/*  background-color: rgb(208, 208, 208);*/
	background-color: var(--bgColor);
  width: 95%; /* Hozzáadva: engedi, hogy a div kitöltse a kisebb kijelzőt */
/*  max-width: 1050px;*/
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0rem 2rem 1rem;
	color: var(--fontColor);
  border-radius: 1rem;
  box-sizing: border-box; /* Hozzáadva: padding ne lógjon túl */
/*	background-color: cadetblue;*/
}

.flexRowCenter {
  /*  width: 100%;*/
/*    background-color: blue;*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
/*  	align-items:center;*/
}

.flexRow {
	position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.flexRow button {
  position: absolute;
  right: 0;
	width: 9rem;
/*
	background-color: #ff4d4d; 
	color: white;
	margin-left: 1rem;
*/
}

.flexRowCenter_2 {
  /*  width: 100%;*/
/*  background-color: rgb(0, 0, 255);*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: flex-start;
/*  padding-left: 0.5rem;*/
  margin-left: 0.8rem;
}

.uj_gomb {
	height: 2.7rem;
}

.description_view {
/*	font-size: 1.8rem;*/
	font-size: 1.5rem;
/*	background-color: aqua;*/
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.description_view a {
	color: #0000ff;
	font-weight: 900;
	text-decoration: underline;
}

.css_deadline_alert {
	text-align: center;
	padding: 1rem;
	color: var(--buttonColor);
}

.css_email_alert {
	text-align: center;
	padding: 1rem;
/*	color: var(--primary-color);*/
	color: aliceblue;
}

form input {
	color: black;
}

.szerkeszt_1 {
  background-color: rgba(0, 0, 0, 0.57);
  /*  background-color: rgba(245, 5, 5, 0.57);*/
  /*  max-width: 1300px;*/
  /*  max-width: calc(100vw - 80px);*/
  max-width: 93vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  color: aliceblue;
  border-radius: 1rem;
}

/* POP UP ablak törléshez multi (többes) kijelölés  */
.custom-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/*	background: rgba(255, 6, 6, 0.6);*/
	padding-top: 1rem;
	background-color: rgba(36, 33, 33, 0.46);
	display: flex;
	align-items:flex-start;
	justify-content: center;
/*	z-index: 9999;*/
	overflow: auto;
	z-index: 4;
}
.custom-modal-content {
/*	background: white;*/
  color: #e0dea3;
	padding: 20px 30px;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
  background-color: rgba( 0, 0, 0, 0.79 );
	text-align: center;
/*	max-width: 400px;*/
	max-width: 1050px;
	width: 90%;
}
.modal-buttons {
/*	background-color: yellow;*/
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 10px;
}
/*
.modal-buttons button {
	padding: 8px 16px;
	cursor: pointer;
	border: none;
	border-radius: 4px;
	background-color: #1976d2;
	color: white;
	font-weight: bold;
	transition: background-color 0.2s;
}
*/
.modal-buttons button, button.cancel-delete, button.close-modal {
  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;
}
.modal-buttons button:hover {
/*	background-color: #1565c0;*/
	background-position: right center;
  color: white;
  text-decoration: none;
}
/*
button.cancel-delete, button.close-modal {
	background-color: #9e9e9e;
}
*/
button.cancel-delete:hover, button.close-modal:hover {
/*	background-color: #757575;*/
		background-position: right center;
  color: white;
  text-decoration: none;
}
/* VÉGE POP UP ablak törléshez multi (többes) kijelölés  */

/* Gomb elrejtése helyett, figyelmeztetés */
.warn {
	display: block;
	font-size: 1.5rem;
	padding: 0.5rem;
	background-color: #adad29;
	border-radius: 10px;
	text-align: center;
}

.filter_fullTask_modal input.search {
  background-image: url('//oberding.hu/pic/search-icon_2.png');
  background-position: 5px 3px;
  padding-left: 30px;
  background-size: 15px;
  background-repeat: no-repeat;
  background-color: #8df6ff;
}

/* Vágólapról kép beillesztése az editorba*/
.uploading-text {
	font-style: italic;
	color: #999;
	margin-top: 5px;
}
.editor img {
	position: relative;
	cursor: pointer;
	max-width: 100%;
}
.editor img:hover::after {
	content: "❌";
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.8);
	padding: 2px 5px;
	border: 1px solid #ccc;
	font-size: 12px;
	cursor: pointer;
}
/* VÉGE  Vágólapról kép beillesztése az editorba*/

/* MÁSOLÁS (SZÖVEG) funkciója */
.tableRowData {
/*  background-color: #fff;*/
  transition: background-color 0.4s ease;
}
.tableRowData.copied {
  background-color: #2feb5c; /* zöldes háttér */
}
.copy {
	cursor: pointer;
}
/* VÉGE MÁSOLÁS (SZÖVEG) funkciója */

/* 	function checkStatuszErtekek2() (ajax.js) ben használjuk */
.hidden-force {
  visibility: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* oop_deadlineColor.php oldalon használjuk */
/* Ez a sorok színezését végzi. Lejárat dátuma alapján. */
.deadline-red {
  background-color: #ffafaf;
}
.deadline-yellow {
	/* kivettem a színt */
/*  background-color: #ffeda5;*/
}
.textStatus { /* pl: Függőben */
	background-color: #797979;
/*		color: #0014ff;*/
}
.inaktiv {
	color: #adadad !important;
	background: var(--primary-color);
}
/* VÉGE Ez a sorok színezését végzi. Lejárat dátuma alapján. */


/* replace_modal.php oldalon használjuk */
/* egyéni ismétlődés gombjai */
.done:hover, .timestamp:hover, .attach:hover, .bold:hover, .italic:hover, .underline:hover, .fontSizeUp:hover, .fontSizeDown:hover, .list:hover, .ulList:hover, .toggleLink:hover, .togglePhoneLink:hover, .eraser:hover, .indent:hover, .unindent:hover {
	background-color: #ffffff;
	transition: all 1s ease;
}
/* Ikon színek */
.icoColorGrey {
	color: dimgray;
}
/* A gombokat összefogó konténer */
.days_selector {
    display: flex;
    gap: 8px; /* Térköz a napok között */
    margin-top: 10px;
}
/* 1. A tényleges checkbox ELREJTÉSE */
.day_btn input[type="checkbox"] {
    display: none;
}
/* 2. A Label (szöveg) formázása kerek gombbá - Alapállapot */
.day_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;       /* Pontos körhöz azonos szélesség és magasság kell */
    height: 36px;
    border-radius: 50%; /* Ettől lesz teljesen kerek */
    background-color: #e2e4e9; /* A képen látható világosszürke alap */
    color: #444;       /* Sötét betűszín */
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    user-select: none; /* Megakadályozza, hogy duplakattintáskor kijelölődjön a szöveg */
    transition: background-color 0.2s ease, color 0.2s ease; /* Finom animáció színváltáskor */
}
/* Hover effektus, ha fölé viszi az egeret, de még nincs rákattintva */
.day_btn:hover:not(.active_day) {
    background-color: #d1d4db;
}
/* 3. Az Aktív állapot (amit a jQuery 'active_day' class-a kapcsol be) */
.day_btn.active_day {
    background-color: #5564c2; /* A képen látható kék szín */
    color: #ffffff; /* Fehér betűszín */
}
.recurrence_row input, .recurrence_row select {
	color: black;
	border: 2px solid gray;
}
/* VÉGE egyéni ismétlődés gombjai */


/* Oszlopok elrejtése pl.: table_full_task.php oldalon */
/* Felhasználó által elrejtett oszlopok */
.user_hidden_col {
    display: none !important;
}

/* 2026.04.22. - GYORS SZÖVEG MODAL CSS  */
.quick-text-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    min-width: 200px;
    max-height: 250px;
    overflow-y: auto;
}
.quick-text-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #555555;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
}
/* Kilőjük a pötyiket és az alapértelmezett behúzást */
.quick-text-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.quick-text-item {
    list-style: none !important;
    padding: 6px;
    cursor: pointer;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
    color: #333333;
    transition: background-color 0.2s ease;
}
/* Hover effektus tisztán CSS-ből */
.quick-text-item:hover {
    background-color: #f0f0f0;
}
.quick-text-close {
    list-style: none !important;
    padding: 6px;
    cursor: pointer;
    color: red;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    margin-top: 5px;
}
/* VÉGE 2026.04.22. - GYORS SZÖVEG MODAL CSS  */

/*  Gyors szövegek kezelője (Manager) CSS */
.qt-manager-container {
    max-width: 400px;
    margin: 20px 0;
    font-family: sans-serif;
}
.qt-manager-title {
    margin-bottom: 15px;
    color: #333333;
}
.qt-add-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.qt-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}
.qt-submit-btn {
    padding: 8px 15px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.qt-submit-btn:hover {
    background: #218838;
}
.qt-manager-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #eeeeee;
    border-radius: 4px;
}
.qt-manager-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
}
.qt-manager-item:last-child {
    border-bottom: none;
}
.qt-delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s;
}
.qt-delete-btn:hover {
    background: #c82333;
}
.qt-empty-msg {
    padding: 10px;
    color: #999999;
    text-align: center;
}
/* VÉGE Gyors szövegek kezelője (Manager) CSS */

/* 2026.04.23. - Gyors szövegek Drag & Drop CSS */
.qt-drag-handle {
    cursor: move;
    color: #626262;
    margin-right: 10px;
    font-size: 16px;
    user-select: none;
}
.qt-drag-handle:active {
    cursor: move;
}
.qt-manager-item.ui-sortable-helper {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background-color: #ffffff;
    border: 1px solid #007bff;
    opacity: 0.9;
}
.qt-manager-item.ui-sortable-placeholder {
    background-color: #f8f9fa;
    border: 1px dashed #cccccc;
    visibility: visible !important;
}
/* VÉGE 2026.04.23. - Gyors szövegek Drag & Drop CSS */






/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */








a img {
  width: 320px;
  height: auto;
/*  height: 800px;*/
}

.wBreak {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  direction: ltr;
  /*	background-color: beige;*/
}

.wBreak:hover {
  overflow: visible;
  text-shadow: 0 0 3px #0a00ff;
  /*	font-size: 1.7rem;*/
  /*	transition-duration: 1s;*/
  /*	text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;*/
  /*	text-shadow: 2px 2px 8px #FF0000;*/
}

.basicColor {
  /*  background-color: aliceblue;*/
  color: #edff8b;
  font-size: clamp(1.2rem, 1vw, 2rem);
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  width: auto;
  letter-spacing: 0.1rem;
  /*  cursor: pointer;*/
}

.doneColor_2 {
  color: #adadad !important;
  /*  color: rgb(0, 0, 0); !important;*/
  background-color: #434343;
  font-size: 1rem;
  text-decoration: line-through;
}

.modal_4 input.wi_12 {
  background-image: url('//oberding.hu/pic/search-icon_2.png');
  background-position: 5px 3px;
  padding-left: 30px;
  background-size: 15px;
  background-repeat: no-repeat;
}

.fas_ {
  margin-left: 0.625rem;
  margin-right: 0.313rem;
  font-size: 1.4rem;
  padding-top: 0.3rem;
}

.checkbox {
  display: flex;
  background-color: aquamarine;
  flex-direction: row;
}

.select2Width {
  width: 12rem;
}

.editRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0.5rem 0 0.5rem;
  justify-content: space-between;
}

.dynamic {
  /*    background-color: #1c2262;*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  /*  margin-top: -2rem;*/
}

.dynamic_Select {
  background-color: #9a9a4c;
}

.dynamic_01 {
  /*	background-color: #92c9f2;*/
  display: flex;
  flex-direction: row;
  align-items: center;
  /*  flex-wrap: wrap;*/
  /*  justify-content:center;*/
}

.dynamic_01 a {
  /*	background-color: #92c9f2;*/
  display: flex;
  align-items: center;
}

.firstRow {
  /*    background-color: blueviolet;*/
}

.dynamicRow {
  /*  background-color: #2b7fe2;*/
  margin-top: -1rem;
}

.header_04 {
  /*  background-color: #92c9f2;*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /*  width: 91%;*/
  padding: 0.5rem 0 0.5rem;
  justify-content: center;
}

.padd {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.up {
  z-index: 2;
}

.disOff_01 {
  display: none;
}

.disOn {
  cursor: pointer;
  color: black;
}

.Un_done_js {
  color: green;
  cursor: pointer;
  padding-right: 1rem;
}

.done_js {
  cursor: pointer;
  /*  font-size: 2rem; EZT JS-ben állítjuk SQL-ből */
}

/*.disOn:hover {*/
/*  transition: .30s ease-in-out;*/
/*	letter-spacing: 1rem;*/
/*}*/





/* ProductSearch beállításai */
.modalProductSearch {
  background-color: rgba(0, 0, 0, 0.58);
  color: grey;
  position: fixed;
  z-index: 3;
  top: 0;
  /*    padding-top: 5rem;*/
  width: 100%;
  height: 100%;
  overflow: auto;
}
.productSearchFullRow {
  /*    background-color: chartreuse;*/
  background: linear-gradient(to right, #696969, #b4c1bf, #b4c1bf, #696969);
  /*    background: rgba(0, 0, 0, 0.58);*/
  /*    position: fixed;*/
  /*    top: 0;*/
  /*    padding-top: 2em;*/
  height: 3rem;
  max-width: 66rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.productSearcContainer {
  /*    background-color: green;*/
  background: linear-gradient(to right, #696969, #b4c1bf, #b4c1bf, #696969);
  max-width: 66rem;
  margin: 0 auto;
}
.productSearcContainer thead tr {
  position: -webkit-sticky;
  position: sticky;
  top: 3rem;
}
.blue {
  background-image: linear-gradient(to right, #2C3E50 0%, #4CA1AF 51%, #2C3E50 100%);
  /*    background-color: #4688c1;*/
  color: #ffffff;
}
/* VÉGE ProductSearch beállításai */


.alert_01,
.alert_02,
.alert_03 {
  display: none;
  position: fixed;
  z-index: 4;
  padding-top: 100px;
  left: 40;
  margin: 0, auto;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.alertIn {
  background-color: rgba(0, 0, 0, 0.43);
  /*  max-width: 1300px;*/
  max-width: calc(100vw - 102px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: aliceblue;
  border-radius: 1rem;
}

.bground {
  background-color: rgb(0, 0, 0);
}



.flexRowRight {
  /*    background: #989847;*/
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}

.closeIcon,
.index_closeIcon {
  font-size: 2rem;
  cursor: pointer;
  color: aliceblue;
}

.closeIcon:hover,
.index_closeIcon:hover {
  color: #4688c1;
  transition: .59s ease-in-out;
}


tr .betu {
  text-transform: none;
  word-break: normal;
  font-weight: 100;
  cursor: pointer;
}

.searchButton {
  width: 90%;
}

.torles {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  padding: 1rem;
}

.ujTermek {
  background-color: rgba(255, 0, 0, 0.55);
  /*    transition-duration: 1s;*/
}


#infinity p {
  line-height: 1;
  text-align: center;
}



.betu_01 {
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
}

.fa-location-arrow {
  font-size: 1.4rem;
}

.clipBoard {
  background-color: black;
  color: #ebebad;

}

.values {
  background-color: rgba(242, 0, 0, 0);
  border: 0px;
}

.values:hover {
  background: rgba(4, 38, 150, 0);
}





/* SETUP oldalhoz kapcsolodó beállítások */
.mainContainerSetup {
  /*  	background-color: aqua;*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  /*  max-width: 40rem;*/
  margin: 0 auto;
  /*  padding: 5rem;*/
}
.setup_box {
  /*  background-color: rgba(0, 0, 0, 0.57);*/
  background-color: rgba(2, 2, 2, 0.57);
  /*  max-width: 30rem;*/
  /*  margin: 0 auto;*/
  display: flex;
  flex-direction: row;
  /*  justify-content: center;*/
  justify-content: space-between;
  width: 310px;
  padding: 0.5rem;
  color: #75bfff;
  border-radius: 1rem;
  margin: 0.4rem;
}
.setup_box_text {
  /*  background-color: brown;*/

}
.setup_box_data {
  /*  background-color: #a58d2a;*/
}
.setup_box p {
  font-size: 1.2rem;
  text-align: justify;
  /*  font-size: clamp(1.3rem, 1vw, 1.2rem);*/
}
.setup_input_size {
  font-size: clamp(1.1rem, 3vw, 2rem);
}
/* VÉGE SETUP oldalhoz kapcsolodó beállítások */


/* FUTURE hasznos infó: https://developer.mozilla.org/en-US/docs/Learn/Forms/Form_validation */






