/* This file will hold styles for the mobile version of your website (mobile first). */
/* This also can include ANY global CSS that applies site-wide. Unless overwritten by a more specific style rule, CSS declarations in global.css will apply site-wide. */

/* Only component related styles in this file 
 * 
 * Created by: Michael Merrill
 */
 
 #omni-autocomplete-simple #edit-cb-simple-search-input,
 #omni-autocomplete-simple label  {
 	cursor: auto;
 	width: 100%;
 }


/**
 * Download List
 */
.btn-group {
	margin-bottom: 30px;
}

/* Desktop */
@media all and (min-width: 992px) {
	.btn-group .dropdown-toggle {
		display: none;
	}
	
	/* 2 Column List */
	.column-two {
		margin-left: 12em;
		position: relative;
	}
	
	.reset {
		margin-top: -624px;
	}
	
	.dropdown-menu {
		line-height: 24px;
	}
	
}

/* Tablet and Mobile */
@media screen and (max-width: 991px) {
	/**
	 * Download List
	 */
	.caret {
		right: 3%;
		position: absolute;
		top: 45%;
	}

	.dropdown {
		position: relative;
	}
	
	.btn-group,
	.dropdown-toggle {
		width: 100%;
	}
	
	.dropdown-menu {
		height: 250px;
		overflow-y: scroll;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: none;
		float: left;
		width: 100%;
		padding: .5em 1em;
		margin: 2px 0 0;
	 	list-style: none;
		background-color: #ffffff;
		border: 1px solid #cccccc;
		border: 1px solid rgba(0, 0, 0, 0.15);
		border-radius: 4px;
		-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
		background-clip: padding-box;
	}
	
	.btn {
		text-align: left;
	 	display: inline-block;
	 	padding: .5em 1em;
	 	margin-bottom: 0;
	 	white-space: nowrap;
	 	vertical-align: middle;
	 	cursor: pointer;
	 	background-image: none;
	 	border: 1px solid transparent;
	 	border-radius: 4px;
	}
	
	.dropdown-menu li a {
	 	display: block;
	 	padding: 3px 10px;
	 	clear: both;
		color: #333; /* Grey */
		font-weight: normal;
		white-space: nowrap;
	}
	
	.dropdown-menu li a:hover,
	.dropdown-menu li a:focus {
		color: #262626;
		text-decoration: none;
		background-color: #f5f5f5;
	}
}


/**
 * Modal
 */
.modal-dialog label {
	font-weight: normal; 
}
 
.modal-content {
	padding: 10px 30px 0 30px;
}

.modal-content .modal-close-btn {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 30px;
	background: #dadada;
	padding: 7px 14px;
}

.modal-dialog .modal-content h2 {
	margin-top: 10px;
	margin-bottom: 20px;
	color: #003366;
	font: 22px/24px "SerifaStd-Bold","Georgia","Times New Roman","serif";
}

.content .modal-dialog {
	margin-top: 10%;
}

.modal-content .modal-form input {
	margin-right: 10px;
}

.modal-content .download-btn-wrapper {
	position: absolute;
	right: 30px;
	bottom: 0;
}

@media screen and (max-width: 650px) {
	.modal-dialog .modal-content .download-btn-wrapper {
		position: static;
		margin-top: 20px;
	}
}


/**
 * Collaspible fields
 */
.main-content-wrapper .content .panel {
	-webkit-box-shadow: none;
	box-shadow: none;
}
 
/* Desktop and  Tablet */
@media all and (min-width: 768px) {
	.panel .panel-heading {
		display: none;
	}
	
	.panel .panel-collapse {
		display: block;
	}
	
	.main-content-wrapper .panel {
		border: 0;
	}
}

/* Mobile */
@media screen and (max-width:  767px) {
	/**
	 * Collaspible fields
	 */
	.main-content-wrapper .panel .panel-heading,
	.main-content-wrapper .content .panel {
		padding: 0;
		border: 0;
		background: none;
		background-image: none;
	}
}
.modal p, .modal label{
font: 14px/20px "helvetica","arial","sans-serif";
}

.modal .download-btn {
	position: relative;
	display: inline-block;
	padding: 0 44px 0 13px;
	background: #003366 url('../images/dl-btn-bg.png') no-repeat top right;
	background-size: 100% 100%;
	color: #FFF; /* white */
	height: 30px;
	font: normal 18px/34px "SerifaStd-Roman", "Georgia", "Times New Roman", "serif";
}

.modal .dl-icon {
	position: absolute;
	right: 13px;
	top: 7px;
	background: url('../images/dl-icon.png') no-repeat;
	width: 18px;
	height: 16px;
	color: transparent;
	font-size: 0;
}


.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
          transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
          transition: height 0.35s ease;
}

.modal-open {
  overflow: hidden;
}

body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  margin-right: 15px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: auto;
  overflow-y: scroll;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
     -moz-transition: -moz-transform 0.3s ease-out;
       -o-transition: -o-transform 0.3s ease-out;
          transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog {
  z-index: 1050;
  width: auto;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .modal-dialog {
    right: auto;
    left: 50%;
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}


label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */

  line-height: normal;
}


button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
}

button,
input {
  line-height: normal;
}


.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.adobe-banner {
	padding: 1em;
    border: 1px solid grey;
    margin-bottom: 1em;
}

.adobe-banner p{
 	margin: 0;
}

.adobe-banner span{
	color: grey;
}
