﻿@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

* {
    outline: none;
}

::-webkit-scrollbar {
    width: 13px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background: #fff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background: dodgerblue;
    min-height: 30px;
}

html, body {
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: Arial, Helvetica, sans-serif;
}

select, input {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.4);
}

select:focus, input:focus {
    outline: none;
    box-shadow: 1px 1px 4px dodgerblue;
}

ib {
    display: inline-block;
}

/* Custom Date interaction */
input[type="date"] {
	cursor: pointer;
	position: relative;
}

/* create a new arrow, because we are going to mess up the native one
see "List of symbols" below if you want another, you could also try to add a font-awesome icon.. */
input[type="date"]:after {
	content: "\25BC";
	color: #555;
	padding: 0 5px;
}

/* change color of symbol on hover */
input[type="date"]:hover:after {
	color: #bf1400;
}

/* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: auto;
	height: auto;
	color: transparent;
	background: transparent;
}

/* adjust increase/decrease button */
input[type="date"]::-webkit-inner-spin-button {
	z-index: 1;
}

/*.btn-primary {
    color: #fff;
    background-color: cornflowerblue;
    border-color: #2e6da4;
}*/

/* End Custom Date interaction */

.link-like {
    cursor: pointer;
    color: #337ab7;
}

.link-like:hover {
    color: blue;
}

/* Container */

.sort-hover:hover {
    cursor: pointer;
    background: dodgerblue;
    color: white;
}

/* Login */
.login-bg {
    background-image: url(/images/car_showroom.jpg);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.login-bg-dampen {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
}

/* Loader */

.loadingWrapper {
    position: absolute;
    top: 0;
    height: 5000px;
    background: rgba(0, 0, 0, .45);
    z-index: 99;
    display: none;
}

.loaderTextWrapper {
    background-color: #fff;
    float: none !important;
    margin: 0 auto;
    position: fixed;
    top: 22.5%;
    left: 29%;
    box-shadow: 5px 9px 20px #262525;
    padding: 2% 0;
}

.loadingMessage {
    font-size: 2.5em;
    opacity: 1;
}

.videoContainer {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.videoPlayButton {
    height: 100px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.copy-text {
    cursor: copy;
}

/* Subview Implementation */

.subview {
    display: none;
    position: fixed;
    top: 10%;
    left: 0;
    right: 0;
    border: none;
    border-radius: 5px;
    width: 85%;
    height: 80%;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ddd;
    box-shadow: 0 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 0 1px 3px rgba(0, 0, 0, 0.2);
    color: #333;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.25em;
    z-index: 887;
}

.subviewContent {
    margin-top: 3%;
    height: 88%;
    overflow-y: auto;
    font-weight: 700;
}

.subviewContent table thead tr th {
    text-align: center;
}

.subviewTable {
    background: #fff;
    width: 100%;
    padding: .5% 0;
    overflow: scroll;
    font-weight: bold;
    font-size: 16px;
}

.subviewTable > thead > tr > th {
    padding: .5%;
    box-sizing: border-box;
    border-bottom: solid 3px #ddd;
    border-top: solid 1px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    background: #357ebd;
    color: white;
    font-weight: 100;
}

.subviewTable > tbody > tr {
    box-shadow: 1px 1px 2px #fff;
}

.subviewTable tbody tr td {
    padding: .25%;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-bottom: solid 3px #ddd;
    border-top: solid 1px #ddd;
}

.subviewX {
    position: absolute;
    top: 1%;
    right: 0.5%;
    font-size: 1.3em;
    border: none;
    border-radius: 5px;
    background: transparent;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    outline: none;
}

.subviewX:hover {
    background: firebrick;
}

.btn-text-with-icon {
    position: relative;
    top: -5px;
    left: 3px;
    font-size: 1.15em;
    padding-left: .5%;
}

.form-btn-text-with-icon {
    padding-left: 1.5%;
}

/* showAlert modal */

#alertContainer, .alertContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    padding: 1%;
    text-align: center;
    font-size: 2em;
    z-index: 1000;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 1px 1px 4px #000;
    background: rgba(33,33,33,0.95);
    backdrop-filter: blur(5px);
    color: white;
}

.alertContainer input, .alertContainer textarea {
    color: black;
}

/* showConf modal */

#msgContainer, .msgContainer {
	background: rgba(43,43,43,0.93);
	backdrop-filter: blur(10px);
	border-radius: 0;
	padding: 0;
	overflow-y: initial;
    max-height: 80vh;
    width: 40%;
	z-index: 1001;
}

.msgContainer .row {
	margin-left: 0;
	margin-right: 0;
}

.msgContainer hr {
	border-top: 1px solid white;
}

#msgContainer section, .msgContainer section {
	margin-top: 20px;
}

#msgContainer .window-top, .msgContainer .window-top {
	position: absolute;
	top: -45px;
	cursor: move;
	width: 100%;
	height: 25px;
	border-bottom: 1px solid rgba(0,0,0,0.5);
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	padding: 5px;
	background-color: #ddd;
    box-shadow: 1px 1px 4px #000;
}

#msgContainer .round, .msgContainer .round {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	border: none;
	margin-right: 6px;
	box-shadow: 1px 1px 2px #000;
	position: absolute;
	right: 5px;
	top: 5px;
}

#msgContainer .round.red, .msgContainer .round.red {
	background-color: red;
}

#msgContainer .content, .msgContainer .content {
	max-height: 620px;
	overflow-y: auto;
}

#msgContainer .content .msg-content, .msgContainer .content .msg-content {
	padding: 1%;
}

#msgContainer .content .btn-content, .msgContainer .content .btn-content {
	position: relative;
	bottom: 35px;
}

.msgContainer textarea.apa-getText {
    width: 100%;
    height: 250px;
    padding: 5px;
    font-size: 1.1em;
}

.msgContainer input.apa-getText {
    width: 100%;
    padding: 5px;
    font-size: 1.1em;
}

.msgContainer .apa-ok-input-required {
    display: none;
    background: red;
    padding: 3px 5px 0px 5px;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    position: absolute;
    bottom: -10px;
}

/* Panel Modal */

#panelContainer {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 2000;
    background-color: transparent;
}

#panelContainer tab {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 225px;   
    padding: 5px;
    margin-left: 10px;
    font-weight: bold;
    border-bottom: 1px solid rgba(0,0,0,0.5);
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	background-color: #ddd;
    color: black;
    box-shadow: 1px 1px 4px #000;
}

#panelContainer tab:hover {
    background: #005387;
    color: white;
}

#panelContainer tab controlContainer {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#panelContainer tab controlContainer control {
    display: inline-block;
    font-weight: bold;
    margin-right: 8px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: none;
    box-shadow: 1px 1px 2px #000;
    opacity: 0.8;
    transition: 0.4s;
}

#panelContainer tab controlContainer control[data-command="close"] {
    background-color: red;
}

#panelContainer tab controlContainer control[data-command="minimize"] {
    display: none;
    background-color: yellow;
}

#panelContainer tab controlContainer control:hover {
    opacity: 1;
}

#panelContainer .panelSpawn {
    visibility: hidden;
    background: rgba(43,43,43,0.93);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 0;
    overflow-y: initial;
    max-height: 80vh;
    z-index: 1001;
}

#panelContainer .panelSpawn .content {
    max-height: 620px;
    width: 450px;
    background: #333;
    color: white;
}

#panelContainer .panelSpawn .content .msg-content {
    padding: 5%;
}

#panelContainer .panelSpawn .row {
	margin-left: 0;
	margin-right: 0;
}

#panelContainer .panelSpawn hr {
	border-top: 1px solid white;
}

#panelContainer .panelSpawn section {
	margin-top: 20px;
}

#panelContainer .panelSpawn .window-top {
    position: absolute;
    top: -43px;
    width: 100%;
    height: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.5);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding: 5px;
    background-color: #ddd;
    box-shadow: 1px 1px 4px #000;
    text-align: right;
}

#panelContainer .panelSpawn .window-top control {
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 8px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: none;
    box-shadow: 1px 1px 2px #000;
    opacity: 0.8;
    transition: 0.4s;
}

#panelContainer .panelSpawn .window-top control:hover {
    opacity: 1;
}

#panelContainer .panelSpawn .window-top control[data-command="close"] {
    background-color: red;
}

#panelContainer .panelSpawn .window-top control[data-command="minimize"] {
    background-color: yellow;
}

/* End Panel Styles */

.mp-info-circle {
    display: inline-block;
    cursor: help;
    height: 16px;
    width: 16px;
    background: #357ebd;
    border-radius: 50%;
    vertical-align: top;
    position: relative;
}

.mp-info-icon {
    position: absolute;
    color: white;
    top: 10%;
    left: 25%;
    font-size: 0.8em;
}

/* line 7, ../../app/styles/main.scss */
.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.text-right {
    text-align: right;
}

/* line 14, ../../app/styles/main.scss */
.equity, .highapr {
    font-weight: bold;
    color: #1ED037;
}

#dealerIndexTable tbody tr:hover {
    box-shadow: 1px 1px 8px rgba(0,0,0,0.2), 1px -1px 8px rgba(0,0,0,0.2);
}

li.list-group-item:hover {
    box-shadow: 1px 1px 8px rgba(125,125,125,.2),-1px 1px 8px rgba(125,125,125,.2), 1px -1px 8px rgba(125,125,125,.2), -1px -1px 8px rgba(125,125,125,.2);
}

/* Nav bar*/

#navmenu,
#navmenu ul,
#navmenu ul li,
#navmenu ul li a,
#navmenu #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 99998;
    -webkit-overflow-scrolling: touch;
}

#navmenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
}

#navmenu:after,
#navmenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

#navmenu #menu-button {
    display: none;
}

#navmenu {
    font-family: Montserrat, sans-serif;
    background: #005387;
    height: 46px;
}

#navmenu > ul > li {
    float: left;
}

#navmenu.align-center > ul {
    font-size: 0;
    text-align: center;
}

#navmenu.align-center > ul > li {
    display: inline-block;
    float: none;
}

#navmenu.align-center ul ul {
    text-align: left;
}

#navmenu.align-right > ul > li {
    float: right;
}

#navmenu > ul > li > a {
    padding: 17px;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #dddddd;
    font-weight: 700;
    text-transform: uppercase;
}

#navmenu > ul > li:hover > a {
    color: #ffffff;
}

#navmenu > ul > li.has-sub > a {
    padding-right: 30px;
}

#navmenu > ul > li.has-sub > a:after {
    position: absolute;
    top: 22px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: '';
}

#navmenu > ul > li.has-sub > a:before {
    position: absolute;
    top: 19px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: '';
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

#navmenu > ul > li.has-sub:hover > a:before, #navmenu > ul > li.has-sub.is-hovered > a:before {
    top: 23px;
    height: 0;
}

#navmenu ul ul {
    position: absolute;
    left: -9999px;
}

#navmenu.align-right ul ul {
    text-align: right;
}

#navmenu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

#navmenu li:hover > ul {
    left: auto;
}

#navmenu.align-right li:hover > ul, #navmenu.align-right li.is-hovered > ul {
    left: auto;
    right: 0;
}

#navmenu li:hover > ul > li {
    height: 35px;
}

#navmenu ul ul ul {
    margin-left: 100%;
    top: 0;
}

#navmenu.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}

#navmenu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 11px 15px;
    width: 240px;
    font-size: 12px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    background: #ffffff;
}

#navmenu ul ul li:last-child > a,
#navmenu ul ul li.last-item > a {
    border-bottom: 0;
}

#navmenu ul ul li:hover > a,
#navmenu ul ul li a:hover {
    color: #005387;
}

#navmenu ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #000000;
    content: '';
}

#navmenu.align-right ul ul li.has-sub > a:after {
    right: auto;
    left: 11px;
}

#navmenu ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #000000;
    content: '';
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

#navmenu.align-right ul ul li.has-sub > a:before {
    right: auto;
    left: 14px;
}

#navmenu ul ul > li.has-sub:hover > a:before, #navmenu ul ul > li.has-sub.is-hovered > a:before {
    top: 17px;
    height: 0;
}

#navmenu.small-screen {
    width: 100%;
}

#navmenu.small-screen ul {
    width: 100%;
    display: none;
}

#navmenu.small-screen.align-center > ul {
    text-align: left;
}

#navmenu.small-screen ul li {
    width: 100%;
    border-top: 1px solid rgba(120, 120, 120, 0.2);
}

#navmenu.small-screen ul ul li,
#navmenu.small-screen li:hover > ul > li {
    height: auto;
}

#navmenu.small-screen ul li a,
#navmenu.small-screen ul ul li a {
    width: 100%;
    border-bottom: 0;
}

#navmenu.small-screen > ul > li {
    float: none;
}

#navmenu.small-screen ul ul li a {
    padding-left: 25px;
}

#navmenu.small-screen ul ul ul li a {
    padding-left: 35px;
}

#navmenu.small-screen ul ul li a {
    color: #dddddd;
    background: none;
}

#navmenu.small-screen ul ul li:hover > a,
#navmenu.small-screen ul ul li.active > a {
    color: #ffffff;
}

#navmenu.small-screen ul ul,
#navmenu.small-screen ul ul ul,
#navmenu.small-screen.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
}

#navmenu.small-screen > ul > li.has-sub > a:after,
#navmenu.small-screen > ul > li.has-sub > a:before,
#navmenu.small-screen ul ul > li.has-sub > a:after,
#navmenu.small-screen ul ul > li.has-sub > a:before {
    display: none;
}

#navmenu.small-screen #menu-button {
    display: block;
    padding: 17px;
    color: #dddddd;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

#navmenu.small-screen #menu-button:after {
    position: absolute;
    top: 22px;
    right: 17px;
    display: block;
    height: 4px;
    width: 20px;
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    content: '';
    box-sizing: content-box;
}

#navmenu.small-screen #menu-button:before {
    position: absolute;
    top: 16px;
    right: 17px;
    display: block;
    height: 2px;
    width: 20px;
    background: #dddddd;
    content: '';
    box-sizing: content-box;
}

#navmenu.small-screen #menu-button.menu-opened:after {
    top: 23px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#navmenu.small-screen #menu-button.menu-opened:before {
    top: 23px;
    background: #ffffff;
    width: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#navmenu.small-screen .submenu-button {
    position: absolute;
    z-index: 99999;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.2);
    height: 46px;
    width: 46px;
    cursor: pointer;
}

#navmenu.small-screen .submenu-button.submenu-opened {
    background: #00436e;
}

#navmenu.small-screen ul ul .submenu-button {
    height: 34px;
    width: 34px;
}

#navmenu.small-screen .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: '';
}

#navmenu.small-screen ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
}

#navmenu.small-screen .submenu-button.submenu-opened:after {
    background: #ffffff;
}

#navmenu.small-screen .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: '';
}

#navmenu.small-screen ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
}

#navmenu.small-screen .submenu-button.submenu-opened:before {
    display: none;
}

#navmenu.small-screen.select-list {
    padding: 5px;
}

#navmenu ul {        
    padding-right: 10px;
}

#navmenu ul li ul li {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

#navmenu ul li ul li a:hover {
    background: #005387;
    color: #fff;
}

#navmenu-brand {
    position: fixed;
    top: 1%;
    left: 1%;
    z-index: 99999;
}

#navmenu-brand a img {
    height: 2em;
    width: auto;
}

#navmenu-brand a span {
    color: white;
    text-decoration: none;
    padding-left: 1em;
}

.title {
    font-weight: bold;
}


/* End Nav CSS for standard displays */




/* line 19, ../../app/styles/main.scss */
.body {
    font-size: 12px;
}

.table-bordered thead th {
    background: #357ebd;
    color: white;
}

.table-bordered thead th a {
    color: white;
}

#maplist th {
    background: none;
}

#maplist th a {
    font-weight: bold;
    color: #357ebd;
}

.table-striped tbody tr.highlight td {
    background-color: #1ED037;
    font-weight: bold;
}

.date-range {
    color: black;
}

.primary-color {
    color: #357ebd;
}

.primary-background-color {
    background-color: #357ebd;
}

.localhost-background-color {
    background-color: #357ebd;
}

.pinnacle-background-color {
    background-color: #000000;
}

.traffic-background-color {
    background-color: #dd0000;
}

.highlight {
    background-color: #1ED037;
    font-weight: bold;
}

.dealername {
    color: #357ebd;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    font-size: 28px;
    margin-top: 21px;
}

/* line 26, ../../app/styles/main.scss */

/* line 34, ../../app/styles/main.scss */
.header,
.marketing,
.footer {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0px;
    background-color: #FFF;
}

/* Custom page header */
/* line 44, ../../app/styles/main.scss */
.header,
.footer {
    color: #fff;
}
    /* line 48, ../../app/styles/main.scss */
    .header h3,
    .footer h3 {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 40px;
    }

/* Custom page footer */
/* line 56, ../../app/styles/main.scss */
.footer {
    position: fixed;
    height: 50px;
    background-color: #357ebd;
    bottom: 0;
    margin-bottom: 0;
    line-height: 60px;
}

/* line 65, ../../app/styles/main.scss */
.container-narrow > hr {
    margin: 30px 0;
}

/* Main marketing message and sign up button */
/* line 70, ../../app/styles/main.scss */
.jumbotron {
    text-align: center;
}
/* line 74, ../../app/styles/main.scss */
.jumbotron .btn {
    font-size: 16px;
    font-weight: bold;
}


.jumbotron p.lead img {
    display: block;
    height: auto;
    max-height: 180px;
    max-width: 100%;
    margin: auto;
    height: 100px;
}

/* Supporting marketing content */
/* line 81, ../../app/styles/main.scss */
.marketing {
    margin: 40px 0;
}

/* line 84, ../../app/styles/main.scss */
.marketing p + h4 {
    margin-top: 28px;
}

/* line 89, ../../app/styles/main.scss */
.reveal-animation {
    position: relative;
    top: 0;
    left: 0;
}


/* line 142, ../../app/styles/main.scss */
.widget {
    background: #fafafa;
    border: 1px solid #cfcfcf;
    clear: both;
    margin-top: 0px;
    margin-bottom: 30px;
    border-radius: 3px;
}

    /* line 153, ../../app/styles/main.scss */
    .widget .widget-header {
        background-color: #357ebd;
        background-image: linear-gradient(top, #fcfcfc, #e8e8e8);
        border-radius: 2px 2px 0 0;
        border-bottom: 1px solid #cfcfcf;
        height: 42px;
        padding: 0px 15px;
        line-height: 42px;
        color: #FFFFFF;
    }

    /* line 171, ../../app/styles/main.scss */
    .widget .widget-body {
        padding: 15px;
        border-bottom: 1px solid #b3b3b3;
        border-radius: 0 0 2px 2px;
    }

    /* line 179, ../../app/styles/main.scss */
    .widget .form-group {
        margin-top: 10px;
        margin-bottom: 10px;
        vertical-align: middle;
    }

/* line 185, ../../app/styles/main.scss */
.dashboard-wrapper {
    position: relative;
    background: #ffffff;
    min-height: 680px;
    padding: 9px 4px 4px 4px;
}

/* line 199, ../../app/styles/main.scss */
.divcenter {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

/* line 206, ../../app/styles/main.scss */
.hover {
    cursor: pointer;
}

.brand-image {
    float: left;
    height: 32px;
    margin: -7px 0 0 20px;
}

.tab-wrapper {
    clear: both !important;
    display: block !important;
}

.tab-wrapper .widget-body {
    padding-left: 0 !important;
    padding-top: 15px;
    display: block !important;
    clear: both !important;
}

.widget-body table {
    max-width: 100% !important;
}

.widget-body .dataTables_wrapper #customerTable {
    width: 100% !important;
}

.widget-body .dataTables_wrapper .dataTables_length {
    clear: both !important;
}


/*Validation Summary*/
.validationSummary ul li {
    list-style-type: none !important;
    position: relative;
    left: -15px;
}

/*Manifest Table*/
#manifestTable #customerTable {
    clear: both;
    margin-top: 25px;
}

/*Export-Link*/
.tab-wrapper .exportLink {
    position: relative;
    top: 36px;
}

.exportLink:hover {
    cursor: pointer;
}

.exportLink[disabled=disabled]:hover {
    cursor: not-allowed;
}


/* Manifest Search*/
.manifestSearchWrapper {
    margin-top: 15px;
    width: 100%;
}


/* Mapping Styles */
#map, #cdttmap {
    position: fixed;
    height: 95%;
    top: 5%;
    width: 100%;
    z-index: 1;
}

#cdttmap {
    visibility: hidden;
}

#gridHolder {
    height: 67vh;
    background: white;
    border: 1px solid rgba(0,0,0,0.3);
    overflow-y: scroll;
}

#gridHolder tr {
    cursor: pointer;
}

#theader {
    padding: 5px 1em;
    font-size: 1.5em;
    background: rgb(53,126,189);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    text-align: center;
    width: 100%;
}

#zcdealername {
    font-size: 1.5em;
}

#ogridContainer, #cdttGridContainer {
    position: fixed;
    z-index: 999;
    left: 0.75%;
    top: 16%;
    width: 23.5%;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#cdttGridContainer {
    visibility: hidden;
}

#maplegend {
    position: fixed;
    z-index: 1000;
    bottom: 2.5%;
    right: 1px;
    background: #383838;
    background: rgba(34,34,34,0.9);
    color: white;
    padding: 0.75em;
    border-radius: 5px;
}

#maplegend {
    visibility: hidden;
}

#maplegend span, #maplegend span {
    margin-left: 10px;
}

.PolyGroup {
    display: inline-block;
    width: 20px;
    border: none;
    border-radius: 5px;
}

.PolyGroup1 {
    background: #ff3838;
    background: rgba(255,0,0,0.78);
}

.PolyGroup2 {
    background: #ff5838;
    background: rgba(255,42,0,0.78);
}

.PolyGroup3 {
    background: #ff7a38;
    background: rgba(255,85,0,0.78);
}

.PolyGroup4 {
    background: #ff9338;
    background: rgba(255,117,0,0.78);
}

.PolyGroup5 {
    background: #ffbb38;
    background: rgba(255,169,0,0.78);
}

.PolyGroup6 {
    background: #ffdd38;
    background: rgba(255,212,0,0.78);
}

.PolyGroup7 {
    background: #ffdd38;
    background: rgba(255,255,0,0.2);
}

.PolyGroupSuperSpecial {
    background: #ffff38;
    background: rgba(255,255,0,0.78);
}

.PolyGroup8 {
    background: #3899fb;
    background: rgba(0, 125, 250, 0.78);
}

.namesGridContainer {
    display: none;
    margin: 5% auto 0;
}

#toggleCountsNames {
    visibility: hidden;
    position: absolute;
    top: 10%;
    left: 0.75%;
    z-index: 999;
    width: 28%;
    padding: 10px;
    color: white;
    font-size: 1.25em;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

#toggleCountsNames:hover {
    color: #d9534f;
    background: white;
}

#hoverInfoWindow {
    display: none;
    position: fixed;
    z-index: 9999999;
    width: auto;
    max-width: 30vw;
    max-height: 85vh;
    overflow-y: auto;
    background: rgba(33,33,33,0.9);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #7f7f7fab, -1px -1px 1px #7f7f7fab;
    padding: 10px;
    font-size: 1em;
    word-break: break-word;
}

.filter-list li:hover {
    background: rgba(30,144,255,0.2);
}

.ttNameGridHighlight {
    background: lightgreen;
}

#loader {
    position: fixed;
    top: 30%;
    left: 45%;
}

#filterTableLease {
    width: 25%;
    padding: 9px;
}

#filterTableLeaseLabel {
    font-size: 1.25em;
}

#filterContainer {
    color: #000;
    text-align: center;
}

    #filterContainer input {
        width: 80%;
    }

    #filterContainer label {
        cursor: pointer;
    }

/* Alerts */


/* Sales Zip Trending */
#sztBreakdown {
    display: none;
    position: fixed;
    top: 30%;
    left: 40%;
    z-index: 99999999;
    background: #fff;
    width: 650px;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 5px;
    padding: 5px 20px;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

    #sztBreakdown h3 {
        color: #357ebd;
        text-align: center;
        font-weight: bold;
    }

    #sztBreakdown h4 {
        text-align: center;
    }

    #sztBreakdown hr {
        color: rgba(0,0,0,0.5);
        border: 1px solid rgba(0,0,0,0.5);
    }

    #sztBreakdown p {
        text-align: center;
    }

#sztControls {
    position: fixed;
    top: 81%;
    left: 0.75%;
    z-index: 9999999;
}

#sztPlay {
    font-size: 1.25em;
    font-weight: bold;
}

/* Add User --Regular Styles */

#passwordContainer, #confirmPasswordContainer, #containerTable, #msg {
    display: none;
}

#dealerTable > thead > tr > td {
    color: white;
}

.chkbox-lg {
    width: 24px;
    height: 24px;
}

.strong-txt-mp {
    font-weight: bold;
}

.adduser-alert-cancel-btn {
    margin-left: 40px;
}

#adduserAlertContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    max-height: 80vh;
    padding: 1%;
    text-align: center;
    font-size: 2em;
    z-index: 999999999;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 1px 1px 4px #000;
    background: #ddd;
    color: black;
}

.text-danger.validationSummary {
    font-size: 0.8em;
}

#confirmTable {
    font-size: 0.8em;
    text-align: left;
    border-collapse: separate;
    border-spacing: 0 20px;
}

#confirmTable tbody tr td:nth-child(1) {
    width: 25%;
}

#confirmTable tbody tr td:nth-child(2) {
    width: 100%;
    background: white;
    border-bottom: 1px solid #333;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
}

#currentCampaign {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 54.4px;
    left: 22px;
    border: none;
    padding: 5px;
    background-color: green;
    color: white;
    font-weight: bold;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

#currentCampaign:hover {
    box-shadow: 1px 1px 4px #333, 1px -1px 4px #333;
}

/* Stats Page Footer */

#statsFooter {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgb(51, 51, 51);
    color: #fff;
    text-align: center;
    font-size: 1.4em;
    height: 8%;
    box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 4px;
    text-shadow: rgb(0, 0, 0) 1px 1px 2px;
    overflow-y: hidden;
}

#statsFooter img {
    margin-right: 6px;
}

#statsFooter img.px36 {
    height: 48px;
    width: auto;
}

#statsFooter p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#statsFooter p a, #statsFooter p a:visited, #statsFooter p a:hover {
    color: #fff;
    text-decoration: none;
}

.lower-title {
    color: #357ebd;
    font-weight: bold;
    font-size: 20px;
}

.animated-hover:hover {
    cursor: pointer;
    animation: hover 0.7s forwards;
}

table.sticky-headers {
    position: relative !important;
}

table.sticky-headers > thead > tr > th {
    position: sticky !important;
    top: -1px !important;
    z-index: 3 !important;
}

/* Sliders */
.switch {
    position: relative;
    display: inline-block;
    height: 34px;
    /*width: 60px;*/
    min-width: 60px;
    width: auto;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:not(:checked) + span.slider.round {
    background: red;
}

input:checked + .slider {
    background-color: green;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Colors */
.purp-drank-highlight {
    background: rgb(147,112,219) !important;
    color: white !important;
}

.purp-drank-color {
    color: rgb(147,112,219) !important;
}

.gray-highlight {
    background: lightgrey !important;
}

.red-color {
    color: red !important;
}

.lightred-color {
    color: #ff5a5a !important;
}

.red-highlight-ni {
    background: firebrick !important;
    color: white !important;
}

.red-highlight-ni a:not(.btn) {
    color: #05c6ff !important;
}

.red-highlight {
    background: firebrick !important;
    color: white !important;
}

.cream-highlight {
    background: #fffdd0 !important;
}

.red-shadow {
    box-shadow: 1px 1px 4px red, -1px 1px 4px red;
}

.lightgreen-color {
    color: lightgreen !important;
}

.limegreen-color {
    color: limegreen !important;
}

.green-color {
    color: green !important;
}

.darkgreen-color {
    color: darkgreen !important;
}

.green-highlight {
    background: green !important;
    color: white !important;
}

.lightgreen-highlight {
    background: lightgreen !important;
    color: black !important;
}

.yellow-highlight {
    background-color: yellow !important;
    color: black !important;
}

.blue-color {
    color: blue;
}

.lightblue-color {
    color: lightblue;
}

.lightskyblue-color {
    color: lightskyblue;
}

.blue-highlight {
    background-color: lightblue !important;
    color: black !important;
}

.dodgerblue-color {
    color: dodgerblue;
}

.blue-highlight:hover {
    color: black !important;
}

.white-color {
    color: white !important;
}

.pink-color {
    color: #c600c6 !important;
}

.darken-bg {
    background: rgba(0,0,0,0.3);
}

#additionalInformationForMaps {
    position: fixed;
    z-index: 3;
    top: 65px;
    right: 20px;
    background: white;
    color: black;
    padding: 10px;
    width: 300px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#additionalInformationForMaps .additional-info-header {
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: underline;
}

/* Quill styles */
.ql-toolbar {
    background: white;
    color: black;
    text-align: left;
}

.notepad-btn-container {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.notepadArea {
    position: fixed;
    left: -5000px;
    z-index: 999;
    width: 39%;
    height: 72%;
    padding: 1vh 1vw;
}

.notepadArea-X {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 0.8em;
}

.notepadArea-X:hover {
    color: #b0b0b0;
}

.notepadArea .save-your-note, #notepadArea .close-note {
    font-size: 1.5vh;
}

.notepadArea .ql-toolbar {
    max-height: 11vh;
    width: 37vw;
}

#notepadTextArea, #notepadTextAreaDemo, #callNotesTextArea {
    display: block;
    font-size: 0.6em;
    padding: 5px;
    width: 37vw;
    height: 44vh;
    background: white;
    color: black;
}

#notepadAreaHistory {
    top: 50%;
    left: 28%;
    width: 30%;
    height: 72vh;
}

#notepadAreaHistoryList {
    list-style: none;
    padding: 0;
    margin-top: 3%;
    max-height: 82%;
    overflow-y: auto;
}

#notepadAreaHistoryList li {
    cursor: pointer;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    text-align: left;
    background: #fff;
    color: black;
    width: 100%;
    border-radius: 5px;
}

#notepadAreaHistoryList li:hover {
    box-shadow: 1px 1px 2px dodgerblue;
}

#notepadAreaHistoryList li .editorUsername {
    font-size: 18px;
    font-weight: bold;
    color: #0047c1;
}

#notepadAreaHistoryList li .editorTimestamp {
    color: green;
    font-style: italic;
}



.map-stats-click-through {
    display: none;
    color: transparent;
    text-shadow: 0 0 #00d01a;
}

.map-stats-click-through-img {
    height: 1em;
    width: auto;
}

.emoji {
    font-family: apple color emoji, segoe ui emoji, noto color emoji, android emoji, emojisymbols, emojione mozilla, twemoji mozilla, segoe ui symbol;
}

#drillDownMapPopUp {
    display: none;
    top: 6%;
    width: 95vw;
    height: 93vh;
    transform: translateX(-50%);
}

#drillDownMapPopUp-X {
    cursor: pointer;
    position: relative;
    top: -6px;
}

#drillDownMapIframe {
    width: 100%;
    height: 97%;
}

#backgroundBlackout {
    display: none;
    position: fixed;
    top: 44px;
    height: 96vh;
    width: 100vw;
    background: rgba(0, 0, 0, .45);
    z-index: 888;
}

#customerSearchStatsContainer {
    display: none;
    position: fixed;
    top: 0.6%;
    left: 15%;
    z-index: 99999;
}

#customerSearchStats {
    width: 310px;
    text-indent: 1.2em;
    padding: 6px;
}

#customerSearchStatsEmoji {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 3px;
    left: 0%;
}

#customerSearchTooltip {
    display: none;
    position: absolute;
    left: 0;
    top: 36px;
    background: #333333de;
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 5px;
    padding: 5px;
}

#hoverInfoClickContainer {
    font-size: 2.5vh;
}

.soldColumnText {
    position: relative;
    min-height: 100px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.select2-container .select2-selection--single {
    height: 32px;
}

.row.row-gap {
    margin-top: 20px;
}

.export-to-csv-btn {
    position: absolute;
    top: 5px;
    left: 5px;
}

.oppflag-base {
    display: block;
    width: 150px;
    color: white;
    border-radius: 5px;
    padding: 2px;
    margin-bottom: 5px;
    text-align: center;
}

.oppflag-buyback {
    background-color: #43aa8b;
}

.oppflag-cashdeal {
    background-color: firebrick;
}

.oppflag-extwar {
    background-color: #577590;
}

.oppflag-highinterest {
    background-color: #5faa3e;
}

.oppflag-lease {
    background-color: #c57512;
}

.oppflag-paidoff {
    background-color: #906ac5;
}

.oppflag-equity {
    background-color: #3698b5;
}

@keyframes hover {
    from {
        background-color: #fff;
        color: black;
    }

    to {
        background-color: #0166c8;
        color: white;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
        box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
}

/* Media Queries */
@media (min-width: 768px) {
    #cdttGridContainer {
        margin-top: 2.5%;
    }

    #theader {
        font-size: 1.25em;
    }

    #gridHolder {
        height: 55vh;
    }

    #toggleCountsNames {
        margin-top: 1%;
    }
}

@media screen and (max-width: 1367px) {
    .jumbotron {
        margin-top: -10%;
        width: 55%;
    }

    #customerSearchStatsContainer {
        display: none;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-top: 2.8%;
        width: 98%;
    }

    #ogridContainer, #cdttGridContainer {
        position: fixed;
        margin-top: 1.5%;
        left: 0.75%;
        top: 16%;
        width: 28%;
        box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
    /* Navbar */

    .container {
        width: 98%;
    }

    /* Login */

    .jumbotron {
        width: 100%;
    }

    /* Users view */

    .btn-group > a.btn-info[href="/Admin/AddUser"] {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    table.table-small-cs {
        font-size: 0.8em;
    }

    button.btn-delete-dealer-user {
        margin-top: 10px;
    }

    /* Add User */

    #adduserAlertContainer {
        top: 10%;
        left: 2.5%;
        width: 95%;
        max-height: 75%;
    }

    #brandPhone {
        display: none;
    }

    /* CompDB and Top Trades */

    #ogridContainer, #cdttGridContainer {
        font-size: 1.2rem;
        width: 60%;
    }

    #gridHolder {
        height: 30vh;
    }

    #maplegend {
        width: 80%;
        bottom: 10px;
        left: 10px;
        font-size: 1.2rem;
    }

    #theader {
        font-size: 1.3rem;
    }

    .PolyGroup {
        width: 12px;
    }

    #toggleCountsNames {
        font-size: 1.25rem;
        width: 60%;
    }

    #toggleCountsNames.showcounts {
        top: 54%;
    }

    #toggleCountsNames.shownames {
        top: 7%;
        left: 20%;
    }

    .namesGridContainer {
        margin: 12% auto 0;
    }
}


@media screen and (max-width: 480px) {
    #navmenu-brand {
        top: 1%;
        left: 3%;
    }

    #navmenu-brand a img {
        height: 2.5em;
        width: 8em;
    }

    #navmenu ul {
        padding-right: 0;
    }

    #navmenu ul li ul li {
        box-shadow: none;
    }
}

@media screen and (max-width: 320px) {
    #dealerIndexTable {
        font-size: 0.8em;
    }
}
