@charset "UTF-8";
/* Láthatatlan jelölőnégyzet */
.checkbox-style {
  opacity: 0;
  position: absolute;
}

/* Címke stílusok */
.checkbox-style-1-label {
  display: flex;
  align-items: flex-start; /* Címke szövegének igazítása a tetejéhez */
  cursor: pointer;
  position: relative;
  margin: 3px;
  line-height: 1.2; /* Sorköz beállítása a jobb olvashatóságért */
}

/* Egyedi jelölőnégyzet megjelenítése a címke előtt */
.checkbox-style-1-label:before {
  content: '';
  background: #FFF;
  border: 2px solid #DDD;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0; /* Megakadályozza, hogy a négyzet összemegy */
  flex-shrink: 0; /* Megakadályozza, hogy a négyzet összemegy */
}

/* Bejelölt állapot stílusa */
.checkbox-style:checked + .checkbox-style-1-label:before {
  background: #1ABC9C;
}

/* Kis méretű jelölőnégyzet */
.checkbox-style-1-label.checkbox-small:before {
  width: 17px;
  height: 17px;
  margin-right: 8px;
}

.checkbox-style-1-label, .no-select {
    user-select: none; /* Modern böngészők támogatása */
    -webkit-user-select: none; /* Safari támogatása */
    -moz-user-select: none; /* Firefox támogatása */
    -ms-user-select: none; /* Internet Explorer támogatása */
}

.checkbox-style-1-div {
	display: flex;
  align-items: flex-start; /* Gyermek elemek igazítása a tetejéhez */
}

		
		
.char-count {
    font-size: 0.9rem;
    text-align: right;
    color: gray;
}
.char-count.warning {
	color: red; /* Ha közelít a limithez */
}

textarea.auto-expand {
    overflow: hidden; /* Görgetősáv elrejtése */
    resize: none; /* Manuális átméretezés tiltása */
}


.vertical_center .btn {
	display: inline-flex;
  align-items: center;
}
#content {
	margin-top: 120px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Sötét átlátszó réteg */
    z-index: 1040; /* Magasabb, mint a popover */
    display: none;
}

.shadow2 {
    text-shadow: #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px;
}

.custom-navbar {
    transition: all 0.3s;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    height: 100px;
    display: flex;
    align-items: center;
    padding: 10px;
	justify-content: space-between;
}

.scrolled {
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar .nav-link {
    padding: 12px 8px;
}
.navbar-collapse {
	flex-basis: auto;
}

@media (max-width: 1050px) {
    .navbar-collapse {
        display: none;
        flex-direction: column;
        background: white;
        padding: 10px;
        border-radius: 5px;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .navbar-collapse.show {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-toggler {
        display: block;
    }
}

@media (min-width: 1051px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex !important;
        flex-grow: 1;
        justify-content: flex-start;
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        width: auto;
    }
}

.nav-link {
    line-height: 22px;
    color: #444;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
}


/* Dropdown gomb alapstílus – eltávolítja a border-t */
.no-border {
    border: none !important;
    background: transparent;
}

/* Kattintás után se legyen border vagy árnyék */
.no-border:focus,
.no-border:active,
.no-border.show {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Ha az egérrel fölé mész, akkor se jelenjen meg keret */
.no-border:hover {
    border: none !important;
}

@font-face {
	font-family: 'myriadpro';
	src:url('fonts/MyriadPro-Regular.eot');
	src:url('fonts/MyriadPro-Regular.eot') format('embedded-opentype'),
		url('fonts/MyriadPro-Regular.woff') format('woff'),
		url('fonts/MyriadPro-Regular.ttf') format('truetype'),
		url('fonts/MyriadPro-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

.text-justify {
  text-align: justify;
}

:root {
    --bs-body-font-family: 'Montserrat', sans-serif;
}

.pagination {
	--bs-pagination-active-bg:#1ABC9C;
	--bs-pagination-active-border-color:#1ABC9C;
}

#scrollToTop {
	display: none;
    z-index: 299;
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: #FFF;
    top: auto;
    left: auto;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    border-radius: 2px;
}
        #scrollToTop:hover {
           color: #FFF;
			background-color: var(--bs-primary);
        }
		
	.vertical-middle {
		height: auto !important;
		left: 0;
		max-width: none !important;
		z-index: 3;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.nav-link:hover {
	  color: var(--bs-primary) !important;
	}
	.nav-link.active {
		color: var(--bs-primary) !important;
	}

.header-text {
	font-weight:700;
	font-family: 'myriadpro';
	color: var(--bs-primary);
}

#slider {
	height:300px;
	position: relative;
}

.slider-text-sub {
	background: rgba(8, 164, 154, 0.8);
	color: white;
	font-weight:700;
	font-family: 'myriadpro';
}

[data-animate] {
  opacity: 0; /* Alapból láthatatlan */
}

.fullscreen-loader {
	z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
  background: #fff; /* Just to visualize the extent */
}

.loader-wrapper {
	width: 105px;
	height: 105px;
	position:absolute;
	left:0; right:0;
	top:0; bottom:0;
	margin:auto;
	max-width:100%;
	max-height:100%;
	overflow:auto;
}

.loader {
  position: relative;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 100px;
  height: 100px;
}
.loader > div {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(8, 164, 154);
  transform: scale(0);
  transform-origin: center center;
  animation: loader 2s infinite linear;
}
.loader > div:nth-of-type(1), .loader > div:nth-of-type(5), .loader > div:nth-of-type(9) {
  animation-delay: 0.4s;
}
.loader > div:nth-of-type(4), .loader > div:nth-of-type(8) {
  animation-delay: 0.2s;
}
.loader > div:nth-of-type(2), .loader > div:nth-of-type(6) {
  animation-delay: 0.6s;
}
.loader > div:nth-of-type(3) {
  animation-delay: 0.8s;
}

@keyframes loader {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}


 #slider {
		height:500px;
	}
	.header-text{
		font-size: 22px;
		line-height: 22px;
		margin-bottom: 14px;
	}
	#slider .header-text{
		margin-bottom:0px;
	}
	.header-text br {
		display: none;
	}
	#slider .vertical-middle {
		margin-top:90px;
	}
	.fs-5 {
		font-size: 16px!important;
	}
	.fs-4 {
		font-size: 17px!important;
	}

/* Kis képernyők (SM, min-width: 576px) */
@media (min-width: 576px) {
	#slider {
		height:500px;
	}
	.header-text{
		font-size: 26px;
		line-height: 26px;
		margin-bottom: 16px;
	}
	#slider .header-text{
		margin-bottom:0px;
	}
	.header-text br {
		display: none;
	}
	#slider .vertical-middle {
		margin-top:90px;
	}
	.fs-5 {
		font-size: 17px!important;
	}
	.fs-4 {
		font-size: 19px!important;
	}
}

/* Közepes képernyők (MD, min-width: 768px) */
@media (min-width: 768px) { 
  #slider {
		height:500px;
	}
	.header-text{
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 20px;
	}
	#slider .header-text{
		margin-bottom:0px;
	}
	.header-text br {
		display: none;
	}
	#slider .vertical-middle {
		margin-top:50px;
	}
	.fs-5 {
		font-size: 1.25rem !important;
	}
	.fs-4 {
		font-size: 1.5rem !important;
	}
	.modal-xxl {
        --bs-modal-width: 720px;
	}
}

/* Nagy képernyők (LG, min-width: 992px) */
@media (min-width: 992px) { 
	#slider {
		height:600px;
	}
	.header-text{
		font-size: 40px;
		line-height: 40px;
		margin-bottom: 20px;
	}  
	#slider .header-text{
		margin-bottom:0px;
	}
	.modal-xxl {
        --bs-modal-width: 960px;
	}
}

/* Extra nagy képernyők (XL, min-width: 1200px) */
@media (min-width: 1200px) {
	.header-text{
		font-size: 57px;
		line-height: 57px;
		margin-bottom: 0px;
	}
	#slider {
		height:800px;
	}
	.modal-xxl {
        --bs-modal-width: 1140px;
	}

}
/* Szuper nagy képernyők (XXL, min-width: 1400px) */
@media (min-width: 1400px) {
	.steps-left {
		margin-left:-100px;
	}
	.step-date {
		margin-left:-45px;
	}
	
	.modal-xxl {
        --bs-modal-width: 1320px;
	}
}

@media (min-width: 1600px) {
	.slider-text-sub{
		max-width:850px;
	}
	.slider-problems {
		max-width:850px;
		padding-left:40px;
	}
	.modal-xxl {
        --bs-modal-width: 1500px;
	}
  
}
@media (min-width: 1800px) {
 
}

@media (min-width: 2560px) {
  
}

@media (max-width: 2000px) { 
	#content:not(.full-width) {
		padding-left:1rem;
		padding-right:1rem;
	}
		
}

.hr-blurry-priv {
  background-image: linear-gradient(to right, transparent, #198754, transparent);
  border: none;
  height: 2px;
  opacity: 70%;
}

.fullscreen-div {
    min-height: calc(100vh - 120px);
}
/* Alap sidebar */
    #sidebar {
	  overflow-y: auto;
      width: 265px;
      height: calc(100vh - 100px);
      position: fixed;
      top: 100px;
      left: 0px;
      background: #fff;
      color: #444;
      z-index: 10;
	  font-size:13px;
	  transition: all 0.3s ease;
    }
	
	 #sidebar a{
		 color: #444;
		 text-decoration: none;
	 }
	
	#sidebar.small {
      left: -265px;
	}
	
	#sidebar.scrolled {
      top: 60px;
    }

    #sidebar.hide {
      transform: translateX(-100%);
    }
	
	.menu-group{
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		color: #a1a5b7 !important;
	}
	.menu-link {
		padding-top:5px;
		padding-bottom:5px;
		padding-left:10px;
		border-radius:7px;
	}
	
	
	.aside-link.active .menu-link, .menu-link:hover:not(.active) {
		transition: color .2s ease, background-color .2s ease;
		color: #08A49A !important;
		background-color: rgb(192, 232, 229, 0.25);
		
	}

    /* Menüelemek */
    #sidebar ul {
      list-style: none;
      padding-left: 0;
    }

    #sidebar ul li {
      padding: 0.25rem 1rem;
      cursor: pointer;
	  font-family: 'Poppins', sans-serif;
    }


    /* Almenü */
    #sidebar ul .submenu {
      display: none;
      padding-left: 0.5rem;
    }


    /* Hamburger gomb */
    #hamburger-btn {
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 2100;
      background: #343a40;
      color: white;
      border: none;
      padding: 0.5rem 0.75rem;
      border-radius: 0.25rem;
      display: none;
    }

    /* Fő tartalom */
    #content {
      margin-left: 265px;
      transition: margin-left 0.3s ease;
    }
		#content.full-width {
		  margin-left: 0px !important;
		}
	@media (max-width: 1050px) {
	  .language-dropdown, .language-dropdown .dropdown-menu {
		width:100%;
	  }
	}
	
	@media (max-width: 576px) {
		#slider {
		margin-top:220px;
	  }
	  .custom-navbar {

		background: rgba(255, 255, 255, 1);
	  }
	  
	}
    /* Mobil nézet */
    @media (max-width: 768px) {
      #hamburger-btn {
        display: block;
      }


      #sidebar.show {
        transform: translateX(0);
      }

      #content {
        margin-left: 0;
      }
	  
	  
   
}

    }
	
	.rotate-icon {
	  transition: transform 0.3s ease;
	  transform: rotate(0deg);
	}

	.rotate-icon.rotated {
	  transform: rotate(90deg); /* Jobbról lefele */
	}

	.t-step {
		width: 36px;
		height: 36px;
		z-index: 1;
		font-size: 16px;
	}

.modal-header {
    background: rgb(192, 232, 229);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #08A49A;
}

.input-group-text {
    background-color: rgb(192, 232, 229);
    border: 1px solid #08A49A;
}

.input-group-text i{
   margin: auto;
}

.form-control {
    border: 1px solid #08A49A;
}

.modal-backdrop + .modal-backdrop {
  z-index: 1055; /* kicsit magasabb mint az első */
}

.nav-tabs {
--bs-nav-tabs-border-color: #08A49A;
--bs-nav-tabs-link-active-border-color: #08A49A #08A49A var(--bs-body-bg);
--bs-nav-tabs-link-hover-border-color: #08A49A #08A49A #08A49A;
}

.popup-navs .nav-link {
    font-weight: bold;
    margin-right: -1px;
}

.popup-navs .nav-link:hover {
    cursor: pointer;
    background-color: rgb(192, 232, 229);
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: 0.5;
}

.hr-text-lg{
	height: 2.5em;
}
.hr-text:before {
  content: "";
  background: linear-gradient(to right, transparent, #818078, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  line-height: 1.5em;
  color: #08A49A;
  background-color: #ffffff;
}

.hr-text-lg:after{
	line-height: 1.5em;
	font-size: 1.5rem;
}


.hr-text-bg-gray:after {
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity))!important;
}

.hr-text-warning:after {
	background-color: #fff3cd;
}
 
.hr-text-success:after {
	background-color: #d1e7dd;
	color: #000000;
}

.tab {
  display:inline-block;
  padding-left: 0.6rem;
}
.tab-pane {
  display: none;
}
.tab-pane.active.show {
  display: block;
}

/* Alap vertikális tab stílus */
.left-tabs {
  flex-direction: column;
  border-right: 1px solid #08A49A;
  border-bottom: none;
}

.left-tabs .nav-link {
  font-weight: bold;
  text-align: left;
  margin-right: -1px;
  border-radius: .25rem 0 0 .25rem;
}

.left-tabs .nav-link.active {
  border: 1px solid #08A49A;
  border-right: 1px solid transparent;
}

.left-tabs .nav-link:hover {
  cursor: pointer;
  background-color: rgb(192, 232, 229);
}

/* Mobil nézet */
@media (max-width: 1050px) {
  .left-tabs {
    flex-direction: row;
    border: none;
    border-bottom: 1px solid #08A49A;
  }
  
  .left-tabs .nav-link {
    width: 12rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    margin-bottom: -1px;
    border-radius: .25rem .25rem 0 0;
  }
  
  .left-tabs .nav-link.active {
    border: 1px solid #08A49A;
    border-bottom: 1px solid transparent;
  }
  
  .left-tabs .nav-link:hover {
    background-color: rgb(192, 232, 229);
  }
}

/* Mobilon nincs plusz margó, csak desktopon */
@media (min-width: 1051px) {
  .col1 {
	  flex: 0 0 auto; 
	  width:220px;
  }
  .col2 {
	  flex: 0 0 auto; 
	  width:calc(100% - 220px) !important;
  }
}

/* Lekerekített táblázat */
.rounded-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Cellák közötti világos vonalak */
.rounded-table .table td, .table th {
  border: 1px solid #dee2e6;
}

/* Ne törjön meg a fejléc szövege */
.rounded-table .table th {
  white-space: nowrap;
}

.rounded-table th, .rounded-table td {
  border: 1px solid #dee2e6; /* A cellák szegélye */
  padding: 8px; /* Cellák belső margója */
  text-align: center; /* Középre igazított szöveg */
}
/* Felső sarok */
.rounded-start-top {
  border-top-left-radius: 0.5rem;
}
.rounded-end-top {
  border-top-right-radius: 0.5rem;
}

/* Alsó sarok */
.rounded-start-bottom {
  border-bottom-left-radius: 0.5rem;
}
.rounded-end-bottom {
  border-bottom-right-radius: 0.5rem;
}

/* Oldalsó sorcímek */
.rounded-table tbody th {
  background-color: #f8f9fa;
  font-weight: bold;
  text-align: right;
  padding-right: 1rem;
}

.btn.show {
	color: white !important;
    background-color: #08A49A;
    border-color: #08A49A;
}

.dropdown-item.active, .dropdown-item:active {
    text-decoration: none;
    background-color: #08A49A;
}
 
.dropdown-item:focus, .dropdown-item:hover {
    background-color: rgb(8 164 154 / 25%);
}

.dropdown-menu{
	border: 1px solid #08A49A;
}

.input-group .bootstrap-select.form-control .dropdown-toggle {
    border-radius: 0.375rem !important;
	margin-top:2px;
}


.overflow-x-auto {
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}

.m-300 {
	 max-width:300px;
 }

.m-400 {
	 max-width:400px;
 }
 .m-500 {
	 max-width:500px;
 }

 .m-600 {
	 max-width:600px;
 }

  .m-700 {
	 max-width:700px;
 }
 
 .input-group .input-group-text,  .toggle-password  {
	 width: 50px;
 }
 
 .unset-all {
  all: unset;
}

.form-select:focus, .page-link:focus {
	border-color: #1ABC9C;
    box-shadow: 0 0 0 0.2rem rgba(26, 188, 156, 0.25);
}

.page-link {
    color: #1ABC9C;
}
.page-link:hover {
	color: #1ABC9C;
	background-color: rgb(192, 232, 229, 0.25);
}

option:checked {
  background-color: #1ABC9C;
  color: white;
}

option:focus {
  background-color: #1ABC9C;
  color: white;
}

.btn-close:focus {
	border-color: #1ABC9C;
    box-shadow: 0 0 0 0.2rem rgba(26, 188, 156, 0.25);
}

div.dt-processing>div:last-child>div {
    background: #1ABC9C;
}

.tox .tox-edit-area::before {
    border: 2px solid #1ABC9C !important;
}

.tox .tox-tbtn--active, .tox .tox-tbtn--enabled, .tox .tox-tbtn--enabled:focus, .tox .tox-tbtn--enabled:hover {
    background: rgba(26, 188, 156, 0.25) !important;
}

.tox .tox-tbtn:active {
    background: rgba(26, 188, 156, 0.25) !important;
}

::selection {
	background: #1ABC9C;
	color: #fff;
  }

::-moz-selection {
	background: #1ABC9C;
	color: #fff;
}

.tox .tox-custom-editor:focus-within, .tox .tox-focusable-wrapper:focus, .tox .tox-listboxfield .tox-listbox--select:focus, .tox .tox-textarea-wrap:focus-within, .tox .tox-textarea:focus, .tox .tox-textfield:focus, .tox .tox-toolbar-textfield:focus {
    border-color: #1ABC9C !important;
    box-shadow: 0 0 0 0.2rem rgba(26, 188, 156, 0.25) !important;
}

.border-primary {
	border-color: #1ABC9C !important;
}

.referenceslinks a:hover {

    font-weight: 600;
}

.referenceslinks a {
    color: #1ABC9C !important;
    font-weight: 500;
}

code, pre, .monospace {
	font-family: 'Roboto Mono', monospace;
}

.btn-xs {
  padding: 0.1rem 0.25rem;
  font-size:1rem;
  line-height: 1;
  width: 30px;
  height: 30px;
}

.btn:not(.yesButton):not(.noButton):not('.not-white') {
	--bs-btn-bg: white;
}

.toast-container-custom {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1055;
}

#side-menu {
	display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    height: 100%;
}

.menu-group-wrapper {
  margin-top: auto;
}

.language-dropdown .dropdown-menu {
	border: none;
	border-radius: 0px;
	padding:0px;
}

.strikethrough {
    text-decoration: line-through;
    color: crimson;
}