
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");

* {
	box-sizing: border-box;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #5e6773;
}
body {
  font-size: 1em; overflow-x: hidden;
}
a { color: #80a372; }
a:hover { color: #3c864d; }

.row { position: relative; }

/* Parralax Section */
.paral {
min-height: 400px;
background-attachment: fixed;
background-size: cover;
background-position: 50% 50%;
}

.paral p {
font-size: 24px;
color:#f5f5f5;
text-align: center;
line-height: 60px;
}

/* Heading for Parallax Section */ 
.paral h1 {
color: rgba(255, 255, 255, 0.8);
font-size: 60px;
text-align: center;
padding-top: 60px;
line-height: 100px;
}

/* Image for Parallax Section */ 
.paralsec {
	background-image: url("/assets/img/flooring_install.jpg");
}
/* Remove Bottom Margin from Jumbotron */
.jumbotron{margin-bottom: 0;}


.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
	overflow-x: hidden;
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {

}

.error { color:red; text-align: center; }

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-link.active {
  color: #007bff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.sidebar-toggle { visibility: visible; position:relative; top:0;  z-index: 1000; }

.sidebar-expanded { width: 225px; padding:10px; }
.sidebar-collapsed { visibility: hidden; width:0; padding:0; }
.sidebar-toggle-collapsed { left: 0px; }
main { width: calc( 100% - 280px); }
main.sidebar-collapsed-main { width: calc(100% - 60px); }

/* Forms */

label { width: 100%; }

.form-wrapper.login { max-width: 800px; margin: 25px auto; padding: 25px; background: #f4ffef; border-radius: 5px; }

.left { float:left; }
.right {float: right; }

/* Navbar */

.navbar-brand img{
  max-width: 300px;
}

a.nav-link {
    font-size: 1.2em;
}

.navbar .navbar-toggler {
  top: .25rem;
  right: 1rem;
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}
.nav-item.active .nav-link {
    color: green !important;
}
.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
.navbar-expand-md {
	box-shadow: inset -1px -1px 0 rgba(0, 0, 0, .1);
}
.badge {
    background-color: #777;
    border-radius: 10px;
    color: white;
    padding: 3px 8px;
    position: relative;
    top: -2px;
    left: 5px;
}

.copyright { text-align:center; }

/********************
 * INPUTS
 ********************/
.form-control {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border-color: #d0efff;
  background-color: #e8eaed;
  color: #0d0d0d;
  width:50%;
  float:right;
}

.form-control:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #e8e8e8;
  background-color: #e1e4e6;
}

.input-group .form-control, .input-group-addon, .input-group-btn {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.input-group-addon {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #e1e3ea;
  background-color: #f6f6f9;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.input-group-btn .btn {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.panel {
	box-shadow: none;
	margin-top: 15px;
    margin-bottom: 30px;
    border: 1px solid #c6e2fc;
    background: #c6e2fc;
}
.panel .panel-heading {
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    line-height: 1;
    border-bottom: 1px solid #c6e2fc;
    background-color: #c6e2fc;
}
.panel .panel-body {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

/********************
 * BUTTONS
 ********************/
.btn {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 6px 22px;
}

.btn:active, .btn.active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn:focus, .btn:focus:focus, .btn:active, .btn:active:focus, .btn.active, .btn.active:focus {
  outline: none;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 10px 28px;
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 5px 18px;
}

.btn-group-xs > .btn,
.btn-xs {
  padding: 2px 8px;
  font-size: 11px;
}

.btn-group.open .dropdown-toggle {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary {
  background-color: #4169E1;
  border-color: #4159E1;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #4169E1;
  border-color: #4159E1;
}

.btn-primary:active, .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.active, .btn-primary.active:hover, .btn-primary.active:focus {
  background-color: #4169E1;
  border-color: #4159E1;
}

.btn-primary .disabled.focus, .btn-primary .disabled:focus, .btn-primary .disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover {
  background-color: #006e43;
  border-color: #1a7647;
}

.open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
  background-color: #006e43;
  border-color: #1a7647;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(113,172,86,.5);
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #006e43;
    border-color: #1a7647;
}
.btn-warning {
  background-color: #e4cb10;
  border-color: #d6be0f;
}

.btn-warning:hover, .btn-warning:focus {
  background-color: #d6be0f;
  border-color: #d6be0f;
}

.btn-warning:active, .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.active, .btn-warning.active:hover, .btn-warning.active:focus {
  background-color: #d6be0f;
  border-color: #d6be0f;
}

.btn-warning .disabled.focus, .btn-warning .disabled:focus, .btn-warning .disabled:hover, .btn-warning[disabled].focus, .btn-warning[disabled]:focus, .btn-warning[disabled]:hover {
  background-color: #e4cb10;
  border-color: #d6be0f;
}

.open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover {
  background-color: #d6be0f;
  border-color: #d6be0f;
}

.btn-danger {
  background-color: #F9354C;
  border-color: #f9263f;
}

.btn-danger:hover, .btn-danger:focus {
  background-color: #f9263f;
  border-color: #f9263f;
}

.btn-danger:active, .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.active, .btn-danger.active:hover, .btn-danger.active:focus {
  background-color: #f9263f;
  border-color: #f9263f;
}

.btn-danger .disabled.focus, .btn-danger .disabled:focus, .btn-danger .disabled:hover, .btn-danger[disabled].focus, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover {
  background-color: #F9354C;
  border-color: #f9263f;
}

.open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover {
  background-color: #f9263f;
  border-color: #f9263f;
}

.btn-default {
  color: #5e6773;
  border-color: #e4e4e4;
  background-color: #fafbfc;
}

.btn-default:hover, .btn-default:focus {
  color: #5e6773;
  background-color: #f4f6f8;
  border-color: gainsboro;
}

.btn-default:active, .btn-default:active:hover, .btn-default:active:focus, .btn-default.active, .btn-default.active:hover, .btn-default.active:focus {
  color: #5e6773;
  background-color: #f0f3f6;
  border-color: gainsboro;
}

.open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
  color: #5e6773;
  background-color: #f0f3f6;
  border-color: gainsboro;
}

.btn-success {
  background-color: #41B314;
  border-color: #3ca512;
}

.btn-success:hover, .btn-success:focus {
  background-color: #3ca512;
  border-color: #3ca512;
}

.btn-success:active, .btn-success:active:hover, .btn-success:active:focus, .btn-success.active, .btn-success.active:hover, .btn-success.active:focus {
  background-color: #3ca512;
  border-color: #3ca512;
}

.btn-success .disabled.focus, .btn-success .disabled:focus, .btn-success .disabled:hover, .btn-success[disabled].focus, .btn-success[disabled]:focus, .btn-success[disabled]:hover {
  background-color: #41B314;
  border-color: #3ca512;
}

.open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover {
  background-color: #3ca512;
  border-color: #3ca512;
}

.btn-info {
  background-color: #5bc0de;
  border-color: #4ebbdb;
}

.btn-info:hover, .btn-info:focus {
  background-color: #4ebbdb;
  border-color: #4ebbdb;
}

.btn-info:active, .btn-info:active:hover, .btn-info:active:focus, .btn-info.active, .btn-info.active:hover, .btn-info.active:focus {
  background-color: #4ebbdb;
  border-color: #4ebbdb;
}

.btn-info .disabled.focus, .btn-info .disabled:focus, .btn-info .disabled:hover, .btn-info[disabled].focus, .btn-info[disabled]:focus, .btn-info[disabled]:hover {
  background-color: #5bc0de;
  border-color: #4ebbdb;
}

.open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover {
  background-color: #4ebbdb;
  border-color: #4ebbdb;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.btn-link {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.right-sidebar .btn {
  margin-bottom: 25px;
}

.right-sidebar .btn-default {
  background-color: white;
  color: #727b86;
}

.right-sidebar .btn-default:hover, .right-sidebar .btn-default:focus {
  background-color: white;
}

.btn-icon {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  color: #777;
  background-color: transparent;
}

.btn-icon:hover, .btn-icon:focus {
  color: #636363;
}

.btn-outline {
  background: transparent;
  border-color: #C4D6E3;
}

.btn-outline:hover, .btn-outline:focus {
  background: transparent;
  border-color: #a1bed3;
}

.btn-outline.btn-default {
  color: #7fa6c2;
}

.btn-outline.btn-primary {
  color: #00AAFF;
}

.btn-outline.btn-info {
  color: #5bc0de;
}

.btn-outline.btn-warning {
  color: #e4cb10;
}

.btn-outline.btn-danger {
  color: #F9354C;
}

.btn-outline.btn-success {
  color: #41B314;
}

.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  font-size: 200px !important;
  direction: ltr;
  cursor: pointer;
}
i.space { margin-right: 5px; }

/* Fixes for IE < 8 */
@media screen\9 {
  .fileinput-button input {
    font-size: 150% !important;
  }
}

.select-gallery {
    display: flex;
    flex-wrap: wrap;
}
.selection {
    width: 14%;
    margin: 1%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
	cursor: pointer;
}
.select-bound{ position: relative;
    border-radius: 15px;
    overflow: hidden;
	cursor: pointer; }
	
	


.selection.selected {width:60%; margin: 0 auto;}

.overlay {
    background-color: #8080808c;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: #000;
	text-align: center;
	z-index:20;
}
.center-all {
    display: flex;
    justify-content: center;
    align-items: center;
}

.selection:hover .overlay {
    background-color: transparent;
    color: #fff;
    align-items: baseline;
}

.total {
    float: left;
    margin: 0px 20px;
}
.pagination .page-link {
    border: 1px solid rgb(7, 190, 90);
    margin: 0 3px;
    padding: 2px 6px;
}

.navbar-nav > li > .dropdown-menu {
    padding: 0;
    min-width: 277px;
	padding: 8px;
}

/* Progress bars ********************/

.progress { height: 2rem; }

audio, canvas, progress, video { display: inline-block; vertical-align: baseline; }
.fade.in { opacity: 1; }
tr.selected.template-download {
    background-color: #f1e4e4 !important;
}

.expirationWrap, .measureWrap {
    width: 48%;
    float: left;
    margin: 1%;
}
label.checkwrap {
    width: 31%;
    float: left;
	text-align:right;
}
.expirationWrap label.checkwrap {width:40%;}
.expirationWrap label.checkwrap:first-child {width: 20%;text-align:left}
.checkwrap select {
    width: 65%;
}
input[type=checkbox], input[type=radio] {
    width: 20px;
    position: relative;
	top: -8px;
	right: -8px;
}
.clear { width: 100%; clear: both; }
hr { clear:both; }
.field-wrap > label, .field-wrap > .radiowrap, .field-wrap > .selectBase-wrap, .field-wrap > .numberwrap  { 
		width:48%; margin: 1%; float: left; }
.group-header { width:100%; clear:both; float:left; padding-top: 15px;}
.hidden { display:none; }
.edit {
    color: #008010;
    margin-left: 30px;
}
.estimate-wrap td {
    padding: 3px 5px;
}
.estimate-wrap table {
    width: 100%;
}

.field-wrap { position: relative; }

.helptext {
    position: absolute;
    width: 400px;
    border: 2px solid black;
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-left: 20px;
	display:none;
	z-index:100;
}
.helptitle {
    border-bottom: 1px solid rgb(62, 59, 59);
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 10px;
}
.help_btn, .help_gallery_btn {
    color: #4992ed; font-size: 1.2em;
}
.close_help {
    color: darkred;
    font-size: 20px;
    position: absolute;
    top: 7px;
    right: 7px;
}
.estimate-wrap tr td:first-child {
    width: 220px;
}
.center {
    float: none;
    display: inherit;
    text-align: center;
    margin: 0px auto;
}
.stateForm { display:none; }
.sgWrap {width: 100%; float:left; position:relative;}
.sgWrap.selected {width: 50%; float:left;}

.field-group {
    border-top: 1px solid black;
	border-bottom:1px solid black;
    padding-top: 10px;
}

.delete-room { position: absolute; top: -42px; right: 10px; }
.selection img { display: block; margin: 0 auto; }
.field-group.control-box { border: 2px solid black; border-right: none; border-radius: 10px 0 0 10px; position: fixed; right:0; top:15%; padding:5px; z-index: 100; background:white;}
.btn.btnWidthAdjust { padding: 5px 16px; }
#contact-card, #user-card, #manager-card, #organization-card { display:none; width:500px; }
.control-buttons { float:left; }
.controlContent { float:right; border-left: 1px solid black; }
.selection .help_gallery_btn { position: relative; width: 100%; text-align:center; }
.sgWrap .helptext { top: 65px; }
.error-wrap {color:red; }
.imageNumberWrap { width: 23%; float:left; margin: 0 auto; }
.imageNumberWrap img { margin: 0 auto; float:none; display: block; }
.imageNumberWrap label { text-align: center; }
.imageNumberWrap input { float:none; display: block; margin: 0 auto; }

/* ---------------- Tokens -------------------------------*/
ul.token-input-list { float: right; width: 50%; }
li.token-input-token { width:auto; display:inline-block; }  
li.token-input-token p span {display:none;}
.controlContent .field-wrap > label { width: 98% }

/*------------- Front Facing stuff -----------------------*/
.sub-feature-list { list-style: none; }
.sub-feature-list i { color: rgb(90, 33, 248); margin-right: 8px }
.subscribe-title { font-size: 24px; text-transform:uppercase; text-align:center; }

.subscribe-box .price { font-size: 28px; text-align: center; }
.subscribe-box .price.strike { color:red; text-decoration:line-through; }
.subscribe-box .price.discount { color: blue; }
.subscribe-box .per { text-align:center; }
.subscribe-box button { margin: 10px auto; display: block; }
.subscribe-box { width: 48%; border: 1px solid #f08224; border-radius: 20px;  }
.subscribe-row { display: flex; }

.alert-bar {
    text-align: center;
    background-color: #d30404;
    margin-top: 0;
    padding: 10px 0 5px;
    color: white;
}

ul.nav.nav-pills { width:200px; margin:0px auto 20px; }
ul.nav.nav-pills a { border: 1px solid #8cc63f; padding: 5px 8px; }
ul.nav.nav-pills a.active { background-color: #0369b3; color: white; }


.btn.side {writing-mode: vertical-rl;text-orientation: sideways-right; padding: 5px 12px;}
.container-fluid { padding-right: 40px; }

/* Navbar Buttons */
.navbar-nav .nav-item .btn {
  margin: 0 30px;
  font-size: 1.2em;
  font-weight: 600;
  padding: 10px 15px;
}

/* Orange Button */
.navbar-nav .nav-item .btn.btn-primary {
  background-color: #F7421B !important; /* Orange */
  border-color: #F7421B !important;
  color: #F9FAEE !important;
}

.navbar-nav .nav-item .btn.btn-primary:hover,
.navbar-nav .nav-item .btn.btn-primary:focus {
  background-color: #da7b0d!important; /* Adjust to darker orange if desired, e.g., #E63914 */
  border-color: #da7b0d !important;
  transform: scale(1.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Override btn-primary for Dashboard */
.navbar-nav .nav-item .btn.dashboard-btn {
  background-color: lightblue !important;
  border-color: lightblue !important;
  color: white !important;
}

.navbar-nav .nav-item .btn.dashboard-btn:hover,
.navbar-nav .nav-item .btn.dashboard-btn:focus {
  background-color: skyblue !important;
  border-color: skyblue !important;
  transform: scale(1.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/*------------- Screen Width ---------------------------*/

@media (max-width: 991px) {
  .selection { 
    width: 23%; 
  }
  .selection.selected { 
    width: 60%; 
  }
}

@media (max-width: 767px) {
  .selection { 
    width: 31%; 
  }
  .field-wrap > label, 
  .field-wrap > .radiowrap, 
  .field-wrap > .selectBase-wrap, 
  .field-wrap > .numberwrap, 
  .measureWrap, 
  .expirationWrap { 
    width: 98%; 
  }
  
  /* Responsive adjustments for the subscription section */
  .subscribe-row {
    flex-wrap: wrap;
  }
  .subscribe-box {
    width: 100%;
    margin-bottom: 20px;
  }
  ul.nav.nav-pills {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .selection { 
    width: 48%; 
  }
}

@media (max-width: 360px) {
  .selection { 
    width: 98%; 
  }
}

.navbar.bg-light {
  background-color: #2A3D66 !important; /* Bright green */
}

/* Floating Dashboard Toggle Button (top-left version) */
.floating-dashboard-btn {
  position: fixed;
  top: 20px;           /* move to top */
  left: 20px;          /* move to left */
  background-color: #007bff; /* Bright blue */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 3000;        /* ensure it stays above everything */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-dashboard-btn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}