﻿:root {
  --primary: rgba(0,170,195,1);
  --primary-dark: rgba(0,95,125,1);
}

@media (min-width: 1800px){
  .container{
    max-width: 1740px;
  }
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:active {  
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

/* 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;
  line-height: 60px; /* Vertically center the text there */
}

/* Custom table classes
------------------------------------------------- */
.bg-highlight {
    background-color: #ecf3bf;
}
.table td.actions {
    min-width: 120px;
}

@media (min-width: 1200px) {
    .edit-icon {
        margin-left: 5px;
    }

    .edit-icon:first-child {
        margin-left: 0;
    }
}

/* Create detour preview modal
------------------------------------------------- */
#detourPreviewModal .modal-dialog {
    max-width: 1130px;
}

#detourPreviewModal #GoogleMapsCode iframe {
    display: block;
    width: 100%;
}