﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* Dropdown Styles */
.navbar-nav .dropdown-menu {
  display: none; /* Hide dropdown by default */
  position: absolute;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown on hover */
}


a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  /* Set the fixed height of the footer here */
  height: 80px;
  line-height: 80px; /* Vertically center the text there */
}

.table-click-bg {
    background-color: #f0f8ff !important;
}

/* Fixed header for the Table */
.tableFixHead {
    overflow-y: auto;
    /*height: 200px;*/   
}

.tableFixHead thead th {
    position: sticky;
    top: 0;       
}


/* button */
.btn-block {
    display: block;
    width: 100%;
}
.btn-intego {
    --bs-btn-color: #fff;
    --bs-btn-bg: #fe7153;
    --bs-btn-border-color: #fe7153;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c24b31;
    --bs-btn-hover-border-color: #c24b31;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b1472f;
    --bs-btn-active-border-color: #b1472f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ff856b;
    --bs-btn-disabled-border-color: #ff856b;
}

/* Section */
section {
    padding: 60px 0px 50px 0px;
    overflow: hidden;
}

.section-bg {
    background-color: #f7f7f7;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ff370c;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}
.form {
    padding: 30px 50px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

/* Alert */


.alert-intego {
    --bs-alert-color: #000;
    --bs-alert-bg: #f9beb2;
    --bs-alert-border-color: #fe7153;
}

.toast-intego {
    background-color: #fe7153 !important;
}

/* Link */

 a.link-intego:link {
    color: #fe7153;
    text-decoration: none;
}


a.link-intego:visited {
    color: #fe7153;
    text-decoration: none;
}


a.link-intego:hover {
    color: #c24b31;
    text-decoration: none;
}


a.link-intego:active {
    color: #fe7153;
    text-decoration: none;
}

.color-intego {
    color: #fe7153;
}