/* Gombok kezelése */
@charset "UTF-8";

/* Főmenü gomb */
.btn_basic {
	/* Méretek */
	width: 8rem;
	height: 2.5rem;
	margin: 0.333rem;
	display: flex;
	align-items: center;
	justify-content: center;

	/* Stílus */
	font-family: 'Play', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;

	color: #5d5d5d;
	/* Alapból sötét a szöveg */
	background-color: transparent;
	/* Átlátszó háttér */

	/* A trükk a kerettel és a háttérrel */
	border: 2px solid #5d5d5d;
	/* Vastagabb, karakteres keret */
	border-radius: 8px;
	/* Csak finoman kerekítve */

	position: relative;
	overflow: hidden;
	/* Fontos az animációhoz */
	z-index: 1;
	transition: color 0.4s;
	cursor: pointer;
}
/* Egy láthatatlan réteg, ami hoverkor rácsúszik */
.btn_basic::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	/* Baloldalt rejtőzik */
	width: 100%;
	height: 100%;
	background: #5d5d5d;
	/* Ugyanolyan színű mint a keret */
	transition: 0.4s;
	z-index: -1;
}
.btn_basic:hover {
	color: white;
	/* A szöveg átvált fehérre */
}
.btn_basic:hover::before {
	left: 0;
	/* Becsúszik a háttér */
}
/* VÉGE Főmenü gomb */

.btn_basic_function {
	/* --- Fix méretek és elrendezés --- */
	width: 9rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: transparent;
	border: none;
	cursor: pointer;
	text-align: center;

}
.gradient_border_bottom {
	position: relative;
	/* Fontos, ehhez igazodik a csík */
	/* Egyéb stílusok (padding, stb.) */
	padding-bottom: 0.333rem;
}
.gradient_border_bottom::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	/* Ez a "border" vastagsága */

	/* Itt már működik a background-image */
	background: linear-gradient(to right,
	var(--primary-color) 0%,
	#9a9a9a 25%,
	var(--buttonColor) 50%,
	#9a9a9a 75%,
	var(--primary-color) 100%);
}

.btn_basic p,
.btn_basic_function p,
button p {
	font-size: 0.9rem;
}

/* Listán szűrések gombjai */
button {
	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	background: transparent;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
}
button.learn-more {
/*	width: 10rem;*/
	width: 9rem;
/*	height: auto;*/
	height: 2.2rem;
	margin-bottom: 0.5rem;
}
button.learn-more .circle {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: relative;
	display: block;
	margin: 0;
	width: 2rem;
	height: 1.5rem;
	background: #ff294a;
	border-radius: 1.625rem;
}
button.learn-more .circle .icon {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
}
button.learn-more .circle .icon.arrow {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
/*	left: 0.325rem;*/
	width: 1.125rem;
	height: 0.125rem;
	background: none;
}
button.learn-more .circle .icon.arrow::before {
	position: absolute;
	content: "";
	top: -0.29rem;
	right: 0.0625rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
	transform: rotate(45deg);
}

/* --- PIROS TÉMA --- */
button.learn-more.btn_piros .button-text { 
	color: #ff294a;
}
button.learn-more.btn_piros .circle {
	background: #ff294a;
}

/* --- KÉK TÉMA --- */
button.learn-more.btn_kek .button-text { 
	color: #3d5aff;
}
button.learn-more.btn_kek .circle {
	background: #3d5aff;
}

/* --- SZÜRKE TÉMA --- */
button.learn-more.btn_szurke .button-text { 
	color: #a3a3a3;
}
button.learn-more.btn_szurke .circle {
	background: #a3a3a3;
}

/* --- FEKETE TÉMA --- */
button.learn-more.btn_fekete .button-text { 
	color: #000000;
}
button.learn-more.btn_fekete .circle {
	background: #000000;
}

/* --- ZÖLD TÉMA --- */
button.learn-more.btn_zold .button-text { 
	color: #61b70a;
}
button.learn-more.btn_zold .circle {
	background: #61b70a;
}

button.learn-more .button-text {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 0 0 1.85rem;
	color: #282936;
	display: flex;
	align-items: center;     /* Függőlegesen középre (Vertical) */
	justify-content: center; /* Vízszintesen középre (Horizontal) */
	font-size: 1rem;
	text-align: center;
	/*	font-weight: 700;*/
	/* line-height: 1.6;*/
	/* text-transform: uppercase;*/
}
button:hover .circle {
	width: 100%;
}
button:hover .circle .icon.arrow {
	background: #fff;
	transform: translate(0.5rem, 0);
}
button:hover .button-text {
	color: #fff;
}

button.learn-more.btn_piros:hover .button-text,
button.learn-more.btn_kek:hover .button-text,
button.learn-more.btn_szurke:hover .button-text, 
button.learn-more.btn_fekete:hover .button-text,
button.learn-more.btn_zold:hover .button-text
{
	color: #fff;
}
/* VÉGE Listán szűrések gombjai */


/* Customs_links-hez kapcsolahtó */
/*  A dinamikus gombok létrehozása */
/*
.modal-bg {
  z-index: 4;
  display: none;
  position:fixed; 
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  overflow-x: 
}
*/
.modal_cl {
/*  background:#00ff4e;*/
  padding: 0.8rem;
  border-radius: 0.533rem;
/*	width: 100vw;*/
/*  min-width: 30rem;*/
}
.link_buttons {
/*  background-color: aqua;*/
  display: flex;          /* flexbox elrendezés */
  flex-wrap: wrap;        /* több sorba tör, ha nem fér ki */
  justify-content: flex-start; /* a sor elejétől kezdve */
  align-items: flex-start;
/*  gap: 0.5rem;             kis távolság a gombok között */
}
.link_btn {
/*  background-image: linear-gradient(to right, #D3E3FD 0%, #D3E3FD 25%, #ffffff 50%, #40a3eb 100%);*/
/*  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 25%, #d9d3d3 50%, #c1c1c1 100%);*/
  position: relative; /* fontos, hogy a belső ikon pozícionálható legyen */
/*  margin: 0.333rem;*/
	margin-left: 0.333rem;
	margin-top: 0.333rem;
/*  padding: 0.667rem 1rem;*/
  padding-top: 0.3rem;
	padding-left: 0.667rem;
  width: 10rem;
  height: 2.7rem; /* nagyobb magasság a jobb ikonhoz */
  display: inline-flex;
	flex-direction: column;
/*  align-items: center;*/
  justify-content: center;
  border-radius: 0.667rem;
  border: 2px solid;
  cursor: pointer;
  color: var(--buttonColor);
}
/* Ceruza ikon a jobb felső sarokban */
.link_btn .edit-icon {
  position: absolute;
  top: 3px;
  right: 3px;
	width: 1rem;
	height: 1rem;
  cursor: pointer;
  color: gray;
}

/* gradient border + border-radius megtartva */
.dynamic_green {
  border: 2px solid #29d800;
  border-radius: 0.667rem; /* fontos! */
  background:
    /* 1. réteg: valódi háttér a padding területre */
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #fffce4 25%,
      #fffce4 50%,
      #ebe6bd 100%
    ) padding-box
    /* 2. réteg: gradient szegély */
/*
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(211, 253, 216, 0) 25%,
      #d3fdd8 50%,
      #29d800 100%
    ) border-box;
*/
}
/* gradient border + border-radius megtartva */
.dynamic_blue {
  border: 2px solid #0900e5;
  border-radius: 0.667rem; /* fontos! */
  background:
    /* 1. réteg: valódi háttér a padding területre */
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #fffce4 25%,
      #fffce4 50%,
      #ebe6bd 100%
    ) padding-box
    /* 2. réteg: gradient szegély */
/*
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(219, 217, 255, 0) 25%,
      #ebeaff 50%,
      #0900e5 100%
    ) border-box;
*/
}

/* Alap stílus (amit eddig a JS-be írtál) */
.btn_date_display {
    font-size: 0.733rem;
    margin-top: 0.267rem;
    color: #000aff;       /* Alap kék szín */
    transition: color 0.3s; /* Szép átmenet */
    display: block;       /* Biztos, ami biztos */
}

button:hover .btn_date_display, 
.link_btn:hover .btn_date_display,
.btn_basic:hover .btn_date_display,
.link_btn:hover .edit-icon {
	color: #ffffff; /* Fehér szín hoverkor */
}

.link_btn:hover, .dynamic_green:hover {
	background: var(--fontColor);
	background-position: right center;
	color: aliceblue;
	border: 2px solid transparent;
	transition: 0.7s;  /* Hogy szép finom legyen az átmenet */
}
/* VÉGE Customs_links-hez kapcsolahtó */

.noButton {
  height: 0.8rem;
	padding: 0.8rem 0.667rem 0.8rem 0.667rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
	font-size: 1rem;
  text-align: center;
 	border-radius: 0.667rem;
  border: 2px solid;
	cursor: pointer;
	color: var(--buttonColor);
	margin-right: 0.5rem;
}
