html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.main-body-app-background {
    background-image: url(https://masnika.hu/images/gallery/lens003.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10000;
    filter: blur(14px);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.orderTableDiv {
    width: 600px;
}

.orderTableHeaderColumn {
    font-weight: bold;
}

.orderTableColumn {
}

.productNameColumn {
    width: 300px;
}

.weightColumn {
    width: 100px;
}

.priceColumn {
    width: 100px;
}

.quantityColumn {
    width: 200px;
}

.quantityRadioInput {
    margin-left: 16px;
    margin-right: 4px;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
    fill: var(--bs-white);
}

.btn-bd-register-enabled {
    background-color: #42b72a;
    border-color: #42b72a;
    color: #fffafa
}

.btn-bd-register-enabled:hover {
    background-color: #43a32f;
    border-color: #43a32f;
    color: #fffafa
}

.btn-bd-register-enabled:active {
    background-color: #42b72a;
    border-color: #42b72a;
    color: #fffafa
}

.form-check-input-bd-secondary:checked {
    border-color: var(--bs-secondary);
    background-color: var(--bs-secondary-color);
}


.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-toggle-icon > svg {
    transition: display 1s ease-in-out;
    fill: var(--bs-body-color);
}

.password-toggle-icon.show-password > #password-show-icon {
    display: block;
}
.password-toggle-icon.show-password > #password-hide-icon {
    display: none;
}
.password-toggle-icon.hide-password > #password-show-icon {
    display: none;
}
.password-toggle-icon.hide-password > #password-hide-icon {
    display: block;
}


.app-header {
    position: absolute;
    top: 0;
}

.z-top-layer {
    z-index: 99999 !important;
    overflow: visible;
}

.width-max-viewport {
    width: 100vw;
}

.glow-text {
    text-shadow: 0 0 7px var(--bs-body-bg), 0 0 21px var(--bs-body-bg);
}