/* additional non-sass styles go here */

.copy-footer {
    display: none;
}
.sidebar-nav-subgroups>li {
	height: auto;
}

#myTable_wrapper input {
  margin-bottom: 1em;
  margin-right: 1em;
  border-radius: 5px;
}
#myTableOrderHistory_wrapper input {
  margin-bottom: 1em;
  margin-right: 1em;
  border-radius: 5px;  
}

.option-half-custom {

    width: 100%;
    float: left;
    display: block;
    text-align: left;
    font-size: 14px;
    text-transform: lowercase;
    color: #6b6e7f;

}

.option-half-custom input {
  margin-right: 4px;
  font-family: GothamRounded,Helvetica,Arial,serif;
}

.status-done {
	opacity: 0.6;
	-webkit-linear-gradient(left, lightgrey , white);
	background: -o-linear-gradient(right, lightgrey, white);
	background: -moz-linear-gradient(right, lightgrey, white);
	background: linear-gradient(to right, lightgrey , white);
}

.infobox {
  background: green;
  color: #fff;
  position: fixed;
  bottom: 30px;
  left: 50%;
  width: 120px;
  margin-left: -60px;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  display: none;
}

.a-button {
  display: block;
  background: #3498db;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 0 12px;
/*  height: 50px;
*/  line-height: 40px;
/*  width: 500px;
*/  margin: 30px auto 30px auto;
  border: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s; }
  .a-button i {
    margin-right: 6px; }
  .a-button:hover {
    background: #2980b9;
    cursor: pointer; }

.radio-btn {
  background: #3498db;
  color: #fff;
  text-align: center;
  padding: 4px;
  border-radius: 5px; 
  cursor: pointer; 
}



.fi-1-4 {
    width: 25%;
    padding-right: 10px;
    padding-left: 10px;
    float: left;
    position: relative;
}
.fi-1-4 .txtinput {
    max-width: 100%;
}
.spec-items .parsley-errors-list {
  display: none;
}
.spec-item {
  padding-top: 7px;
}
.tab-1-4 {
    width:25.00%;
    float:left;
    text-align:center;
    color:#9ba6b4;
    background:#fafafa;
    position:relative;
    top:-1px
  }
.tab-1-4:hover {
  color:#2a2a2a
}

[data-tooltip] {
  position: relative;
  z-index: 10;
}

/* Positioning and visibility settings of the tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  bottom: calc(100% + 5px);
  pointer-events: none;
  transition: 0.2s;
  will-change: transform;
}

/* The actual tooltip with a dynamic width */
[data-tooltip]:before {
  content: attr(data-tooltip);
  padding: 10px 18px;
  min-width: 50px;
  max-width: 300px;
  width: max-content;
  width: -moz-max-content;
  border-radius: 6px;
  font-size: 14px;
  background-color: rgba(59, 72, 80, 0.9);
  background-image: linear-gradient(30deg,
    rgba(59, 72, 80, 0.44),
    rgba(59, 68, 75, 0.44),
    rgba(60, 82, 88, 0.44));
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  white-space: pre-wrap;
  transform: translate(-50%, -5px) scale(0.5);
}

/* Tooltip arrow */
[data-tooltip]:after {
  content: '';
  border-style: solid;
  border-width: 5px 5px 0px 5px;
  border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
  transition-duration: 0s; /* If the mouse leaves the element, 
                              the transition effects for the 
                              tooltip arrow are "turned off" */
  transform-origin: top;   /* Orientation setting for the
                              slide-down effect */
  transform: translateX(-50%) scaleY(0);
}

/* Tooltip becomes visible at hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}
/* Scales from 0.5 to 1 -> grow effect */
[data-tooltip]:hover:before {
  transition-delay: 0.3s;
  transform: translate(-50%, -5px) scale(1);
}
/* Slide down effect only on mouseenter (NOT on mouseleave) */
[data-tooltip]:hover:after {
  transition-delay: 0.5s; /* Starting after the grow effect */
  transition-duration: 0.2s;
  transform: translateX(-50%) scaleY(1);
}
/*
  That's it.
*/

[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
  left: auto;
  right: calc(100% + 5px);
  bottom: 50%;
}

/* Tooltip */
[data-tooltip-location="left"]:before {
  transform: translate(-5px, 50%) scale(0.5);
}
[data-tooltip-location="left"]:hover:before {
  transform: translate(-5px, 50%) scale(1);
}

/* Arrow */
[data-tooltip-location="left"]:after {
  border-width: 5px 0px 5px 5px;
  border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
  transform-origin: left;
  transform: translateY(50%) scaleX(0);
}
[data-tooltip-location="left"]:hover:after {
  transform: translateY(50%) scaleX(1);
}


.filter_box {
	margin: 0 20px 20px 20px;
	position: relative;
}

.filter_btn {
	padding: 5px 13px;
	border: none;
	background-color: #005aa9;
	border-radius: 5px;
	display: inline-block;
	color: #fff;

}

.filter_btn:hover {
	background: #003563;
}

.filter_btn i {
	margin-right: 5px;
}

.filter_list {
	margin-top: 10px;
	padding: 15px;
	border: 1px solid #005aa9;
	border-radius: 5px;
	position: absolute;
	background-color: #fff;
	top: auto;
	left: 0;
	-webkit-box-shadow: 3px 3px 23px 0px rgba(62, 78, 92, 1);
	-moz-box-shadow: 3px 3px 23px 0px rgba(62, 78, 92, 1);
	box-shadow: 3px 3px 23px 0px rgba(62, 78, 92, 1);
	display: none;
}

.filter_list.visible {
	display: block;
}

.filter_list form label {
	width: 100%;
	display: block;
	margin-bottom: 10px;
}


