﻿body {
    margin: 0;
}

/* Light Mode */
[data-bs-theme=light] body:before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: url('../Images/siteContent-backgound.jpg');
    z-index: -9;
    /* Fill screen */
    -ms-background-repeat: no-repeat;
    background-repeat: no-repeat;
    -ms-background-position: 100% 100%;
    background-position: 100% 100%;
    -ms-background-size: cover;
    background-size: cover;
    image-rendering: optimizeQuality;
}

/* Dark Mode */
[data-bs-theme=dark] body:before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rbg(30,30,30);
    background-image: url('../Images/siteContent-backgound_night.png');
    z-index: -9;
    /* Fill screen */
    -ms-background-repeat: no-repeat;
    background-repeat: no-repeat;
    -ms-background-position: 100% 100%;
    background-position: 100% 100%;
    -ms-background-size: cover;
    background-size: cover;
    image-rendering: optimizeQuality;
}

/* TODO: backdrop-filter causes z-index issues */
[data-bs-theme=light] .bg-acrylic-body {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
}

/* TODO: backdrop-filter causes z-index issues */
[data-bs-theme=dark] .bg-acrylic-body {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(6px);
}

/*.bg-acrylic-body::before {
    backdrop-filter: blur(6px);
}*/

/*.bg-acrylic-body {
    --bs-bg-opacity: 0.9;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;*/
/*backdrop-filter: blur(6px);*/
/*}*/
.night-outline {
    filter: drop-shadow(-1px -1px 0px #ccc) drop-shadow(1px -1px 0px #ccc) drop-shadow(1px 1px 0px #ccc) drop-shadow(-1px 1px 0px #ccc)
}

/* Consistent scrollbar style across all devices */
::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}
[data-bs-theme=light] ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.15) !important;
    -webkit-border-radius: 2px !important;
    border-radius: 10px !important;
}
[data-bs-theme=dark] ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.65) !important;
    -webkit-border-radius: 2px !important;
    border-radius: 10px !important;
}
::-webkit-scrollbar-thumb:horizontal {
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
    background-color: rgba(13,110,253,255) !important;
    background-image: url( 'data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" fill-opacity="0.4" class="bi bi-grip-horizontal" viewBox="0 0 15 15"> <path d="M2 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/> </svg>');
    background-position: center center;
    background-repeat: no-repeat;
    shape-rendering: optimizeQuality;
}
::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
    background-color: rgba(13,110,253,255) !important;
    background-image: url( 'data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" fill-opacity="0.4" class="bi bi-grip-horizontal" viewBox="0 0 15 15"> <path d="M7 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-3 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-3 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/></svg>');
    background-position: center center;
    background-repeat: no-repeat;
    shape-rendering: optimizeQuality;
}
/*::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(13,110,253,255) !important;
}*/
::-webkit-scrollbar-corner {
    background-color: transparent;
}

/* More visible checkbox borders */
[data-bs-theme=light] .form-check-input {
    border: 2px solid rgba(128, 128, 128, 0.5)
}
[data-bs-theme=dark] .form-check-input {
    border: 2px solid rgba(128, 128, 128, 0.95)
}

#divLoading{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: -webkit-translate(-50%, -50%);
    transform: -moz-translate(-50%, -50%);
    transform: -ms-translate(-50%, -50%);
}

.containerh {
    margin: 0 auto;
    overflow: hidden;
    padding: 0 15px;
    width: 960px;
}

.error {
            color: red;
        }

#overlay{	
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.4s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}

#message {
    font-family: Arial,Helvetica,sans-serif;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 84px;
    z-index: 105;
    text-align: center;
    font-weight: bold;
    font-size: 100%;
    color: white;
    padding: 10px 0px 10px 0px;
    background-color: #0d6efd;
    border-left: solid 6px;
    border-color: #82b5ff;
}

/*#message span {
    text-align: center;
    width: 95%;
    float:left;
}*/

#downMessage {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 105;
    text-align: center;
    color: white;
    padding: 10px 0px 10px 0px;
    /*background-color:#ed0c0c;*/
    background: repeating-linear-gradient( -55deg, #F33, #F33 10px, #D33 10px, #D33 20px );
}

#downMessage span {
    text-align: center;
    width: 95%;
    float:left;
}

#creditMessage {
    font-weight: bold;
    color: blue;
}

.close-notify {
    white-space: nowrap;
    float:right;
    margin-right:10px;
    color:#fff;
    text-decoration:none;
    /*border:2px #fff solid;*/
    padding-left:3px;
    padding-right:3px
}

.close-notify a {
    color: #fff;
}

.mycontent-left {
  border-right: 1px dashed #333;
}

.dvCenter {
  margin: auto;
  width: 95%;
  padding: 10px;
}

.inline {
    display:inline-block;
}

.divbackground{
  background-color: #ffe6e6;
  content: '\002B';
  font-weight: bold;
  padding: 1px;
  border: none;
  text-align: left;
  cursor: pointer;
  border: none;
}

.notificationsBackground {
    background-color: #A4F0A8;
    content: '\002B';
    font-weight: bold;
    padding: 1px;
    border-radius: 5px;
    border: 2px solid #73AD21;
    text-align: left;
    cursor: pointer;
}

.plateOverlay {
  position:relative;
  left: 5%;
  top: 50px;
  color: black;
  font-size:7vw;
  font-family:Sans-serif;
}

.required::after 
{
    content: "*";
    font-weight: bold;
    color: red; 
}

.agencyLogo {
    width: 100%;
}

main {}

footer {}
    
    footer .row:nth-child(2) > *,
    footer .row > div:nth-child(1),
    footer .row > div:nth-child(3) {
        text-align: center;    
    }

    footer #

.idaho > img {
    width: 100%; height: auto;
}

#dancingBell {
    animation-delay: 2s;
}

.alert {
    padding: 20px;
    background-color: #0174DF;
    color: white;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

.fntColor {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: black;
}

.cookie-consent {
    position: fixed;
    bottom: 8px;
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    color: #fff;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    background: #292929;
    z-index: 120;
    cursor: pointer;
    border-radius: 3px;
}

.allow-button {
    height: 30px;
    width: 150px;
    color: #fff;
    font-size: 14px;
    line-height: 10px;
    border-radius: 3px;
    border: 1px solid green;
    background-color: green;
    text-align: center;
    padding: 10px;
}

.d-ellipses {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: auto;
    margin: auto;
    line-height: initial;
}