html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding-bottom: 100px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: black !important;
}

a {
  color: #727272 !important;
  text-decoration: none;
  transition: 150ms;
}

a:hover {
  color: black !important;
}

#header_contacts {
  text-align: end;
  padding: 10px;
  border-bottom: 1px solid #d6d6d6;
  font-size: small;
  color: #666;
  font-weight: 600;
}

#admin_panel {
  position: fixed;
  left: 0;
  top: 0;
  background-color: black;
  color: whitesmoke;
  padding: .25em;
}

.navbar-brand img {
  width: 100%;
  object-fit: contain;
}

.nav-link {
  color: #666;
  font-weight: 600;
  font-size: 16px;
}

/*footer {
   
    position: fixed;
    
    bottom: 0;
}*/

.nav-link :hover {
  color: #666 !important;
}

.card:not(.nohover):hover {
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, .05) inset, 1px 3px 3px 0 rgb(0 0 0 / 15%);
  transition: 150ms;
  position: relative;
}

.card:not(.nohover):hover::after {
  border-top-color: var(#fed300);
  border-right-color: var(#fed300);
  position: absolute;
}


.loading-cover {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms;
  z-index: 1000;
  background-color: #000a1d7d;
  background-image: url(../src/circle_pointer_loader_yellow_remaster.gif);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.loader {
  background-image: url(../src/circle_pointer_loader_yellow_remaster_sm.gif);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}


body.loading .loading-cover {
  opacity: 1 !important;
}