#map {
  width: 500px;
  height: 400px;
}

.img-block {
  border: 1px solid #f5f5f5;
  padding: 5px;
  margin: 5px 0px 10px 0px;
}

/* Vehicle Select */
select.vehicle-select {
  /* styling */
  background-color: white;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  margin-bottom: 1em;

  /* reset */

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    radial-gradient(#ddd 70%, transparent 72%);
  background-position:
    calc(100% - 17px) calc(1em + 2px),
    calc(100% - 12px) calc(1em + 2px),
    calc(100% - .5em) .5em;
  background-size:
    5px 5px,
    5px 5px,
    1.5em 1.5em;
  background-repeat: no-repeat;
}

select.vehicle-select:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    radial-gradient(gray 70%, transparent 72%);
  background-position:
    calc(100% - 12px) 1em,
    calc(100% - 17px) 1em,
    calc(100% - .5em) .5em;
  background-size:
    5px 5px,
    5px 5px,
    1.5em 1.5em;
  background-repeat: no-repeat;
  outline: 0;
}

/* Services Select */
.veh-sidebar h5 {
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 5px;
  font-weight: bold;
}

.veh-sidebar ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 10px;
}

textarea#service-notes {
  width: 100%;
  border-radius: 4px;
  resize: none;
}

.sr-table {
  margin-bottom: 0px;
}

tbody.serv-repairs {
  display: block;
  overflow: auto;
  height: 200px;
  width: 100%;
}

.serv-repairs td {
  width: 100%;
}

select, ul.scroll-list {
  max-height: 180px !important;
  overflow-y: scroll !important;
  border: 2px solid #428bca;
}

ul.scroll-list {
  list-style-type: none;
  margin: 0;
  padding: 5px;
}

li.list-items {
  margin: 0;
  padding: 1px;
}

li.next a {
  background-color:#FFBC64;
  color:white;
  font-weight:bold;
}

label.list-label {
  display: block;
  color: WindowText;
  background-color: Window;
  margin: 0;
  padding: 0;
  width: 100%;
}

label:hover.list-label {
  background-color: #FFBC64;
  color: HighlightText;
}

.panel-title {
  font-weight: bold;
  text-align: center;
}

.panel-heading a:after {
  font-family:'Glyphicons Halflings';
  content:"\e114";
  float: right;
  color: grey;
}
.panel-heading a.collapsed:after {
  content:"\e080";
}

.pkg-price {
	margin-left:40px;
	font-weight: bolder;
	font-size: 22px;
	color: #428bca;
}
.tax {
	font-weight: bolder;
	font-size: 10px;
	color: #428bca;
}
.insp-title{
	font-weight: bolder;
}
.insp-items {
	font-size: 11px;
	color: #4D4E50;
}
.panel-title a {
  display: block;
  padding: 10px 15px;
  margin: -10px -15px;
}
.package-alert{
	font-size: 11px;
	color: #408D0D;
}

/* Scheduler Calendar */
table.scroller {
  width: 100%;
}
table.scroller, td.scroller {
  border-collapse: collapse;
  border: 0px solid #CCC;
}
thead.scroller {
  display: table; /* to take the same width as tr */
  width: calc(100%/* - 17px*/); /* - 17px because of the scrollbar width */
}
tbody.scroller {
  display: block; /* to enable vertical scrolling */
  max-height: 350px; /* e.g. */
  overflow-y: scroll; /* keeps the scrollbar even if it doesn't need it; display purpose */
}
th.scroller, td.scroller {
  width: 33.33%; /* to enable "word-break: break-all" */
  padding: 5px;
  word-break: break-all; /* 4. */
}
tr.scroller {
  display: table; /* display purpose; th's border */
  width: 100%;
  box-sizing: border-box; /* because of the border (Chrome needs this line, but not FF) */
}
td.scroller {
  text-align: center;
  border-bottom: none;
  border-left: none;
}

/* Transportation Radio */
.rad-label {
  display: flex;
  align-items: center;

  border-radius: 100px;
  margin: 5px 0;

  cursor: pointer;
  transition: .3s;
}

.rad-label:hover,
.rad-label:focus-within {
  background: hsla(0, 0%, 80%, .14);
}

.rad-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}

.rad-design {
  width: 22px;
  height: 22px;
  border-radius: 100px;

  background: #428bca;
  position: relative;
}

.rad-design::before {
  content: '';

  display: inline-block;
  width: inherit;
  height: inherit;
  border-radius: inherit;

  background: hsl(0, 0%, 90%);
  transform: scale(1.1);
  transition: .3s;
}

.rad-input:checked+.rad-design::before {
  transform: scale(0);
}

.rad-text {
  color: hsl(0, 0%, 60%);
  margin-left: 14px;
  font-size: 15px;

  transition: .3s;
}

.rad-input:checked~.rad-text {
  color: hsl(0, 0%, 40%);
}

/* Review Page */
.appt-verify td {
  padding: 8px;
}

.circle-icon {
    background: #d0e2f1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    vertical-align: middle;
    padding: 10px;
}
