﻿/* Basic color scheme
.dtt-blue	- #0e00ab
.dtt-gold	- #ffd701 	

/* color shades
.dtt-blue-wash-90	-	#d6d6f5
.dtt-blue-wash-95	-	#e8e6ff
*==============================CSS styles start here =================================================
/* set body background color and font */
body {
}


/* banner styles */

/* footer styles */
.dtt-footer {
	color: #303030;
	font-size:small;
}
.dtt-footer a {
	color:darkgray;
}

/* text colors */
.dtt-blue {
	color: #0e00ab;
}
.dtt-blue-90 {
	color: #d6d6f5;
}
.dtt-gold {
	color: #ffd701;
}

/* washes */
.dtt-wash-blue-90 {
	background-color: #d6d6f5;
}
.dtt-wash-blue-95 {
	background-color: #e8e6ff;
}
.dtt-wash-gold-90 {
	background-color: #fff7cc;
}
.dtt-wash-gold-95 {
	background-color: #fffbe6;
}
.dtt-wash-footer {
	background-color: #d6d6f5;
}
.dtt-wash-draft {
	background-color: lightsteelblue;
}
/*  borders */
.dtt-border-blue {
	border: 1px #0e00ab solid;
	border-radius: 5px 5px 5px 5px;
}
.dtt-border-blue-90 {
	border: 1px #d0ccff solid;
	border-radius: 5px 5px 5px 5px;
}
.dtt-border-blue-80 {
	border: 1px #a299ff solid;
	border-radius: 5px 5px 5px 5px;
}
.dtt-border-blue-70 {
	border: 1px #7366ff solid;
	border-radius: 5px 5px 5px 5px;
}
.dtt-border-rounded {
	border-radius: 5px 5px 5px 5px;
}
/* list styles */
.dtt-tour-list {
	list-style-type: square;
	margin-bottom:0;
}
.dtt-tour-list li {
	margin-top: 0;
}
/* ==== card styling on individual tours pages ==== */

.dtt-tour-about {
/*
	border-radius: 5px;
	border-color: #D3D3D3; 
	border-width: 1px; 
	border-style: solid solid solid solid
*/
}

/* misc styling */
.dtt-card-top {
	margin-top: 1.00em;
}

/* fix to make tour cards equal height when side-by-side - may be redundant */
@media screen and (min-width: 768px) {
  .dtt-card-text {
	min-height: 6.0em;
	}
@media screen and (min-width: 576px) {
  .dtt-card-text {
	min-height: 8.0em;
	}
}

.dtt-map {
	width: 90%;
	height: 90%;
}

/* horizontal 'soft' line "dtt blue" rgba(0, 0, 215, 1) */
hr.soften-blue {
  height: 1px;
  background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0, 0, 215, 0.8), rgba(0,0,0,0));
  background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0, 0, 215, 0.8), rgba(0,0,0,0));
  background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0, 0, 215, 0.8), rgba(0,0,0,0));
  background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0, 0, 215, 0.8), rgba(0,0,0,0));
  border: 0;
}

/* slider pro customizations - blue */
.sp-button {
	border: 2px solid #0e00ab;
}

.sp-selected-button {
	background-color: #0e00ab;
}

/* customized navbar */
.dtt-navbar {
	background-color: #d6d6f5;
}
.dtt-navbar .navbar-nav .nav-link {
	color: #000000;
}
.dtt-navbar .navbar-nav .nav-link:focus, .dtt-navbar .navbar-nav .nav-link:hover {
	color: #ffffff;
	background-color: #0e00ab;
}



