﻿@charset "UTF-8";
*, html, body {
  margin: 0;
  padding: 0;
}

:root {
  --eniac-blue: rgb(0,138,202);
  --eniac-blue-hover: rgb(0,110,161);
}

html {
  position: relative;
  min-height: 100%;
  /*Eliminate FLASH on dark background */
  background-color: #3b3a3a;
  /*    background-image: url('/Content/Image/BackGrounds/eniacHUB_halloween.jpg');*/
  /*   background-image: url('/Content/Image/BackGrounds/eniacHUB_christmas_3.jpg');*/
  background-size: cover;
}

body {
  /*   background-image: url('/Content/Image/BackGrounds/eniacHUB_halloween.jpg');*/
  /*   background-image: url('/Content/Image/BackGrounds/eniacHUB_christmas_3.jpg');*/
  color: #fff;
  /*background-color: #3b3a3a;*/ /*Eliminate FLASH on dark background */
  font-family: "Open Sans", sans-serif;
  background-size: cover;
  font-weight: 300;
  font-size: 14px;
  height: 100%;
  background-attachment: fixed;
  /*Create the parallax scrolling effect*/
  padding-bottom: 140px; /*max size of the footer*/
}

a {
  color: #1CA8DD;
}
a:hover, a:focus, a.active {
  color: #93D5FE;
}
a, a:hover, a:focus, a:active {
  outline: none;
  text-decoration: none;
}

textarea {
  min-height: 40px;
}

/*The ng-cloak to hide angular expressions before load*/
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}

.ng-dirty.ng-invalid {
  border-color: red;
}

.ng-dirty.ng-valid {
  border-color: green;
}

.bg-eniac {
  background-color: #1CA8DD !important;
}

.bg-eniac-secondary {
  background-color: #93D5FE;
}

.border-eniac {
  border-color: #1CA8DD;
}

.border-2 {
  border-width: 0.2em;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 30px;
  background-color: rgb(33, 33, 33);
  transition: max-height 0.25s ease-in;
  overflow: hidden;
}
.footer:hover {
  /*transition to the max size*/
  max-height: 140px;
  transition: max-height 0.25s ease-in;
}

.pageBody {
  display: flex;
  width: 100%;
  align-items: stretch;
  /*If navbar top fixed*/
  padding-top: 50px;
}

a.card-clickable {
  color: white;
  font-size: 0.8rem;
}
a.card-clickable.card-body:hover {
  opacity: 0.55;
}
a.card-clickable .card:hover {
  box-shadow: 1px 1px 12px #757070;
  opacity: 0.95;
}
a.card-clickable.disabled {
  pointer-events: none;
}

.card.card-transparent {
  background-color: rgba(255, 255, 255, 0.95);
}

.alert .close {
  top: 5px;
  right: 5px;
  font-size: 1em;
}

.alert .fa {
  margin-right: 0.3em;
}

.alertContainer {
  position: fixed;
  right: 15px;
  bottom: 30px;
  width: 30%;
  z-index: 1051;
}

.nav-dropdown {
  max-height: 600px;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
}

/*btnfile*/
.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

@media screen and (max-width: 748px) {
  .alertDropdown {
    white-space: pre-wrap;
  }
}
.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/*label.btn-file {
    margin-bottom: 0;
}*/
.loaderContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1051;
  background-color: rgba(58, 58, 58, 0.85);
}

.overflow-hidden {
  overflow: hidden;
}

#backToTop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  outline: none; /* Remove outline */
  font-size: 16px; /* Increase font size */
}

.lds-ring {
  display: inline-block;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -90px 0 0 -90px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  height: 180px;
  width: 180px;
  margin: 8px;
  border: 8px solid #3498db;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #3498db transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*.siteAlert {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 180px;
    min-height: 180px;
    text-align: center;
    margin: -90px 0 0 -90px;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    transition: all .5s ease-in-out;

    &.ng-hide {
        min-height: 0;
        top: 100px;
        opacity: 0;
    }

    i {
        font-size: 100px;
    }
}*/
.blueline {
  color: #1CA8DD;
  border-color: #1CA8DD;
  margin: 15px auto;
}

.eniacModal {
  background-color: rgb(66, 66, 66);
  border-radius: 5px;
  border: #1CA8DD 1px solid;
  padding: 0 10px;
}
.eniacModal .modal-header {
  border-color: #1CA8DD;
}

.eniachub_container {
    background-color: rgba(66, 66, 66, 0.8);
    padding: 10px;
    border-radius: 10px;
    /* border: $eniac-blue 1px solid;*/
    margin: 10px auto 0 auto;
    /*box-shadow: #212121 10px 10px 20px;*/
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.eniachublicence_container {
    background-color: rgba(66, 66, 66, 0.8);
    padding: 10px;
    border-radius: 10px;
    /* border: $eniac-blue 1px solid;*/
    margin: 10px auto 0 auto;
    /*box-shadow: #212121 10px 10px 20px;*/
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    min-height: 300px;
    height: auto !important;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80vh;
}

.eniacBtn {
  margin: 0px;
  display: inline-block;
}
.eniacBtn a:not(.scoreAlarm) {
  width: 90px;
  height: 90px;
  position: relative;
  /*color: $text-color;*/
}
.eniacBtn i {
  margin-top: 20px;
  font-size: 45px;
}

.btn-eniac {
  background-color: #1ca8dd;
  color: white;
}

.btn-eniac:hover {
  background-color: #1ca8dd;
  color: white;
  filter: brightness(0.9);
}

.btn-check:focus + .btn-eniac, .btn-eniac:focus {
  color: white;
  filter: brightness(0.9);
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}

.btn-check:checked + .btn-eniac, .btn-check:active + .btn-eniac, .btn-eniac:active, .btn-eniac.active, .show > .btn-eniac.dropdown-toggle {
  color: white;
  background-color: #006FA3;
}

.pre_messageText {
  white-space: pre-line;
}

.alarm {
  border-radius: 5px 5px 5px 5px;
  color: white;
  background-color: red;
  padding: 2px 7px;
  position: absolute;
  top: -7px;
  right: -7px;
  font-size: 10px;
  z-index: 50;
}

@media screen and (max-width: 991px) {
  .nav-link .alarm {
    right: unset;
  }
}
.formcontainer {
  max-width: 600px;
  margin-top: 10px;
}

.eniacTitle {
  display: inline-block;
  width: 100%;
  font-size: 24px;
  margin: 0 auto 10px auto;
  font-weight: bold;
  padding: 5px 0px;
  border-bottom: #1CA8DD solid 1px;
}
.eniacTitle .eniacBtn {
  font-size: 14px;
  font-weight: normal;
}
.eniacTitle .eniacBtn a {
  height: 50px;
  line-height: 45px;
}
.eniacTitle .eniacBtn i {
  font-size: 30px;
  margin: 0;
}

.fileContainer {
  position: relative;
  max-width: 100px;
}

.dropFileBtn {
  position: absolute;
  right: 0;
  top: 0;
}

.nav-tabs .nav-link.custom-card-tab:hover, .nav-tabs .nav-link.custom-card-tab:focus {
  border-color: #222 #222 #373d42;
}
.nav-tabs .nav-link.active.custom-card-tab,
.nav-tabs .nav-item.show .nav-link.custom-card-tab {
  color: #ddd;
  background-color: #353b40;
  border-color: #000 #000 #373d42;
}

.custom-control-label::before {
  top: 0.05rem;
}

.custom-control-label::after {
  top: 0.05rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.05rem + 2px);
}

input.custom-control-input:checked + label.custom-control-label {
  font-weight: bold;
}

.draggableRow[draggable=true] {
  cursor: move;
}
.draggableRow[draggable=true].dragElem {
  opacity: 0.4;
}
.draggableRow[draggable=true].over {
  /*opacity: 0.3;*/
  border-style: dashed;
  box-shadow: 0 0 100px inset black;
}

.draggableCard[draggable=true] {
  cursor: move;
}
.draggableCard[draggable=true].dragElem {
  opacity: 0.4;
}
.draggableCard[draggable=true].over {
  /*opacity: 0.3;*/
  border-style: dashed;
  box-shadow: 0 0 100px inset black;
}

.autocomplete-list, .doc-autocomplete-list {
  position: absolute;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 100;
  margin-left: 1px;
  margin-right: 10px;
  max-height: 270px;
  max-width: 40%;
  overflow-y: auto;
  left: 0;
  right: 0;
  border-radius: 5px;
  /*width:90%;*/
}
.autocomplete-list p, .doc-autocomplete-list p {
  border-bottom: 1px solid hsla(0deg, 0%, 9%, 0.2);
  cursor: pointer;
  color: black;
}

@media (max-width: 1200px) {
  .autocomplete-list, .doc-autocomplete-list {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .autocomplete-list, .doc-autocomplete-list {
    max-width: 90%;
  }
}
.doc-autocomplete-list {
  max-width: 100%;
}

/* Custom button with img*/
.ebp-img-btn {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ebp-img-btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 6px;
}

.ebp-fb-btn {
  background-color: #3b5998;
  color: white;
}
.ebp-fb-btn:hover {
  color: white;
  background-color: #3b5181;
}

.ebp-bg-cover {
  background-size: cover;
}

.ebp-highlight {
  padding: 5px 0;
  border-radius: 50px;
}
.ebp-highlight:hover {
  cursor: default;
  background-color: rgb(44, 44, 44);
}

.ebp-contract-price {
  text-align: center;
  background-color: rgba(18, 16, 16, 0.45);
  font-size: 20px;
  border-radius: 20px;
}

.ebp-docValue {
  font-size: 14px;
}
.ebp-docValue.selected {
  border-radius: 10px;
  box-shadow: inset #1ca8dd 0 5px 100px;
}

.ebp-sumValue {
  font-size: 30px;
  line-height: 32px;
}

/*Messages*/
.message_ownmessage {
    background-color: #eed4a5;
    color: #111;
    border-radius: 10px;
    padding: 20px;
    min-height: 100px;
    font-size: 16px;
}

.message_partnermessage {
    background-color: #f1f0f0;
    color: #000;
    border-radius: 10px;
    padding: 20px;
    min-height: 100px;
    font-size: 16px;
}

/*Document template*/
.template-document {
  background-color: white;
  color: black;
  padding: 16mm;
  margin: 20px auto;
  min-height: 1000px;
  max-width: 803px;
}

.tab-container {
  display: flex;
  margin-top: -16px;
  margin-bottom: 16px;
}

.tab-item {
  font-weight: bold;
  padding: 12px 12px 12px 12px;
  border: 3px solid #1CA8DD;
  cursor: pointer;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.tab-item--active {
  background-color: #1CA8DD;
}

.chart-container {
  position: relative;
  height: 161px;
}

.validation-summary-errors {
  padding: 0 16px;
}

.form-group {
  position: relative;
}

.blue-color-report {
  color: #3dd5f3;
}

/*.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    display: block;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1CA8DD;
}*/
/*:root {
    --bs-body-bg: #212529 !important;*/ /* Globális háttér (sötét) */
/*--bs-body-color: #f8f9fa !important;*/ /* Világos szöveg */
/*--bs-card-bg: #343a40 !important;*/ /* Kártyák háttérszíne (sötét) */
/*--bs-card-color: #f8f9fa !important;*/ /* Kártyák szövegszíne */
/*--bs-card-border-color: rgba(255, 255, 255, 0.1) !important;*/ /* Halvány fehér keret */
/*}

body {
    background-color: var(--bs-body-bg) !important;
    color: var(--bs-body-color) !important;
}

.card {
    background-color: var(--bs-card-bg) !important;
    color: var(--bs-card-color) !important;
    border: 1px solid var(--bs-card-border-color) !important;
}
.tooltip .tooltip-inner {
    color: #ffffff !important;*/ /* Világos szövegszín */
/*}
[ng-show="editing"] input[type="text"],
[ng-show="editing"] input[type="number"],
[ng-show="editing"] input[type="password"],
[ng-show="editing"] input[type="email"],
[ng-show="editing"] input[type="date"],
[ng-show="editing"] input {
    background-color: #f9f9f9 !important;*/ /* Világos szürke */
/*color: #333 !important;*/ /* Sötét szöveg */
/*}

[ng-show="editing"] input.bg-warning {
    background-color: #ffcc00 !important;*/ /* Világos sárga */
/*color: #000 !important;*/ /* Fekete */
/*}*/
