/*! =======================================================
                      VERSION  9.8.0              
========================================================= */

/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2017 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */

.slider-selection,
.slider-track-high,
.slider-track-low {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 4px;
}

.slider-handle.custom::before,
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}

.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}

.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}

.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-high,
.slider.slider-horizontal .slider-track-low {
  height: 100%;
  top: 0;
  bottom: 0;
}

.slider.slider-horizontal .slider-handle,
.slider.slider-horizontal .slider-tick {
  margin-left: -10px;
}

.slider.slider-horizontal .slider-handle.triangle,
.slider.slider-horizontal .slider-tick.triangle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-width: 0 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}

.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.slider.slider-horizontal.slider-rtl .slider-tick-container,
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}

.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}

.slider .hide,
.slider input {
  display: none;
}

.slider.slider-horizontal.slider-rtl .slider-handle,
.slider.slider-horizontal.slider-rtl .slider-tick {
  margin-left: initial;
  margin-right: -10px;
}

.slider.slider-vertical {
  height: 210px;
  width: 20px;
}

.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}

.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}

.slider.slider-vertical .slider-track-high,
.slider.slider-vertical .slider-track-low {
  width: 100%;
  left: 0;
  right: 0;
}

.slider.slider-vertical .slider-handle,
.slider.slider-vertical .slider-tick {
  margin-top: -10px;
}

.slider.slider-vertical .slider-handle.triangle,
.slider.slider-vertical .slider-tick.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  border-right-color: #0480be;
  margin-left: 0;
  margin-right: 0;
}

.slider-handle,
.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
}

.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}

.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}

.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}

.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}

.slider.slider-vertical.slider-rtl .slider-handle.triangle,
.slider.slider-vertical.slider-rtl .slider-tick.triangle {
  border-width: 10px 10px 10px 0;
}

.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 4px;
}

.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top,#dfdfdf 0,#bebebe 100%);
  background-image: -o-linear-gradient(top,#dfdfdf 0,#bebebe 100%);
  background-image: linear-gradient(to bottom,#dfdfdf 0,#bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}

.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top,#e5e5e5 0,#e9e9e9 100%);
  background-image: -o-linear-gradient(top,#e5e5e5 0,#e9e9e9 100%);
  background-image: linear-gradient(to bottom,#e5e5e5 0,#e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  cursor: not-allowed;
}

.slider .tooltip.top {
  margin-top: -36px;
}

.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}

.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top,#f5f5f5 0,#f9f9f9 100%);
  background-image: -o-linear-gradient(top,#f5f5f5 0,#f9f9f9 100%);
  background-image: linear-gradient(to bottom,#f5f5f5 0,#f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  border-radius: 4px;
}

.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);
  background-image: -o-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);
  background-image: linear-gradient(to bottom,#f9f9f9 0,#f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  box-sizing: border-box;
}

.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top,#89cdef 0,#81bfde 100%);
  background-image: -o-linear-gradient(top,#89cdef 0,#81bfde 100%);
  background-image: linear-gradient(to bottom,#89cdef 0,#81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
}

.slider-track-high,
.slider-track-low {
  position: absolute;
  background: 0 0;
  box-sizing: border-box;
}

.slider-handle {
  top: 0;
  background-color: #337ab7;
  background-image: -webkit-linear-gradient(top,#149bdf 0,#0480be 100%);
  background-image: -o-linear-gradient(top,#149bdf 0,#0480be 100%);
  background-image: linear-gradient(to bottom,#149bdf 0,#0480be 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);
  border: 0 solid transparent;
}

.slider-handle.round {
  border-radius: 50%;
}

.slider-handle.custom,
.slider-handle.triangle {
  background: 0 0;
}

.slider-tick {
  background-image: -webkit-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);
  background-image: -o-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);
  background-image: linear-gradient(to bottom,#f9f9f9 0,#f5f5f5 100%);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: .8;
  border: 0 solid transparent;
}

.slider-tick.round {
  border-radius: 50%;
}

.slider-tick.custom,
.slider-tick.triangle {
  background: 0 0;
}

.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top,#89cdef 0,#81bfde 100%);
  background-image: -o-linear-gradient(top,#89cdef 0,#81bfde 100%);
  background-image: linear-gradient(to bottom,#89cdef 0,#81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
  opacity: 1;
}
.bootstrap-switch {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #ccc;
  position: relative;
  text-align: left;
  overflow: hidden;
  line-height: 8px;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.bootstrap-switch .bootstrap-switch-container {
  display: inline-block;
  top: 0;
  border-radius: 4px;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
}

.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-handle-on {
  text-align: center;
  z-index: 1;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
  color: #fff;
  background: #337ab7;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {
  color: #fff;
  background: #5bc0de;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {
  color: #fff;
  background: #5cb85c;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {
  background: #f0ad4e;
  color: #fff;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {
  color: #fff;
  background: #d9534f;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
  color: #000;
  background: #eee;
}

.bootstrap-switch .bootstrap-switch-label {
  text-align: center;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 100;
  color: #333;
  background: #fff;
}

.bootstrap-switch span::before {
  content: "\200b";
}

.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.bootstrap-switch input[type=checkbox],
.bootstrap-switch input[type=radio] {
  position: absolute!important;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
}

.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}

.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-indeterminate,
.bootstrap-switch.bootstrap-switch-readonly {
  cursor: default!important;
}

.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {
  opacity: .5;
  filter: alpha(opacity=50);
  cursor: default!important;
}

.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
  -webkit-transition: margin-left .5s;
  -o-transition: margin-left .5s;
  transition: margin-left .5s;
}

.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
  border-radius: 0 3px 3px 0;
}

.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
  border-radius: 3px 0 0 3px;
}

.bootstrap-switch.bootstrap-switch-focused {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.tabulator {
  position: relative;
  border: 1px solid #999;
  background-color: #888;
  font-size: 14px;
  text-align: left;
  overflow: hidden;
  transform: translatez(0);
}

.tabulator[tabulator-layout=fitDataFill] .tabulator-tableHolder .tabulator-table {
  min-width: 100%;
}

.tabulator.tabulator-block-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tabulator .tabulator-header {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #999;
  background-color: #e6e6e6;
  color: #555;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.tabulator .tabulator-header.tabulator-header-hidden {
  display: none;
}

.tabulator .tabulator-header .tabulator-col {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border-right: 1px solid #aaa;
  background: #e6e6e6;
  text-align: left;
  vertical-align: bottom;
  overflow: hidden;
}

.tabulator .tabulator-header .tabulator-col.tabulator-moving {
  position: absolute;
  border: 1px solid #999;
  background: #cdcdcd;
  pointer-events: none;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  box-sizing: border-box;
  position: relative;
  padding: 4px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-menu-button {
  padding: 0 8px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-menu-button:hover {
  cursor: pointer;
  opacity: .6;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-title-editor {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #999;
  padding: 1px;
  background: #fff;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
  display: inline-block;
  position: absolute;
  top: 9px;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #bbb;
}

.tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #aaa;
  overflow: hidden;
  margin-right: -1px;
}

.tabulator .tabulator-header .tabulator-col:first-child .tabulator-col-resize-handle.prev {
  display: none;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
  position: relative;
  box-sizing: border-box;
  margin-top: 2px;
  width: 100%;
  text-align: center;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {
  height: auto!important;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {
  margin-top: 3px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {
  width: 0;
  height: 0;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  padding-right: 25px;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
  cursor: pointer;
  background-color: #cdcdcd;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=none] .tabulator-col-content .tabulator-arrow {
  border-top: none;
  border-bottom: 6px solid #bbb;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=asc] .tabulator-col-content .tabulator-arrow {
  border-top: none;
  border-bottom: 6px solid #666;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=desc] .tabulator-col-content .tabulator-arrow {
  border-top: 6px solid #666;
  border-bottom: none;
}

.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical .tabulator-col-content .tabulator-col-title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip .tabulator-col-title {
  transform: rotate(180deg);
}

.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-title {
  padding-right: 0;
  padding-top: 20px;
}

.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip .tabulator-col-title {
  padding-right: 0;
  padding-bottom: 20px;
}

.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-arrow {
  right: calc(50% - 6px);
}

.tabulator .tabulator-header .tabulator-frozen {
  display: inline-block;
  position: absolute;
  z-index: 10;
}

.tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle,
.tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
  display: none;
}

.tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
  border-right: 2px solid #aaa;
}

.tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {
  border-left: 2px solid #aaa;
}

.tabulator .tabulator-header .tabulator-calcs-holder {
  box-sizing: border-box;
  min-width: 600%;
  background: #f3f3f3!important;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  overflow: hidden;
}

.tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
  background: #f3f3f3!important;
}

.tabulator .tabulator-header .tabulator-frozen-rows-holder {
  min-width: 600%;
}

.tabulator .tabulator-tableHolder {
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.tabulator .tabulator-tableHolder:focus {
  outline: 0;
}

.tabulator .tabulator-tableHolder .tabulator-placeholder {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.tabulator .tabulator-tableHolder .tabulator-placeholder[tabulator-render-mode=virtual] {
  min-height: 100%;
  min-width: 100%;
}

.tabulator .tabulator-tableHolder .tabulator-placeholder span {
  display: inline-block;
  margin: 0 auto;
  padding: 10px;
  color: #ccc;
  font-weight: 700;
  font-size: 20px;
}

.tabulator .tabulator-tableHolder .tabulator-table {
  position: relative;
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  overflow: visible;
  color: #333;
}

.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs {
  font-weight: 700;
  background: #e2e2e2!important;
}

.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-top {
  border-bottom: 2px solid #aaa;
}

.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
  border-top: 2px solid #aaa;
}

.tabulator .tabulator-footer {
  padding: 5px 10px;
  border-top: 1px solid #999;
  background-color: #e6e6e6;
  text-align: right;
  color: #555;
  font-weight: 700;
  white-space: nowrap;
  -ms-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.tabulator .tabulator-footer .tabulator-calcs-holder {
  box-sizing: border-box;
  width: calc(100% + 20px);
  margin: -5px -10px 5px;
  text-align: left;
  background: #f3f3f3!important;
  border-bottom: 1px solid #aaa;
  border-top: 1px solid #aaa;
  overflow: hidden;
}

.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
  background: #f3f3f3!important;
}

.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
  display: none;
}

.tabulator .tabulator-footer .tabulator-calcs-holder:only-child {
  margin-bottom: -5px;
  border-bottom: none;
}

.tabulator .tabulator-footer .tabulator-paginator {
  color: #555;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.tabulator .tabulator-footer .tabulator-page-size {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
}

.tabulator .tabulator-footer .tabulator-pages {
  margin: 0 7px;
}

.tabulator .tabulator-footer .tabulator-page {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background: hsla(0,0%,100%,.2);
}

.tabulator .tabulator-footer .tabulator-page.active {
  color: #d00;
}

.tabulator .tabulator-footer .tabulator-page:disabled {
  opacity: .5;
}

.tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {
  cursor: pointer;
  background: rgba(0,0,0,.2);
  color: #fff;
}

.tabulator .tabulator-col-resize-handle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.tabulator .tabulator-col-resize-handle.prev {
  left: 0;
  right: auto;
}

.tabulator .tabulator-col-resize-handle:hover {
  cursor: ew-resize;
}

.tabulator .tabulator-loader {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.4);
  text-align: center;
}

.tabulator .tabulator-loader .tabulator-loader-msg {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  font-size: 16px;
}

.tabulator .tabulator-loader .tabulator-loader-msg.tabulator-loading {
  border: 4px solid #333;
  color: #000;
}

.tabulator .tabulator-loader .tabulator-loader-msg.tabulator-error {
  border: 4px solid #d00;
  color: #590000;
}

.tabulator-row {
  position: relative;
  box-sizing: border-box;
  min-height: 22px;
  background-color: #fff;
}

.tabulator-row.tabulator-row-even {
  background-color: #efefef;
}

.tabulator-row.tabulator-selectable:hover {
  background-color: #bbb;
  cursor: pointer;
}

.tabulator-row.tabulator-selected {
  background-color: #9abcea;
}

.tabulator-row.tabulator-selected:hover {
  background-color: #769bcc;
  cursor: pointer;
}

.tabulator-row.tabulator-row-moving {
  border: 1px solid #000;
  background: #fff;
}

.tabulator-row.tabulator-moving {
  position: absolute;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  pointer-events: none;
  z-index: 15;
}

.tabulator-row .tabulator-row-resize-handle {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
}

.tabulator-row .tabulator-row-resize-handle.prev {
  top: 0;
  bottom: auto;
}

.tabulator-row .tabulator-row-resize-handle:hover {
  cursor: ns-resize;
}

.tabulator-row .tabulator-frozen {
  display: inline-block;
  position: absolute;
  background-color: inherit;
  z-index: 10;
}

.tabulator-row .tabulator-frozen.tabulator-frozen-left {
  border-right: 2px solid #aaa;
}

.tabulator-row .tabulator-frozen.tabulator-frozen-right {
  border-left: 2px solid #aaa;
}

.tabulator-row .tabulator-responsive-collapse {
  box-sizing: border-box;
  padding: 5px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.tabulator-row .tabulator-responsive-collapse:empty {
  display: none;
}

.tabulator-row .tabulator-responsive-collapse table {
  font-size: 14px;
}

.tabulator-row .tabulator-responsive-collapse table tr td {
  position: relative;
}

.tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
  padding-right: 10px;
}

.tabulator-row .tabulator-cell {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 4px;
  border-right: 1px solid #aaa;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabulator-row .tabulator-cell.tabulator-editing {
  border: 1px solid #1d68cd;
  padding: 0;
}

.tabulator-row .tabulator-cell.tabulator-editing input,
.tabulator-row .tabulator-cell.tabulator-editing select {
  border: 1px;
  background: 0 0;
}

.tabulator-row .tabulator-cell.tabulator-validation-fail {
  border: 1px solid #d00;
}

.tabulator-row .tabulator-cell.tabulator-validation-fail input,
.tabulator-row .tabulator-cell.tabulator-validation-fail select {
  border: 1px;
  background: 0 0;
  color: #d00;
}

.tabulator-row .tabulator-cell:first-child .tabulator-col-resize-handle.prev {
  display: none;
}

.tabulator-row .tabulator-cell.tabulator-row-handle {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
  width: 80%;
}

.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
  width: 100%;
  height: 3px;
  margin-top: 2px;
  background: #666;
}

.tabulator-row .tabulator-cell .tabulator-data-tree-branch {
  display: inline-block;
  vertical-align: middle;
  height: 9px;
  width: 7px;
  margin-top: -9px;
  margin-right: 5px;
  border-bottom-left-radius: 1px;
  border-left: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}

.tabulator-row .tabulator-cell .tabulator-data-tree-control {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  height: 11px;
  width: 11px;
  margin-right: 5px;
  border: 1px solid #333;
  border-radius: 2px;
  background: rgba(0,0,0,.1);
  overflow: hidden;
}

.tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
  cursor: pointer;
  background: rgba(0,0,0,.2);
}

.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: 0 0;
}

.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}

.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: #333;
}

.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}

.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  height: 15px;
  width: 15px;
  border-radius: 20px;
  background: #666;
  color: #fff;
  font-weight: 700;
  font-size: 1.1em;
}

.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
  opacity: .7;
}

.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-close {
  display: initial;
}

.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle .tabulator-responsive-collapse-toggle-close,
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-open {
  display: none;
}

.tabulator-row .tabulator-cell .tabulator-traffic-light {
  display: inline-block;
  height: 14px;
  width: 14px;
  border-radius: 14px;
}

.tabulator-row.tabulator-group {
  box-sizing: border-box;
  border-bottom: 1px solid #999;
  border-right: 1px solid #aaa;
  border-top: 1px solid #999;
  padding: 5px 5px 5px 10px;
  background: #ccc;
  font-weight: 700;
  min-width: 100%;
}

.tabulator-row.tabulator-group:hover {
  cursor: pointer;
  background-color: rgba(0,0,0,.1);
}

.tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
  margin-right: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  border-bottom: 0;
}

.tabulator-row.tabulator-group.tabulator-group-level-1 {
  padding-left: 30px;
}

.tabulator-row.tabulator-group.tabulator-group-level-2 {
  padding-left: 50px;
}

.tabulator-row.tabulator-group.tabulator-group-level-3 {
  padding-left: 70px;
}

.tabulator-row.tabulator-group.tabulator-group-level-4 {
  padding-left: 90px;
}

.tabulator-row.tabulator-group.tabulator-group-level-5 {
  padding-left: 110px;
}

.tabulator-row.tabulator-group .tabulator-group-toggle {
  display: inline-block;
}

.tabulator-row.tabulator-group .tabulator-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 16px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 0;
  border-left: 6px solid #666;
  vertical-align: middle;
}

.tabulator-edit-select-list,
.tabulator-menu {
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #aaa;
  font-size: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  z-index: 10000;
}

.tabulator-row.tabulator-group span {
  margin-left: 10px;
  color: #d00;
}

.tabulator-menu {
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
}

.tabulator-menu .tabulator-menu-item {
  padding: 5px 10px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {
  opacity: .5;
}

.tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {
  cursor: pointer;
  background: #efefef;
}

.tabulator-menu .tabulator-menu-separator {
  border-top: 1px solid #aaa;
}

.tabulator-edit-select-list {
  max-height: 200px;
  background: #fff;
}

.tabulator-edit-select-list .tabulator-edit-select-list-item {
  padding: 4px;
  color: #333;
}

.tabulator-edit-select-list .tabulator-edit-select-list-item.active {
  color: #fff;
  background: #1d68cd;
}

.tabulator-edit-select-list .tabulator-edit-select-list-item:hover {
  cursor: pointer;
  color: #fff;
  background: #1d68cd;
}

.tabulator-edit-select-list .tabulator-edit-select-list-notice {
  padding: 4px;
  color: #333;
  text-align: center;
}

.tabulator-edit-select-list .tabulator-edit-select-list-group {
  border-bottom: 1px solid #aaa;
  padding: 6px 4px 4px;
  color: #333;
  font-weight: 700;
}

.tabulator-print-fullscreen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

body.tabulator-print-fullscreen-hide>:not(.tabulator-print-fullscreen) {
  display: none!important;
}

.tabulator-print-table {
  border-collapse: collapse;
}

.tabulator-print-table .tabulator-data-tree-branch {
  display: inline-block;
  vertical-align: middle;
  height: 9px;
  width: 7px;
  margin-top: -9px;
  margin-right: 5px;
  border-bottom-left-radius: 1px;
  border-left: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}

.tabulator-print-table .tabulator-data-tree-control {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  height: 11px;
  width: 11px;
  margin-right: 5px;
  border: 1px solid #333;
  border-radius: 2px;
  background: rgba(0,0,0,.1);
  overflow: hidden;
}

.tabulator-print-table .tabulator-data-tree-control:hover {
  cursor: pointer;
  background: rgba(0,0,0,.2);
}

.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: 0 0;
}

.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}

.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: #333;
}

.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}
#recent-blog-posts img:hover,
.youtube img {
  opacity: .7;
}

.clhintarea,
.clhints,
.tab-pane h4,
ul.centered {
  text-align: center;
}

#commonmatches ul li,
#keyhigher,
.tip-area {
  box-sizing: border-box;
}

#confirm-delete-group,
#regbutton {
  bottom: 20px;
}

@font-face {
  font-family: Novecentosanswide;
  font-weight: 700;
  src: url("../local/fonts/3431F8_1_0.eot");
  src: url("../local/fonts/3431F8_1_0.eot?#iefix") format('embedded-opentype'),url("../local/fonts/3431F8_1_0.woff2") format('woff2'),url("../local/fonts/3431F8_1_0.woff") format('woff'),url("../local/fonts/3431F8_1_0.ttf") format('truetype');
}

.content-header {
  padding: 4px 15px 6px;
}

.content-header>.breadcrumb {
  padding: 6px 6px 0;
  top: 7px;
}

#lower-mailing {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

#lower-mailing .row {
  background: #ddf3ee;
}

#lower-mailing img {
  margin: 15px 0;
}

#recent-blog-posts img {
  display: block;
  max-width: 100%;
  margin-bottom: 5px;
}

#recent-blog-posts a.btitle {
  font-size: 15px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 5px;
  margin-top: 10px;
  color: #2b3b4e;
  position: relative;
}

#recent-blog-posts a.btitle:hover {
  color: #000;
}

#recent-blog-posts a.btitle:after {
  display: block;
  height: 24px;
  content: '';
  width: 66px;
  background: linear-gradient(270deg,rgb(218 224 232) 0,rgba(218,224,232,1) 5px,rgba(218,224,232,0) 100%);
  right: 0;
  top: 0;
  position: absolute;
}

div#alerts-page .alert:first-child {
  display: block;
}

div#alerts-page .alert {
  display: none;
}

::placeholder {
  color: #666;
}

.home-questions .content {
  min-height: 100px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.navbar-nav>li>a {
  font-size: 1.8rem;
}

.download-csv {
  float: left;
}

.h4 {
  font-size: 1.6rem;
  font-weight: 700;
}

.cpanel h4,
.tab-pane h4 {
  clear: both;
  font-family: "Helvetica Neue",Helvetica,sans-serif;
  margin-top: 2px;
}

.slider.slider-horizontal {
  margin-top: 25px;
}

.next-link,
.prev-link {
  font-size: 2.5rem;
  color: #767676;
}

.dpform .enter-area.panel-body {
  padding-top: 13px;
  margin: 0;
  background: #caf0fa;
}

#thatsit {
  padding: 10px 0;
}

#segfileError {
  margin-top: 10px;
}

#overlap-info h4,
#overlay-overlaps h4 {
  font-style: italic;
  margin: 0 0 5px;
  color: #666;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}

div#overlay-overlaps h4 {
  margin-bottom: .5rem;
  font-size: 1.5rem;
  color: #efefef;
}

#overlap-info ul {
  list-style: none;
  padding: 0;
}

#overlap-info ul li {
  font-size: 1.4rem;
  color: #304d5b;
}

#overlay-overlaps small {
  font-style: italic;
  line-height: 1.25;
  display: block;
  margin-top: 5px;
  color: #fff2f2;
  font-size: 1.3rem;
}

select {
  -webkit-appearance: menulist-button;
}

.merge-groups {
  clear: left;
  display: none;
  position: relative;
  width: 270px;
  margin-top: 15px;
  padding: 15px;
}

#sfileitem #generating-flash {
  position: static;
  margin-left: 8px;
}

.gedimp {
  display: block;
  padding-top: 10px;
}

.clhints button:focus {
  outline: 0;
}

.clhints button.active {
  color: #2a3c4e;
  border-bottom: 1px solid;
  outline: 0;
}

.page-articles li div {
  margin: 10px 0 50px;
}

.merge-cancel {
  float: right;
}

.clhints {
  list-style: none;
}

.clhints li {
  display: inline;
}

#match-seg-data,
.clhintarea .infop {
  display: none;
}

.clhints button {
  background: 0 0;
  border: none;
  font-weight: 700;
  border-bottom: 1px dashed;
  padding: 0;
  margin: 0 5px;
  color: #4b6b7e;
}

#avgseg {
  display: block;
}

.clhints button:hover {
  color: #2a3c4e;
}

.left-btn {
  float: left!important;
}

.dpform .alert-danger {
  line-height: 1;
}

.panel-body .alert-info a {
  border-bottom: none;
}

.detailheader .next-link,
.detailheader .prev-link {
  position: absolute;
  top: 0;
}

.nowrap {
  white-space: nowrap;
}

.tip-area .slick-slide {
  font-style: italic;
}

.tip-area i.fa {
  padding-right: 3px;
  color: #76769b;
}

.content .feature-tips p {
  margin: 0!important;
  color: #444;
}

input[type=text]::-ms-clear {
  display: none;
}

img.smallerimg {
  max-width: 375px;
  height: auto;
  float: right;
  padding-left: 20px;
}

#watotrees td.right,
#watotrees th.right {
  text-align: right;
  white-space: nowrap;
}

#psw,
.fr-text {
  text-align: center;
}

#watotrees a {
  display: block;
  width: 90%;
  float: left;
  padding: 5px 0;
}

#clipseg,
.caperror,
.capsuccess,
.checkbox i.form-control-feedback {
  display: none;
}

#watotrees a.del-profile {
  width: 10%;
  float: right;
  text-align: center;
}

#watotrees a.del-profile:hover {
  background: #2B3C4D;
  color: #fff;
}

p#tos_agree-error {
  position: absolute;
  background: #fff;
  padding: 10px;
  top: 20px;
  border: 1px solid #446c81;
}

strong.matchtrack {
  border-color: #c7c7c7;
  position: absolute!important;
  height: 100%!important;
  top: -2px!important;
  box-shadow: inset 0 0 25px #8a8a8a;
  border-style: none!important;
}

#alerts-page,
#cmsliderconfig,
#homeprobtrees td,
.cmslidecontainer,
.tip-area {
  position: relative;
}

table input[type=checkbox] {
  vertical-align: top;
  margin: 0;
  width: 25px;
  height: 25px;
}

.row.divider {
  border-top: 1px solid #e4e4e4;
  margin-top: 2.5rem;
  padding-top: 2rem;
  clear: both;
}

.match .thischr:hover {
  background: #ccc;
  cursor: pointer;
}

#copied-flash-ctrl,
#copied-segment,
#copied-text-flash {
  background: 0 0;
  font-size: 13px;
  float: none;
  top: 30px;
  position: absolute;
  right: 0;
}

.content .feature-tips {
  padding: 10px 60px 10px 30px!important;
  background: #e8e8e8!important;
  font-size: 1.4rem;
  margin: 0;
}

.chrdetailchromosome #copied-flash-ctrl,
.chrdetailchromosome #copied-segment {
  top: 2px;
}

.del-empty-group {
  display: none;
  float: left!important;
  margin-left: 36px;
}

#match-flash a {
  font-weight: 700;
}

td.matchname:hover:after {
  font-weight: 700;
  content: 'View match';
  display: block;
}

section.showkl .chrdetailchromosome .cp strong:not(.popped):hover,
section.showkl .cp-open div:hover,
section.showkl .cp-open strong:not(.popped):hover {
  cursor: default!important;
}

#settingspanel #cmsliderconfig label {
  float: none;
  display: inline-block;
  width: auto;
  font-size: 13px;
  font-style: italic;
  line-height: 1;
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 700;
  color: #767676;
}

#settingspanel #cmsliderconfig label strong {
  font-style: normal;
}

#cmsliderconfig .thres-input {
  width: 50px;
}

#settingspanel div#cmsliderconfig input {
  float: none;
  display: inline-block;
  font-style: normal;
  margin-right: 2px;
}

#cmsliderconfig {
  clear: both;
  display: none;
  padding: 0 0 0 22px;
  margin: 0;
  top: -10px;
}

.cmreminder {
  color: #fff;
  padding: 2px 6px;
  font-weight: 400;
  display: none;
  white-space: normal;
  border-radius: 5px;
  margin-bottom: 7px;
  background: #4a545f;
  font-size: 12px;
}

.cmslidecontainer,
.hcard a,
.tdate {
  white-space: nowrap;
}

.cmreminder:not(:empty) {
  display: inline-block;
}

#cmDisplayReminder,
.form-toggled #cmDisplayReminder {
  display: none!important;
}

#cmDisplayReminder {
  position: fixed;
  z-index: 2052;
  top: 49px;
  left: 21px;
}

.cmslidecontainer {
  width: 150px;
  display: none;
  vertical-align: top;
  top: 8px;
  margin-left: 7px;
  font-size: 13px;
}

#modal-inner,
#open-search i,
.promo-offer ul {
  vertical-align: middle;
}

.cmslider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  margin-top: 6px;
  background: #d3d3d3;
  outline: 0;
  opacity: .85;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.cmslider:hover {
  opacity: 1;
}

#relpath li:hover,
.hcard:hover:before {
  cursor: pointer;
  opacity: .8;
}

.cmslider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 15px;
  border-radius: 3px;
  content: attr(data-cm-val)"cM";
  background: #4D6C7F;
  cursor: pointer;
}

.cmslider::-moz-range-thumb {
  width: 25px;
  height: 15px;
  background: #4D6C7F;
  content: attr(data-cm-val)"cM";
  border-radius: 3px;
  cursor: pointer;
}

#not-saved-flash {
  position: fixed;
  top: 35%;
  left: 20%;
  z-index: 10000;
  right: 20%;
}

#modal,
.detailheader .prev-link {
  left: 0;
}

td.segnote button {
  float: right;
  clear: right;
  border: 0;
  background: 0;
  font-weight: 700;
}

td.segnote button.indsg {
  display: none;
}

td button.indsg.hide~td .delsop,
td.segnote:hover button.indsg {
  display: block;
}

ul.insetlist {
  background: #fff;
  color: #0d0d0d;
  padding: 10px 0 10px 30px;
  list-style: square;
  margin-top: 10px;
}

h4#returntolink a {
  color: #aaa;
  font-size: 1.4rem;
}

.fr-text {
  padding-bottom: 10px;
}

.fr-text a {
  color: #efefef;
  font-size: 1.5rem;
}

.fr-text a:hover {
  color: #fff;
}

.panel-body .alert ul.insetlist a {
  color: #000;
  text-decoration: none;
}

.alert li {
  padding: 3px 0;
  line-height: 1.7rem;
}

.clear-area {
  margin-top: 100px;
  font-size: 1.3rem;
  color: #767676;
}

.clear-storage {
  margin-top: 10px;
}

#cleared-flash {
  float: none;
  width: auto;
  margin-top: 20px;
}

#ftdform .alert {
  margin-top: 10px;
}

.content .feature-tips {
  display: none;
}

.hbanner {
  margin-top: 0;
  min-height: 40px;
  background: url("/assets/local/img/diagonal.png") bottom right no-repeat #f9ecee;
  background-size: 437px 320px;
}

.tbanner {
  background: url("/assets/local/img/diagonalt2.png") bottom right no-repeat #599bba;
  background-size: 437px 320px;
}

.tbanner h1 {
  color: #fff;
}

.hbanner.help2 {
  background-color: #eaf5fc;
}

.hbanner.help3 {
  background-color: #f4fff0;
}

.hbanner.help4 {
  background-color: #fefaf1;
}

.hbanner.help5 {
  background-color: #f9f7ff;
}

.toolpromo {
  padding: 15px;
}

.page-subscribe .hbanner {
  background-image: none;
}

ol .col-sm-6 p {
  padding-left: 3.5rem;
}

.hbanner h1 {
  margin-top: 10px;
  font-size: 2rem;
  padding: 25px 15px;
}

.helpc .btn-block {
  margin-top: 25px;
}

.helpc img {
  border: 1px solid #ccc;
}

.helpc .insetpanel img {
  border: 0;
}

p.intro {
  font-size: 20px;
  color: #37306b;
}

p.intro a {
  border-bottom: 1px dashed;
}

.submenu li.drop {
  margin-top: 40px;
}

.download-dpbackup {
  padding-left: 20px;
}

#report .matchname {
  padding: 5px;
}

#report .matchname:hover {
  cursor: pointer;
}

label.tight {
  margin-bottom: 0;
}

.tip-area {
  min-height: 41px;
  margin-top: 0;
  max-width: 100%;
  clear: both;
  float: left;
  padding-right: 30px;
}

.content .slick-initialized {
  display: block!important;
}

#modal,
#retrievemsg {
  display: none;
}

h1 {
  clear: both;
}

.detailheader .next-link {
  right: 0;
}

.next-link:hover,
.prev-link:hover {
  color: #332c69;
  cursor: pointer;
}

.prev-link {
  padding-right: 2rem;
}

.next-link {
  padding-left: 2rem;
}

#psw {
  float: right;
  margin-left: 13px;
  margin-right: 0;
  min-height: 37px;
}

.htdel,
a#home-overlay,
th.right {
  text-align: right;
}

#psw select {
  height: 34px;
  max-width: 279px;
}

#modal {
  background-color: #000;
  background-color: rgba(0,0,0,.3);
  position: fixed;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: 2030;
}

#modal-inner {
  display: table-cell;
  display: block;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#alerts-page ul {
  margin-top: 10px;
}

#alerts-page ul li a:hover {
  color: #efefef;
}

#alerts-page {
  z-index: 9;
}

.panel-body h4 {
  font-family: Helvetica Neue,sans-serif;
  margin: 2px 0 10px;
  color: #231556;
}

#oswitchnote:not(:empty) {
  display: block;
  margin-bottom: 10px;
}

#overlap-info {
  padding: 5px 0 10px;
}

#overlap-info-dupe-warning,
#overlay-overlaps-dupe-warning {
  display: none;
  line-height: 1;
}

#overlay-overlaps-dupe-warning {
  margin-top: 1.25rem;
}

.enableHover #chr>h4:hover,
.enableHover .chrdetailchromosome>h4:hover {
  cursor: pointer;
  background: #aabcc5;
}

#overlay-confirm .alert-danger {
  color: #2a1360!important;
  background: #d0d7da!important;
}

#retrievemsg a {
  display: block;
  float: right;
  clear: both;
}

#retrievemsg button {
  float: right;
  margin-bottom: 5px;
}

#retrievemsg p {
  font-weight: 700;
}

body.form-toggled {
  overflow: hidden;
}

.form-toggled #modal {
  display: block;
  overflow: auto;
}

.inner {
  -webkit-overflow-scrolling: touch;
}

#chr.filter-mat .cp-open .both,
#chr.filter-mat .cp-open .pat,
#chr.filter-pat .cp-open .both,
#chr.filter-pat .cp-open .mat {
  display: none;
}

#chr.filter-mat .cp:not(.cp-open) .mat {
  top: -1rem;
}

#chr.filter-mat .cp.cp-open .mat,
#chr.filter-pat .cp.cp-open .pat,
#chr.filter-pat .cp:not(.cp-open) .pat {
  top: 1rem;
}

#profileNameOverlay {
  border: 1px solid #c1c1c1;
  width: 300px;
  height: 40px;
}

#existingcolours strong {
  padding-top: 4px;
  display: block;
}

#chromodetail,
.floater,
form.dpform {
  position: relative;
  z-index: 2040;
  background: linear-gradient(to right,#f7f5f5,#fff);
  width: 80%;
  overflow: auto;
  box-shadow: 0 0 30px rgba(0,0,0,.25);
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 20px;
  margin: 3rem auto;
}

#regbutton,
.htlink:after,
.wlks {
  position: absolute;
}

.tableholder {
  max-height: 350px;
  overflow: auto;
  margin: 15px 0 20px;
}

.tableholder th {
  background: 0 0;
  color: #000;
  padding: 10px 5px 10px 10px;
  font-size: 1.5rem;
}

.tab-pane small {
  font-style: italic;
  font-weight: 700;
  color: #767676;
  display: block;
  padding: 0 0 10px 10px;
}

.htlink {
  display: block;
}

.wlks {
  right: 0;
  top: 6px;
}

.wlks a {
  padding-right: 5px;
}

.wlks a:hover {
  color: #293b4d;
}

.htlink:after {
  display: block;
  height: 24px;
  content: '';
  width: 140px;
  background: linear-gradient(270deg,rgba(255,255,255,1) 0,rgba(255,255,255,1) 56%,rgba(255,255,255,0) 100%);
  right: 0;
  top: 0;
}

#list-watotrees tbody tr:nth-child(odd) .htlink:after {
  background: linear-gradient(270deg,rgba(197,248,255,1) 0,rgba(197,248,255,1) 56%,rgba(197,248,255,0) 100%);
}

#list-watotrees tbody tr:hover .htlink:after {
  background: linear-gradient(270deg,rgba(42,59,78,1) 0,rgba(42,59,78,1) 56%,rgba(242,59,78,0) 100%);
}

#list-watotrees #homecoveragetrees tbody tr .htlink:after {
  background: 0 0;
  content: none;
}

.tableholder td {
  padding-left: 10px;
}

.home-loggedin h3 img {
  height: 58px;
  width: auto;
}

.user-is-touching .tableholder td,
.user-is-touching .tableholder th {
  padding: 10px 0 10px 10px;
}

.home-new .container-wide #maincontent {
  padding: 0;
  min-height: 0;
}

.home-new .container-wide #maincontent .content {
  min-height: 0;
}

.home-loggedin .container-wide #maincontent {
  padding: 0;
}

.img-float-right {
  max-width: 300px;
  float: right;
  padding-left: 15px;
}

.htdel.btn-secondary:focus:hover {
  color: #000;
  border: 1px solid #000;
}

.htdel.btn-secondary:focus {
  border: 1px solid #000;
}

.htdel {
  float: right;
}

.page-headlines .collapser,
.page-headlines h1,
.page-headlines h2,
.page-headlines h3 {
  font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #edf9ff;
  text-transform: none;
}

.page-headlines .collapser {
  display: inline-block;
}

.home-new #main-strap {
  text-align: left;
  font-size: 4rem;
  line-height: 1.1;
  margin: 5px 0 0;
  padding-bottom: 10px;
  min-height: 104px;
  padding-right: 315px;
  background: url("/assets/local/img/puzzle.png") bottom right no-repeat;
  background-size: 300px 104px;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(2,1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

#maincontent .content {
  padding: 0 15px;
}

.home-new .search-site-area {
  padding: 16px 16px 0;
  clear: both;
  float: right;
}

.home-new .signy .search-site-area {
  padding-left: 0;
  float: none;
}

.home-new .welcome-search-strip {
  background: #2b3b4d;
  margin-bottom: 15px;
}

.home-new .welcome-search-strip .search-site-area {
  padding: 6px 0 0;
}

.home-new .search-site-area button.dpbutton.btn-secondary,
.home-new .search-site-area input {
  border-color: #fff;
  font-size: 1.6rem;
  border-width: 1px;
  padding: 2px 10px;
  -webkit-appearance: none;
  border-radius: 0;
}

input.hfilterdata {
  -webkit-appearance: none;
  border: 1px solid #777;
}

.home-new .search-site-area button.dpbutton.btn-secondary {
  padding: 2px 12px;
  color: #fff;
  margin-left: 5px;
}

#regbutton {
  right: 15px;
  font-size: 36px;
  background: #332c69;
  color: #fff;
}

#regbutton:hover {
  background: #2a3c4d;
}

.feature-link {
  background: 0 0;
  color: #ffcb6d;
  font-size: 2.4rem;
}

.welcome-search-strip .feature-link {
  line-height: 40px;
  font-size: 1.6rem;
}

.feature-link:active,
.feature-link:hover {
  color: #e3ecf2;
}

.hcard {
  background: #fff;
  padding: 0 5px 0 110px;
  position: relative;
  text-align: left;
  border-top: .675rem solid;
}

.hcard h2 {
  color: #2a3c4d;
  padding-top: 15px;
  font-size: 1.8rem;
}

.hcard a {
  font-size: 1.6rem;
  padding-right: 10px;
}

.hcard a span:before {
  font-size: 14px;
  color: #82a6b7;
}

.hcard:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  background-size: cover;
  margin: 0 auto;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid;
  border-color: inherit;
}

body.home-loggedin:after,
body.page-indtool:after,
body.single-profile:after,
body.single-tree:after {
  content: none;
}

#keyhigher,
label {
  position: relative;
}

.hcard:nth-child(3) {
  border-color: #B7D78A;
}

.hcard:nth-child(3):before {
  background-image: url("/assets/local/img/tool-scm.png");
}

.hcard:nth-child(4):before {
  background-image: url("/assets/local/img/home-tools.png");
}

.hcard:nth-child(4) {
  border-color: #89D2DC;
}

.hcard:nth-child(1) {
  border-color: #F4B63F;
}

.hcard:nth-child(1):before {
  background-image: url("/assets/local/img/home-trees.png");
}

.hcard:nth-child(2) {
  border-color: #D34132;
}

.hcard:nth-child(2):before {
  background-image: url("/assets/local/img/home-profiles.png");
}

body.page-indtool form.dpform {
  z-index: 1;
}

#paypal-area>div {
  display: none;
}

#paypal-area>div#pp-annual {
  display: block;
}

#datareport {
  width: 95%;
  max-width: 1500px;
}

#profilemeta {
  max-width: 880px;
}

.eternity:after {
  border-right: 21500px solid #efefef;
}

.page-faq #page-title,
.page-glossary #page-title,
.page-help #page-title {
  color: #fff;
}

#chromodetail,
.floater {
  background: #f9f9f9;
}

#chromodetail {
  text-align: center;
}

#chromodetail .chrcontainer {
  text-align: left;
}

#profilesharestatus {
  font-weight: 700;
}

.newmatchlink>span {
  background: repeating-linear-gradient(315deg,#fff,#000 3px);
}

.sharing input {
  width: 80%;
  display: inline-block;
}

.sharing button {
  width: 43px;
  background: 0 0;
  border: 0;
  font-size: 1.3rem;
  color: #456d81;
}

#copied-flash {
  position: absolute;
  bottom: 15px;
  right: 10px;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
  background: #251459;
}

#sharelink {
  margin-top: 10px;
}

.page-update h4 {
  color: #426b81;
  margin-top: 1rem;
}

form.dpform {
  max-width: 1000px;
  display: none;
}

body {
  font-family: 'Helvetica Neue',Helvetica,'Source Sans Pro',Arial,sans-serif;
}

body .repositioned {
  font-family: Helvetica Neue,sans-serif;
}

label {
  display: block;
  margin-top: 1rem;
}

#chr-detail h4,
.browsehappy {
  display: none;
}

#chr {
  margin: 1.5rem .75rem 1.5rem 1.5rem;
}

#chr-detail {
  margin: 1.5rem 0;
}

#chr-detail .cp {
  margin-left: 0;
}

.main-header .navbar {
  padding: 16px;
}

.browsehappy {
  background-color: #231557;
  color: #fff;
  padding: 8px 8px 8px 20px;
  margin-bottom: 1px;
}

.matchname,
.notestring {
  display: block;
  padding-top: 6px;
}

.browsehappy a,
.browsehappy a:hover {
  color: #efefef;
  border-bottom: 1px dashed #efefef;
}

.login-logo a,
.navbar-header a {
  letter-spacing: 3px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-family: Novecentosanswide,"Lucida Grande",Century,Garamond,serif;
  font-size: 2vw;
  font-size: 3.8rem;
}

#page-title,
.hbanner h1,
.tbanner h1,
h2,
h3 {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Novecentosanswide,"Lucida Grande",Century,Helvetica,Arial,sans-serif;
}

.img-responsive {
  margin: 0 auto 2rem;
}

.copyprofile {
  margin-top: 8px;
}

.notestring {
  padding-left: 27px;
  font-style: italic;
  white-space: normal;
}

td.notesfield {
  max-width: 300px;
}

#thegroupnotes {
  display: none;
}

#overlay-confirm {
  background: #ff4f47;
  color: #fff;
  border: 1px solid #fff;
}

@keyframes pulsate {
  from {
    background: #2A135F;
  }

  to {
    background: #ff4f47;
  }
}

label.indentedlabel {
  padding-left: 20px;
  color: #575757;
  margin-top: 0;
}

a.help {
  margin-right: 3px;
  float: right;
}

.btn-primary {
  border: 0;
}

#draggable {
  position: fixed!important;
}

#matchdetail-invalid {
  background: #ff4f47;
  display: block;
  float: none;
  color: #fff;
  padding-bottom: 7px;
}

#matchdetailheader>div a {
  display: block;
}

#alerts-page:empty,
#bothnotice,
#existinggroups,
#matchdetail .cp>div:empty,
#overlap-info,
.register-page #alerts-page:not(:empty)+form {
  display: none;
}

#commonmatches {
  max-width: 700px;
  margin: 5px auto;
  padding: 10px;
  background: #eef1f5;
}

.detailheader h4 {
  margin: 10px 0 15px;
}

#commonmatches ul li a {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
}

#commonmatches ul li {
  font-size: 1.5rem;
  display: inline-block;
  width: 24%;
  overflow: hidden;
  margin-right: 1%;
  position: relative;
}

#commonmatches ul li.lone {
  width: auto;
}

#commonmatches li:after {
  content: '';
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  width: 20px;
  background: linear-gradient(to right,rgba(255,255,255,0) 0,#eef1f5 100%);
}

#commonmatches li.lone:after,
body.page-update-fragment:after {
  content: none;
}

#commonmatches .bootstrap-switch .bootstrap-switch-handle-off,
#commonmatches .bootstrap-switch .bootstrap-switch-handle-on,
#commonmatches .bootstrap-switch .bootstrap-switch-label,
#membox .bootstrap-switch-container span {
  padding: 2px 12px;
}

#commonmatches ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

#commonmatches p {
  font-size: 1.4rem;
}

#keyhigher {
  overflow: auto;
  overflow-x: hidden;
  max-height: 64vh;
  padding-left: 10px;
}

#hand2,
#hand3,
.home-ill i,
.mdclose,
.ngclose {
  position: absolute;
}

.hbanner h1,
.tbanner h1 {
  margin: 0;
}

#hand2 {
  width: 10px;
  left: 0;
  top: 0;
  height: 100%;
}

#hand3 {
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 12px;
}

#no-profiles>h3,
#no-trees>h3 {
  margin-top: 0;
}

.filterprofileblock {
  padding: 10px 0;
  text-align: center;
}

.home-ill {
  padding: 1rem 0 1.5rem;
}

.page-home #page-title {
  color: #fff;
  margin-left: 6px;
}

.home-ill table {
  padding-right: 30px;
}

.home-ill i {
  top: 20px;
  right: 30px;
}

#groupdetail h3,
#matchdetailheader h4,
#newreport h3 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0;
  line-height: 2;
}

#groupdetail h3,
#newreport h3,
#newreport>p {
  font-size: 1.5rem;
}

#newreport>p {
  text-align: center;
  padding-top: 5px;
  color: #2b3c4d;
  font-weight: 700;
}

div#overlay-overlaps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

div#overlay-overlaps ul li {
  font-size: 1.4rem;
}

#existinggroups {
  width: 100%;
  height: 34px;
}

.mdclose,
.ngclose {
  right: 5px;
  top: 10px;
  background: 0 0;
  border: 0;
  z-index: 10;
  color: #231556;
}

.ngclose {
  top: 5px;
}

button.mdoclose {
  font-size: 1rem;
  z-index: 10;
  border: 0;
}

#matchdetail h3 {
  margin: 1rem 0;
  text-align: center;
}

#matchdetailheader>div {
  background: #fff;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 2rem;
  font-family: "Helvetica Neue",Helvetica,Arial,Sans-serif;
}

#matchdetailheader {
  text-align: center;
  border: 1px solid #333;
  position: relative;
  padding: 10px;
  background: repeating-linear-gradient(315deg,#fff,#000 3px);
  min-width: 159px;
  max-width: 600px;
  display: none;
  margin: 0 auto;
  min-height: 105px;
  border-radius: 2px;
}

li.indmatch i {
  font-size: 1.125rem;
  padding-right: 5px;
  color: #99a8af;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}

.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

#chrcontainer,
.detailheader,
.navbar-custom-menu>.navbar-nav>li {
  position: relative;
}

#chr>.cp>div:hover,
#chrkey span:hover,
.ui-menu .ui-menu-item,
.youtube,
.youtube .play-button,
.youtube img {
  cursor: pointer;
}

.ui-front {
  z-index: 100;
}

.ui-menu .ui-menu-item {
  margin: 0;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu-item:hover {
  background: #456d81;
  color: #fff;
}

#matchdetail .copy-match-segments:focus:hover,
button.clr-field:hover {
  color: #333;
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em;
}

.ui-autocomplete {
  z-index: 5000;
  list-style: none;
  margin: 0;
  background: #fff;
  padding: 5px;
}

ul.unformatted {
  list-style: none;
  margin: 0;
  padding: 0;
}

button.clr-field {
  border: none;
  background: 0 0;
  font-size: 1.3rem;
  float: right;
  line-height: 3rem;
}

button.clr-field:focus {
  outline: 0;
}

#matchdetailformholder .btn-secondary {
  font-size: 1.25rem;
  margin-top: 10px;
}

#matchdetailform .btn-secondary {
  margin: 10px 0 0;
  display: block;
}

#group_detail_template,
#group_link_template,
#match_detail_template,
#restore,
#restore-done {
  display: none;
}

.detailheader {
  text-align: center;
}

#page-title {
  font-size: 2.25rem;
  margin: 10px 18px;
}

#matchdetail .copy-match-segments {
  font-size: 1.125rem;
  padding: 2px 5px;
  margin-bottom: 2px;
  margin-right: -106px;
}

#restore {
  padding: 10px 10px 0 0;
}

.restore-csv {
  margin-top: 10px;
}

#restore p {
  font-size: 1.25rem;
}

#chromodetail h3,
h2,
h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
}

.row h2:first-child {
  margin-top: 0;
}

.row h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
}

.fa-home:before {
  content: "\e021";
  font-family: 'Glyphicons Halflings';
}

.notesholder {
  max-width: 700px;
  margin: 5px auto 10px;
  padding: 10px;
  font-size: 1.5rem;
  border: 5px solid #d8e4ea;
  background: #fff;
}

#matchnotes {
  margin-bottom: 15px;
}

#detailgroupnotes .editgroup,
#matchnotes .editmatch {
  cursor: pointer;
  font-weight: 700;
}

#whatsnew img,
.row .col-sm-8 img {
  border: 1px solid #ccc;
  max-width: 80%;
  margin: 2rem auto;
}

#whatsnew img {
  margin: 0 0 15px;
}

#chrcontainer,
.chrcontainer {
  clear: both;
  padding: 12px 24px 0;
  margin-bottom: 140px;
}

#chrcontainer {
  background: #fff;
}

#chrcontainer.pr-loading {
  opacity: .5;
}

#wasloadme {
  display: block;
  background: rgba(35,21,86,.6);
  color: #fff;
  padding: .25rem 1.5rem;
  width: 300px;
  left: 10px;
  margin: 0 auto;
  position: absolute;
  z-index: 99999;
}

.cpanel,
.groupdetailcontainer,
.matchdetailcontainer,
.tb-btn,
.youtube {
  position: relative;
}

.cpanel {
  left: -2.4rem;
}

.tb-btn {
  background: 0 0;
  border: none;
  font-size: 32px;
  color: #446c81;
  margin-right: 2px;
}

.tb-btn:hover {
  color: #332c69;
}

.tb-btn:focus {
  outline: 0;
}

#open-search i {
  top: -1px;
}

#chr h4,
#chr-detail h4,
.groupdetailcontainer h4,
.matchdetailcontainer h4 {
  z-index: 2001;
  z-index: 900;
  margin: .5vmin 0 0;
  float: left;
  position: relative;
  text-align: center;
  width: 2.25vmin;
  font-weight: 400;
  height: 2.25vmin;
  border-radius: 50%;
  max-height: 36px;
  max-width: 36px;
  min-height: 24px;
  min-width: 24px;
  line-height: 24px;
  clear: left;
  left: -3.5rem;
  font-size: 1.25rem;
}

#minkey,
.imf-clear,
.right-btn {
  float: right;
}

.cp-open {
  padding-bottom: .5rem;
  padding-top: 1.5rem;
}

.cp-open>div.both {
  margin-top: 1rem;
  background: linear-gradient(to top,rgba(255,255,255,1) 0,rgba(246,246,246,1) 3%,rgba(237,237,237,1) 100%)!important;
}

#whatsnew {
  padding-top: 50px;
}

#whatsnew iframe {
  width: 100%;
  border: 0;
  background: 0 0;
  height: 100%;
  min-height: 80vh;
}

.page-subscribe .badge {
  display: block;
  float: right;
  background: 0 0;
  margin-top: 10px;
  color: #329311;
  margin-left: 20px;
  width: 150px;
  white-space: normal;
}

#stats,
.floater .copy-group,
.floater .copy-group-new {
  float: left;
}

body.page-update-fragment {
  background: 0 0;
}

.youtube {
  padding-top: 56.25%;
  overflow: hidden;
  background: rgba(255,255,255,.5);
}

.youtube:hover {
  background: rgba(173,173,173,.5);
}

.youtube .play-button:hover,
a.home-vid:hover img {
  opacity: .8;
}

.youtube .play-button {
  display: block;
  z-index: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4em;
  height: 4em;
  margin: -2em 0 0 -2em;
  padding: 0;
  text-align: center;
  content: "";
  border-style: solid;
  border-width: 40px 0 40px 60px;
  border-color: transparent transparent transparent #466d81;
}

.beginner-link a,
.home-new .content li a,
.home-new .content p a {
  border-bottom: 1px dashed #b0b4b7;
}

.welcome-panel-body a {
  color: #dde3e7;
  border-bottom: 1px dashed #dde3e7;
}

.welcome-panel-body a:hover {
  color: #fadba4;
  border-bottom-color: #fadba4;
}

.welcome-panel-body a.btn {
  border: 0;
  padding: 2px 5px 5px;
  display: block;
  margin: 9px auto 0;
  max-width: 200px;
}

.sib-form {
  background: 0 0!important;
}

.sib-form div.response {
  color: #ddc434;
}

.sib-form div.response a {
  color: #fff;
}

.activate {
  display: block;
  font-weight: 700;
  text-align: center;
  background: #cae2ed;
  color: #1e1e1e;
  padding: 9px 10px;
}

a.activate:hover {
  background: #008572;
  color: #fff;
}

span.activate {
  font-weight: 400;
}

.home-loggedin .activate {
  background: #658c9f;
  color: #fff;
}

#paypal-area form span {
  clear: left;
  display: block;
  font-size: 13px;
  color: #717171;
}

.cmn,
.imf-clear {
  clear: both;
}

.sib-form .mc-field-group input {
  margin-top: 8px;
}

.sib-form div#mce-responses {
  background: 0 0!important;
}

.sib-form #mce-success-response {
  color: #f6b642!important;
}

#mailerform {
  display: none;
  max-width: 100%;
  width: 500px;
  margin: 0 auto;
  border-radius: 2px;
}

#mailerform .dpclose {
  text-decoration: none;
  position: absolute;
  z-index: 99;
  border: none;
  top: 15px;
  background: 0 0;
  color: #2a3b4e;
  right: 15px;
  font-size: 22px;
}

.sib-form #mc-embedded-subscribe-form div.mce_inline_error {
  color: #fff!important;
  background: #e85c41!important;
}

#mailerform small,
.gdpr-mergeRow a,
.gdpr-mergeRow a:hover {
  color: #efefef;
}

.sib-form {
  font-size: 16px!important;
}

.sib-form_scroll>p {
  text-align: center;
  margin-bottom: 20px;
}

.sib-form_scroll h2 {
  margin: 5px 0 15px!important;
}

.sib-form form {
  padding: 10px!important;
}

.gdpr-mergeRow p {
  font-family: helvetica,arial,sans-serif;
  text-transform: none;
  font-size: 1.5rem;
}

.gdpr-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gdpr-footer a {
  border: 0;
}

.gdpr-mergeRow a:hover {
  border-bottom: 1px solid!important;
}

.gdpr-footer img {
  max-width: 70px;
}

#mailerform input {
  color: #000;
  border: 0;
  font-family: 'Helvetica Neue',Helvetica,'Source Sans Pro',Arial,sans-serif;
}

#mailerform input[type=email] {
  padding: 2px 5px;
}

#mailerform .submit_container input {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
}

#open-mailerform .glyphicon {
  font-size: 1.25rem;
}

a.home-vid img {
  border: 1px solid #efefef;
  display: inline-block;
}

.home-video {
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

.youtube iframe,
.youtube img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.alert .close {
  opacity: 1;
  color: #fff;
}

.feature-row a:hover,
a#home-overlay:hover img {
  opacity: .8;
}

.page-home #alerts-page:not:empty {
  margin-bottom: 30px;
}

.page-home div#alerts-page:not:empty {
  position: relative;
  top: -30px;
}

#chr h4.expanded:before,
.enableHover #chr h4:hover:after {
  content: '';
  border: 1px solid #231557;
  padding: 2px;
  box-sizing: content-box;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 50%;
}

#chr h4.expandedf {
  position: fixed;
  top: 10px;
  left: 19px;
}

.cp-open>div.mat:after,
.cp-open>div.pat:after {
  content: none!important;
}

.cp-open>div.pat {
  background: #eef1f5;
  min-height: 2rem;
}

.cp-open>div.mat {
  background: #f9ecee;
  min-height: 2rem;
}

.cp-open>div.both {
  bottom: 0!important;
  top: auto!important;
}

.sp-container,
.sp-replacer.sp-active,
.sp-replacer:hover {
  border-color: #a7adb0!important;
}

#chr-detail h4 {
  float: none;
  position: absolute;
  left: 3rem;
}

#chr h4,
#chr-detail h4,
.groupdetailcontainer h4,
.matchdetailcontainer h4 {
  color: #fff;
  background: #231557;
}

.groupdetailcontainer h4,
.matchdetailcontainer h4 {
  left: -3rem;
}

.chrdetailchromosome .cp>div {
  min-height: 2.75rem;
}

#chr strong em,
#chr-detail strong em,
.chrdetailchromosome strong em {
  font-style: normal;
}

#chr-detail strong.popped .mn,
.chrdetailchromosome strong.popped .mn {
  display: none;
}

.cp strong:not(.popped) .mn {
  display: block;
  font-weight: 400;
  padding-top: 6px;
  padding-bottom: 2px;
}

#matchdetail strong:not(.popped) .mn {
  display: block;
}

.cp strong:not(.popped) .mn:before {
  content: "Match: ";
}

#chr:not(.hidematchnames) .cp-open strong:not(.popped) em.gn,
#groupdetail .chrdetailchromosome strong:not(.popped) em.gn,
 {
  display: none;
}

.cp strong.gnewmatch>span {
  padding-bottom: 10px;
}

.panel-body input,
.panel-body textarea {
  border: 0;
  padding: 3px 5px;
}

.cp-open div strong {
  margin-top: 2px;
}

.dpib {
  display: inline-block;
  font-weight: 400;
  margin-top: 3px;
  padding-right: 5px;
}

.dpfull {
  width: 100%;
}

.home-new #maincontent {
  background: #4b6677;
}

.home-new section.content {
  margin-top: 0;
}

.home-new h3 {
  margin-top: 1.5rem;
}

body.home-new:after {
  content: none;
}

.feature-row h3 {
  text-align: center;
}

.feature-row div.homefeat {
  display: block;
  border-radius: 50%;
  position: relative;
  width: 76%;
  margin: 2px auto 22px;
  background: #fff;
}

.feature-row div.feat-trees a {
  background-image: url("/assets/local/img/home-trees.png");
}

.feature-row div.feat-tools a {
  background-image: url("/assets/local/img/home-tools.png");
}

.feature-row div.feat-profs a {
  background-image: url("/assets/local/img/home-profiles.png");
}

.feature-row li h3,
.row.feature-row h3 {
  color: #fff;
  font-size: 18px;
}

.feature-row .homefeat:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.feature-row div.homefeat a {
  position: absolute;
  width: 100%;
  height: 100%;
  text-indent: -9999em;
  background-size: contain;
  border-radius: 50%;
  left: 0;
  top: 0;
  border-width: 0;
}

#chr strong.popped .mn,
.chrdetailchromosome strong.popped .mn {
  display: none;
}

strong.popped {
  z-index: 999999!important;
}

.probtrees {
  padding-top: 50px;
}

.probtrees h3 {
  margin-top: 0;
}

#stats {
  font-size: 1.5rem;
  margin-left: 2vw;
  margin-top: 6px;
  padding: .5rem;
  margin-bottom: 6px;
}

#stats.show {
  display: block;
}

#stats,
#stats .smat,
#stats .spat {
  display: none;
}

#stats .segs {
  font-weight: 700;
}

.page-example #stats {
  display: block;
}

.page-headlines {
  margin: 10px 0;
  font-size: 18px;
  text-align: center;
}

.page-headlines .btn {
  background: #332c69;
}

.page-headlines .btn:hover {
  background: rgba(51,44,105,.5);
}

#page-description {
  font-family: 'Source Sans Pro',sans-serif;
  display: inline-block;
  font-weight: 300;
  padding: 4px 5px 4px 0;
  color: #515151;
}

.btn-group-lg>.btn,
.btn-lg {
  font-size: 20px;
}

#no-profiles {
  margin-top: 0;
}

#no-profiles h3 {
  margin-top: .5rem;
}

div.alert {
  border: 0;
}

.content>div.alert {
  margin-top: 1.5rem;
}

.popover .btn-group button {
  margin-bottom: 8px;
}

.page-headlines img {
  width: 75%;
  display: block;
  margin: 40px auto;
}

.page-headlines .home-ill table {
  margin: 0 auto;
  width: 100%;
}

.page-headlines .home-ill img {
  width: 100%;
  margin: 0;
  border: 1px solid #efefef;
}

.page-headlines .home-ill td {
  font-family: Times,serif;
  text-align: center;
}

.ctas {
  padding: 2rem 0;
}

input.wider {
  width: 280px;
  max-width: 100%;
}

input.short {
  width: 80px;
}

input.medium {
  width: 110px;
}

#chrkey li {
  position: relative;
}

.cp>div.ui-selectable:hover {
  cursor: text!important;
}

#chrkey li a:after,
#existingcolours li:after {
  content: '';
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  width: 20px;
  background: linear-gradient(to right,rgba(255,255,255,0) 0,#fff 100%);
}

span#profileName {
  min-width: 90px;
  min-height: 39px;
}

.gdivider:after {
  border-bottom: 1px solid #b3b3b3;
  content: "";
  display: block;
  margin: 7px 24px 3px;
}

.right-btn {
  margin-bottom: 10px;
}

.expand-all {
  position: absolute;
  right: 0;
  top: 0;
}

#chrkey li.ui-sortable-helper a {
  z-index: 9000;
}

#chrkey li.ui-sortable-helper a:after {
  content: none;
}

.cp>div.mat:after,
.cp>div.pat:after {
  content: '';
}

.filterblock {
  text-align: center;
  padding: 5px 0 10px;
}

#threshold {
  width: 50px;
}

.filterblock input {
  padding: 5px;
  border-radius: 0;
  border-width: 1px;
  border-color: #ccc;
}

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#generateMap {
  float: none;
  margin: 15px auto 0;
  display: block;
}

.page-indtool h1 {
  text-align: center;
  font-family: Novecentosanswide,"Lucida Grande",Century,Helvetica,Arial,sans-serif;
  text-transform: lowercase;
  color: #2a3c4e;
  text-shadow: 0 0 5px #FFF,0 0 10px #FFF,0 0 15px #FFF,0 0 20px #e6f7ff,0 0 30px #687784;
  text-shadow: 0 0 5px #FFF,0 0 4px #FFF,0 0 3px #FFF,0 0 4px #fbfbfb,0 0 5px #fff;
  padding: 5px 0 13px;
  max-width: 1000px;
  margin: 20px auto;
}

.page-indtool .collapser,
.page-indtool .infop div p,
.page-indtool .infop ul,
.page-indtool p.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.6rem;
}

.page-tools p.intro {
  text-align: left;
}

.page-indtool p.intro {
  margin-bottom: 5px;
}

.page-indtool .infop ul {
  margin: 10px;
  text-align: left;
}

.page-indtool .alert p.intro {
  font-size: 20px;
  color: #fff;
}

.imf-clear {
  margin-top: 9px;
  position: relative;
  z-index: 9;
}

.page-indtool .infop ul ul {
  margin-bottom: 0;
  padding-bottom: 5px;
}

button.dpbutton {
  background: 0 0;
  border: 0;
  color: #231558;
}

button.dpbutton:hover {
  color: #466d81;
}

button.dpbutton.btn-secondary {
  border: 1px solid #456d81;
  color: #456d81;
}

button.dpbutton.btn-secondary:hover {
  color: #fff;
  background: #466d81;
}

#filtercount {
  color: #767676;
  font-style: italic;
}

.cancel-filter {
  position: relative;
  left: -29px;
}

#chrkey li span i {
  display: none;
}

#chrkey li span:hover i {
  position: absolute;
  left: -20px;
  top: 4px;
  font-size: 1.5rem;
  background: #fff;
  color: #466d81;
  border-radius: 20%;
  width: 20px;
  text-align: center;
}

#chrkey li span.dphidden:hover i.dpshow,
#chrkey li span:not(.dphidden):hover i.dphide {
  display: block;
}

#need-help,
a.entire-group {
  display: none;
}

#existingcolours li:after {
  right: 0;
}

#maincontent:not(.showkl) #chr>.cp>div.pat:not(.ui-selectable):hover {
  background: #d6dee8;
}

#maincontent:not(.showkl) #chr>.cp>div.mat:not(.ui-selectable):hover {
  background: #f5dee2;
}

#chr>.cp>div.both:hover {
  background: 0 0;
}

#matchdetail {
  min-height: 350px;
  padding-bottom: 86px;
}

#need-help {
  padding-bottom: 20px;
}

.popped a.entire-group {
  display: block;
  font-size: 1.25rem;
  color: #ccc;
  padding: 0 0 10px;
}

#chrfilter,
#groupdetail .popped a.entire-group,
#minkey strong {
  display: none;
}

.popped em.gn {
  font-size: 15px;
}

.popped a.entire-group:hover {
  color: #fff;
}

#chrkey a.edit {
  position: absolute;
  right: 8px;
  font-family: arial,helvetica,sans-serif;
}

#chrkey,
#newmatchkey {
  width: 100%;
  min-width: 220px;
  background: #fff;
  z-index: 10222;
}

#chrkey .dphidden~a,
#newmatchkey .dphidden~a {
  color: #ccc;
}

#chrkey {
  margin-bottom: 18px;
}

#chrfilter {
  text-align: center;
}

#chrfilter li {
  display: inline;
}

#minkey.minimised {
  padding-left: 22px;
  float: none;
  display: block;
  background: rgba(255,255,255,.8);
}

#minkey.minimised strong {
  display: inline-block;
  padding-left: 5px;
  font-weight: 400;
  padding-top: 10px;
}

#keyarea {
  width: 290px;
}

.keyhandlebutton {
  border: 1px solid #000;
  padding: 8px;
  border-radius: 2px;
  font-size: 14px;
  background: #e6f0f7;
  text-align: center;
  position: relative;
}

#key-edit-instructions {
  font-size: 14px;
  padding-bottom: 5px;
  display: none;
}

#key-edit-instructions .grippy {
  padding: 2px 0;
  margin: 0;
}

#key-edit-instructions .dpclose {
  font-size: 15px;
  border: 0;
  text-align: center;
  line-height: 1.25;
  padding: 0;
}

#key-edit-instructions .grippy:hover {
  cursor: default;
}

#key-edit-instructions p {
  font-size: 13px;
}

.keyhandlebutton:hover {
  background: #fff;
}

.keyhandle:hover {
  cursor: move;
}

#chrfilter .key-help {
  position: absolute;
  top: 8px;
  right: 8px;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: .1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.cp,
.cp>div {
  position: relative;
}

.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-e:hover {
  background: #231556;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

#membox:hover,
em.grippy {
  cursor: move;
}

.existingcolours {
  float: right;
  display: none;
  margin: 40px 0 15px;
  background: #fff;
  padding: 0 15px 5px;
}

ul#existingcolours {
  list-style: none;
  font-size: 1.25rem;
  padding-left: 0;
  max-height: 300px;
  overflow: auto;
}

#existingcolours li {
  padding: 2px 0 0;
  position: relative;
  overflow: hidden;
  width: 222px;
  white-space: nowrap;
}

#keyarea #chrfilter ul {
  padding: 0;
  margin: 0 0 5px;
  box-shadow: none;
  border: 0;
}

#keyarea #chrfilter li a {
  width: auto;
  padding: 0 5px;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: #456d81;
}

#keyarea #chrfilter li a.active {
  color: #332c69;
  font-weight: 700;
}

.chrmatchlabel label,
.confirm-delete .dpcancel,
a.matchname span,
label .exmpls li,
span.lsse {
  font-weight: 400;
}

#keyarea #chrfilter ul:after,
#keyarea #chrfilter ul:before {
  border: 0;
}

.cp {
  margin-bottom: 10px;
  margin-left: 1rem;
}

.cp>div {
  background: #eee;
  border-radius: 2px;
  margin-bottom: .4rem;
  min-height: 1.5rem;
}

#chr>.cp>div.both,
.cp-open .both>div.fixed {
  min-height: 3rem;
}

#chr .cp:not(.cp-open)>div.both {
  position: absolute;
  background: 0 0;
  min-height: 3rem;
  width: 100%;
  top: 0;
}

.cp>div.both strong.fixed {
  height: .4rem;
  margin: 1.5rem 0;
  background-color: #fff;
  background-image: url("/assets/local/img/black-twill.png");
}

.cp-open>div.both strong.fixed {
  margin: .5rem 0;
}

#chr .cp-open div.both strong.fixed,
#chr-detail .cp>div.both strong.fixed {
  height: 1rem;
  background-image: url("/assets/local/img/new-twill.png");
  margin: 1rem 0;
}

.confirm-delete .dpcancel {
  color: #fff;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: 0 0;
  border: none;
}

span.chrmatchlabel {
  display: none;
  position: absolute;
  left: 120px;
  top: 0;
  color: #737373;
  white-space: nowrap;
  font-size: 1.2rem;
  width: 100%;
  margin-left: 27px;
}

.chrdetailchromosome .cp>div.both,
.cp-open>div.both {
  position: relative;
}

.chrmatchlabel label {
  display: inline;
}

.chrmatchlabel input {
  margin-right: 5px;
}

.cp-open .chrmatchlabel {
  display: block;
}

.confirm-delete .dpcancel:hover {
  color: #ccc;
}

.cp>div.pat {
  background: #eef1f5;
}

.cp>div.mat {
  background: #f9ecee;
}

.cp>div.pat:after {
  border-top: 1.5rem solid #eef1f5;
  width: 100%;
  display: block;
}

#chr .cp>div.pat:hover:after {
  border-color: #d6dee8;
}

.cp>div.mat:after {
  border-top: 1.5rem solid #f9ecee;
  width: 100%;
  display: block;
}

#chr .cp>div.mat:hover:after {
  border-color: #f5dee2;
}

#chr .cp>div.both strong.popped,
#chr-detail .cp>div.both strong.popped {
  height: auto;
}

#chr .cp-open>div.pat:before,
#chr .cp>div.pat:hover:before {
  content: 'PATERNAL';
  background: #d6dee8;
}

#chr .cp-open>div.mat:before,
#chr .cp>div.mat:hover:before {
  content: 'MATERNAL';
  background: #f5dee2;
}

#chr .cp-open>div.both:before {
  content: 'SHARED OR BOTH';
  background: #e2e2e2;
}

#maincontent:not(.showkl):not(.gshowmblines) #chr>.cp-open>div.both:hover {
  background: #e2e2e2!important;
}

.mbscale {
  display: none;
}

.gshowmblines .chrdetailchromosome .mbscale,
.gshowmblines .cp-open .mbscale {
  display: block;
  height: 20px;
  font-size: 11px;
  white-space: nowrap;
}

.gshowmblines #p10 .mbscale span:nth-child(n+14),
.gshowmblines #p11 .mbscale span:nth-child(n+14),
.gshowmblines #p12 .mbscale span:nth-child(n+14),
.gshowmblines #p13 .mbscale span:nth-child(n+12),
.gshowmblines #p14 .mbscale span:nth-child(n+11),
.gshowmblines #p15 .mbscale span:nth-child(n+11),
.gshowmblines #p16 .mbscale span:nth-child(n+10),
.gshowmblines #p17 .mbscale span:nth-child(n+9),
.gshowmblines #p18 .mbscale span:nth-child(n+9),
.gshowmblines #p19 .mbscale span:nth-child(n+6),
.gshowmblines #p2 .mbscale span:nth-child(n+25),
.gshowmblines #p20 .mbscale span:nth-child(n+7),
.gshowmblines #p21 .mbscale span:nth-child(n+5),
.gshowmblines #p22 .mbscale span:nth-child(n+6),
.gshowmblines #p3 .mbscale span:nth-child(n+20),
.gshowmblines #p4 .mbscale span:nth-child(n+20),
.gshowmblines #p5 .mbscale span:nth-child(n+19),
.gshowmblines #p6 .mbscale span:nth-child(n+18),
.gshowmblines #p7 .mbscale span:nth-child(n+16),
.gshowmblines #p8 .mbscale span:nth-child(n+15),
.gshowmblines #p9 .mbscale span:nth-child(n+15),
.gshowmblines #pX .mbscale span:nth-child(n+16),
.hidemsg,
.newgroupholder {
  display: none;
}

.cp-open>div.both {
  margin-bottom: 30px;
}

.gshowmblines .cp-open>div.mat {
  margin-bottom: 10px;
}

.cp-open>div.mat,
.cp-open>div.pat {
  margin-bottom: 30px;
}

#chr .cp-open>div:before,
#chr .cp>div:hover:before {
  font-size: 1rem;
  z-index: 1000;
  position: absolute;
  letter-spacing: 1px;
  color: #333;
  left: 0;
  top: -24px;
  padding: 5px;
  border-radius-top-left: 2px;
  border-radius-top-right: 2px;
}

.cp-open .both>div.trait {
  min-height: 3.5rem;
}

.cp strong {
  position: absolute;
  top: 0;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 1.25rem;
  text-indent: -999rem;
  white-space: nowrap;
  backface-visibility: hidden;
}

.cp strong:not(.fixed) {
  border-width: 1.5rem 0 0;
  border-style: solid;
}

#chrcontainer .cp .both strong:not(.fixed) {
  border-width: 1px;
}

#chr:not(.hidematchnames) .cp-open strong:not(.popped),
.cp strong.hilite.firsthilite,
.cp strong:not(.popped):hover,
.showmatchnames .cp strong:not(.popped) {
  text-indent: 0;
  cursor: pointer;
  z-index: 1111!important;
}

#chr:not(.hidematchnames) .cp-open strong:not(.popped) {
  z-index: 800!important;
}

#chr .cp strong.hilite.firsthilite {
  z-index: 2001!important;
}

span.lsse {
  padding-bottom: 2px;
  display: block;
}

#chr:not(.hidematchnames) .cp-open .lsse,
.popped .lcm,
.popped .lsse,
.showmatchnames .lsse {
  display: none;
}

.cp strong .matchname {
  white-space: normal;
  line-height: 1.25;
}

.cp strong.hilite.popped:before {
  content: none;
}

.cp strong.hilite:before,
.cp strong.popped:before {
  content: '';
}

.cp strong.hilite:before {
  width: 100%;
  display: block;
  height: 1.5rem;
  top: -1.5rem;
  position: absolute;
  z-index: 2003;
  border: 1px solid #231657;
  box-shadow: 3px 3px 10px 2px #231657;
  box-shadow: 0 2px 5px 1px #231657;
}

.cp:not(.cp-open) .both strong.hilite:before {
  height: 3.3rem;
  top: -3.3rem;
}

.cp strong>span {
  position: relative;
  padding: 5px 8px;
  border-radius: 2px;
  display: inline-block;
}

.cp strong.fixed>span {
  background: #4b4a50;
  display: none;
}

.fixed .cp strong p {
  white-space: wrap;
}

.cp strong.popped>span {
  background: 0 0;
  padding: 0;
  position: static;
  color: #fff;
  display: block;
}

.centromere,
.mkr,
a#home-overlay {
  position: absolute;
}

.searching .cp:not(.cp-open) strong:not(.hilite):hover {
  text-indent: -999em!important;
}

a#home-overlay {
  display: block;
  right: 22px;
  top: 9px;
  width: 108px;
}

a#home-overlay img {
  width: 7vw;
  border-radius: 4px;
  height: auto;
  display: inline-block;
  max-width: 100%;
}

#p1 {
  width: 100%;
}

#p2 {
  width: 97.28%;
}

#p3 {
  width: 79.65%;
}

#p4 {
  width: 76.4%;
}

#p5 {
  width: 72.92%;
}

#p6 {
  width: 68.61%;
}

#p7 {
  width: 64.01%;
}

#p8 {
  width: 58.3%;
}

#p9 {
  width: 55.59%;
}

#p10 {
  width: 53.74%;
}

#p11 {
  width: 54.26%;
}

#p12 {
  width: 53.53%;
}

#p13 {
  width: 45.94%;
}

#p14 {
  width: 43%;
}

#p15 {
  width: 40.97%;
}

#p16 {
  width: 36.29%;
}

#p17 {
  width: 33.44%;
}

#p18 {
  width: 32.28%;
}

#p19 {
  width: 23.55%;
}

#p20 {
  width: 25.89%;
}

#p21 {
  width: 18.76%;
}

#p22 {
  width: 20.41%;
}

#pX {
  width: 62.68%;
}

#chr-detail .chrdetailchromosome {
  width: 100%!important;
}

.dpform .btn,
.floater .btn {
  border: 0;
  float: right;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
  margin-top: 10px;
}

.confirm-delete .btn-secondary,
.dpform .btn-secondary,
.floater .btn-secondary {
  color: #466d81;
  font-weight: 700;
  text-transform: uppercase;
  background: #fff;
  padding: 8px 10px;
  border: 1px solid #466d81;
  border-radius: 2px;
  margin-right: 5px;
  font-size: 1.4rem;
}

.dpform .btn-secondary:hover,
.floater .btn-secondary:hover {
  border-color: #332c69;
}

#pd1 .mbscale span,
#pd2 .mbscale span {
  font-size: 9px;
}

#confirm-delete-profile.confirm-delete .btn-secondary:hover {
  border-color: transparent;
  color: #efefef;
}

.dpform .inlinebtn,
.floater .inlinebtn {
  float: none;
}

#mergegroupid {
  display: block;
  max-width: 100%;
}

.floater .mergegroup-choose,
.mkr {
  display: none;
}

#mergegroupname {
  font-weight: 700;
}

button.save-match,
button.savegroup {
  min-width: 100px;
}

.mkr {
  width: 1px;
  background: #231556;
  top: 0;
  left: 0;
  height: calc(100% - 62px);
  margin-top: 26px;
  z-index: 1112;
  pointer-events: none;
}

.mkr[data-content]:not([data-content=""]):after {
  content: attr(data-content);
  padding: 5px 5px 5px 10px;
  font-size: 13px;
  background: #333;
  color: #efefef;
  z-index: 2020;
  margin-left: 1px;
  border: 1px solid #efefef;
  border-left: 0;
}

.mkr[data-precontent]:not([data-precontent=""]):before {
  content: attr(data-precontent);
  position: absolute;
  right: 0;
  padding: 5px;
  font-size: 13px;
  z-index: 2020;
  background: #333;
  color: #efefef;
  margin-left: 1px;
  border: 1px solid #efefef;
  border-left: 0;
}

.showkl .chrdetailchromosome .cp:hover .mkr,
.showkl .cp-open:hover .mkr {
  display: block;
}

.showkl .chrdetailchromosome .mkr {
  height: 100%;
  margin: 0;
}

#matchdetailheader .btn-secondary:hover {
  color: #666;
}

#matchdetailheader #confirm-delete-matchdetail .btn-secondary:hover {
  color: #fff;
}

#profileDesc,
#profileDescro {
  float: left;
  padding: 10px 5px;
  min-height: 60px;
  width: 550px;
  display: block;
  clear: left;
  font-style: italic;
  color: #767676;
}

.add-desc,
.row.cap-ill {
  clear: both;
}

#profileDesc form {
  font-style: normal;
}

#profileDesc input[type=submit] {
  background: #456d81;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border: 0;
  border-radius: 3px;
}

#datareport td.wrap,
.hhl-img a.btn {
  white-space: normal;
  word-wrap: break-word;
}

.exmpls,
label .exmpls button {
  float: right;
}

.add-desc {
  display: block;
  font-size: 1.3rem;
}

.add-desc span:before {
  font-size: 1rem;
}

#keylower {
  background: rgba(255,255,255,.8);
  padding: 5px 22px 10px;
  position: relative;
}

#datareport {
  min-height: 360px;
}

#datareport table {
  width: 100%;
}

.dpform .confirm-text {
  line-height: 1.35;
  bottom: -10px;
}

.alert-info,
.bg-aqua,
.callout.callout-info,
.label-info,
.modal-info .modal-body {
  background-color: #61a3c3!important;
}

p.formlabel {
  margin-top: 1rem;
}

.centromere {
  display: block;
  height: 1.7rem;
  top: -1px;
}

em.centromere:after,
em.centromere:before {
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
}

em.centromere:before {
  content: '';
  top: 0;
  border-style: solid;
  border-width: 6px 8px 0;
  border-color: #fff transparent transparent;
}

em.centromere:after {
  display: block;
  content: ' ';
  border-top: 1px solid #000;
  bottom: 0;
  border-style: solid;
  border-width: 0 8px 6px;
  border-color: transparent transparent #fff;
}

#chr .cp:not(.cp-open)>div>div {
  z-index: 0;
}

#chr .cp:not(.cp-open)>div>div:hover {
  z-index: 1111!important;
}

.cap-ill img {
  padding: 20px;
  text-align: center;
}

.exmpls a {
  display: block;
  text-align: right;
  font-size: 1.3rem;
}

#imffilteredcM,
.resultarea {
  text-align: center;
}

label .infop {
  clear: right;
  margin-top: 10px;
}

#ethnicityform p,
#import p,
#import ul li,
#keyarea ul,
.payment-cards,
.resultarea,
.stripe-area {
  clear: both;
}

label .infop ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.imfsuccess .alert-info {
  background: #4d7c92!important;
}

#imffilteredcM {
  font-size: 4rem;
  display: block;
}

#processedsegments {
  color: #000;
}

.exmpls {
  padding-bottom: 13px;
  max-width: 300px;
}

.exmpls button {
  display: block;
  margin-bottom: 10px!important;
  text-align: right;
}

.resultarea .btn-plain {
  color: #efefef;
  font-size: 1.6rem;
}

.litabs>li {
  width: 33%;
  max-width: 170px;
  display: inline-block;
}

.litabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.litabs li {
  padding: 15px 0 0;
  display: inline-block;
}

.feature-row.litabs h3 {
  font-size: 1.5rem;
  margin: 10px 0!important;
  min-height: 35px;
  padding: 0 5px;
}

.tab-pane .btn,
.tab-pane .btn-plain {
  margin-right: 10px;
}

.tab-pane {
  display: none;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

#import ul li strong,
#searchpanel small,
.hhl-img a,
.tab-pane.active,
span.lcm {
  display: block;
}

.litabs.feature-row .homefeat {
  width: 50%;
  margin: 0 auto;
}

.home-loggedin .content {
  min-height: 212px;
}

.litabs .active {
  background: linear-gradient(to bottom,#e4edf3,#fff);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.litabs .active h3 {
  color: #2a3c4e;
}

.hhl {
  border: 1px solid #acaac1;
  padding: 0;
  margin: 30px 0;
}

.hhl p {
  padding: 5px 10px 0;
}

.hhl h4 {
  margin: 0;
  color: #332c69;
  font-weight: 700;
  padding: 15px 10px;
  background: linear-gradient(to right,#eaecee,#fff);
  text-transform: lowercase;
  font-family: Novecentosanswide,"Lucida Grande",Century,Helvetica,Arial,sans-serif;
  font-size: 1.8rem;
}

.repositioned #compare:after,
.repositioned #keyarea ul li a {
  font-family: 'Source Sans Pro',sans-serif;
}

.hhl .glyphicon {
  font-size: 13px;
  padding: 0 6px;
}

.hhl-img a {
  margin: 10px 15px 0 0;
}

.hhl-img a.btn {
  margin-bottom: 20px;
}

.hhl .row {
  padding-top: 5px;
}

.hhl #painted-seg,
.hhl table {
  margin-left: 10px;
}

button.clears {
  border: 0;
  background: 0;
  font-size: 1.3rem;
}

.chrdetailchromosome .both,
.chrdetailchromosome .mat,
.chrdetailchromosome .pat {
  padding: 1.2rem 0;
}

#chr-detail .chrdetailchromosome .cp>div {
  padding: 0 0 1.2rem;
}

#chr-detail em.centromere:before,
.chrdetailchromosome em.centromere:before {
  border-color: #f9f9f9 transparent transparent;
  border-top-width: 8px;
}

#chr-detail em.centromere:after,
.chrdetailchromosome em.centromere:after {
  border-color: transparent transparent #f9f9f9;
  border-bottom-width: 8px;
}

span.lcm {
  font-size: 1.75rem;
  padding: 5px 0;
  font-weight: 400;
}

span.lcm span {
  font-size: 1.3rem;
}

#chr-detail .centromere,
.chrdetailchromosome .centromere,
.cp-open .centromere {
  top: 0;
  height: 100%;
  background: #e7e7e7;
  z-index: 10!important;
}

#chr-detail .pat .centromere,
.chrdetailchromosome .pat .centromere,
.cp-open .pat .centromere {
  background: #e5eaf0;
}

#chr-detail .mat .centromere,
.chrdetailchromosome .mat .centromere,
.cp-open .mat .centromere {
  background: #f5e0e3;
}

#chr-detail .pat .centromere {
  background: linear-gradient(to bottom,#e5eaf0,rgba(255,255,255,0) 17px,rgba(255,255,255,0) 50%,#e5eaf0);
}

#chr-detail .mat .centromere {
  background: linear-gradient(to bottom,#f5e0e3,rgba(255,255,255,0) 17px,rgba(255,255,255,0) 50%,#f5e0e3);
}

#chr-detail .both .centromere {
  background: linear-gradient(to bottom,#e8e8e8,rgba(255,255,255,0) 17px,rgba(255,255,255,0) 50%,#e8e8e8);
}

.center-label {
  padding: 15px 0 0;
  text-align: center;
  font-size: 1.4rem;
  margin: 0 auto;
  font-weight: 400;
}

#import ul li a.btn {
  float: right;
  margin-bottom: 15px;
}

.floater .collapse,
.floater .collapsing,
.page-indtool .infop {
  background: #f7f7f7;
  padding: 10px;
  margin-top: 5px;
}

.page-indtool .infop {
  max-width: 770px;
  margin: 10px auto;
  box-shadow: 0 0 10px rgba(0,0,0,.125);
}

#payment-form label,
.radiobox,
.sub-container h3 {
  margin-top: 0;
}

.payment-cards {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.payment-cards li.card-visa {
  background: url("/assets/local/img/card-visa.png") top left no-repeat;
}

.payment-cards li.card-mastercard {
  background: url("/assets/local/img/card-mastercard.png") top left no-repeat;
}

.payment-cards li.card-amex {
  background: url("/assets/local/img/card-amex.png") top left no-repeat;
}

.payment-cards li.card-diners {
  background: url("/assets/local/img/card-diners.png") top left no-repeat;
}

.payment-cards li.card-jcb {
  background: url("/assets/local/img/card-jcb.png") top left no-repeat;
}

.payment-cards li.card-discover {
  background: url("/assets/local/img/card-discover.png") top left no-repeat;
}

.payment-cards li {
  display: inline-block;
  width: 60px;
  height: 40px;
  text-indent: -9999em;
  background-size: contain!important;
  margin-bottom: 4px;
}

.popup,
strong.popped,
strong.trait .popup,
strong.trait.popped {
  text-indent: 0;
  font-weight: 400;
  border-top: 0!important;
  opacity: 1!important;
}

.page-subscribe .row h2:first-child,
.sub-container {
  margin-bottom: 15px;
}

.pnote {
  float: left;
  padding: 10px 10px 10px 0;
}

.squote {
  background: #f0f3f5;
  padding: 10px 15px;
}

.strikethrough {
  text-decoration: line-through;
  color: #ff4e47;
}

.radiobox {
  padding: 10px;
  display: inline-block;
  color: #332c68;
  border: 1px solid #332c68;
  background: #fff;
}

.radiobox input {
  margin-right: 9px;
}

.radiobox input[type=radio] {
  position: relative;
  top: -1px;
}

label.plain {
  font-weight: 400;
  font-size: 1.4rem;
}

#payment-form button,
a.try-again {
  font-weight: 700;
  text-transform: uppercase;
}

.promo-offer {
  padding: 15px;
  border-radius: 15px;
  height: 100%;
  color: #fff;
  background-color: #2b3b4d;
  background-image: linear-gradient(295deg,#2b3b4d 0,#1b3141 74%);
  display: table;
}

.promo-offer ul {
  display: table-cell;
  list-style: none;
  padding: 0 15px;
}

.promo-offer li {
  padding: 5px 0;
  font-size: 2rem;
}

.form-row small {
  color: #636271;
}

.promo-offer p {
  color: #332c67;
}

.promo-offer h2 {
  background: #a5b8c5;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 2px;
}

.sub-container {
  padding: 20px;
  background: #f0f3f5;
  border-radius: 2px;
}

#payment-form {
  position: relative;
  padding: 0;
  margin-bottom: 0;
}

#pplogo {
  height: 30px;
  width: auto;
  margin-top: 20px;
}

#paypal-area form {
  text-align: right;
  padding-top: 20px;
}

#paypal-area h3,
#paypal-area h4 {
  text-align: right;
  color: #717171;
}

.lflash,
.tooltabs {
  text-align: center;
}

#paypal-area h4 {
  font-size: 13px;
  margin: 0;
  position: absolute;
  right: 18px;
}

#payment-form .pp-btn:hover {
  background-color: #efefef;
}

#payment-form button {
  margin: 10px 0 0;
  float: right;
}

.page-subscribe .collapser {
  display: block;
  clear: both;
  margin-top: 10px;
}

.chkcol {
  display: none;
}

.cdeleting .chkcol {
  display: table-cell;
  vertical-align: top;
}

table.tablesorter thead tr .tablesorter-header {
  background-image: url("../local/img/bg.gif");
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
  padding-right: 20px;
  outline: 0;
}

table.tablesorter thead tr .tablesorter-header.chkcol,
table.tablesorter thead tr .tablesorter-header.sorter-false {
  background-image: none;
  cursor: default;
}

#keyarea .btn-secondary:hover,
#view-report:hover,
.popup .matchname:hover,
.tools-area div:hover {
  cursor: pointer;
}

table.tablesorter tbody tr.odd td {
  background-color: #F0F0F6;
}

table.tablesorter thead tr .tablesorter-headerAsc {
  background-image: url("../local/img/desc.gif");
}

table.tablesorter thead tr .tablesorter-headerDesc {
  background-image: url("../local/img/asc.gif");
}

table.tablesorter thead tr .tablesorter-headerAsc,
table.tablesorter thead tr .tablesorter-headerDesc {
  background-color: #8dbdd8;
}

table.tablesorter td small {
  display: none;
}

#maincontent {
  background: #fff;
}

#maincontent>h1 {
  margin-top: 8px;
}

#importcsv {
  float: left;
  padding-top: 10px;
  max-width: 240px;
}

.repositioned #keyarea {
  position: absolute;
  bottom: 12rem!important;
  right: 2rem;
  left: auto!important;
  top: auto!important;
}

.container-wide,
.lflash {
  position: relative;
}

#matchNotesholder {
  display: none;
  padding-bottom: 60px;
}

.repositioned #keylower,
.repositioned #minkey,
.repositioned #psw,
.repositioned .cpanel,
.repositioned .grippy,
.repositioned .tip-area {
  display: none!important;
}

#matchNotesholder textarea {
  width: 100%;
}

#mmatchNotes {
  padding-right: 60px;
}

.repositioned #compare {
  background: 0 0;
}

.repositioned #compare:after {
  content: 'DNA PAINTER';
  color: #456d81;
  font-size: 1.8rem;
  font-weight: 400;
}

.repositioned #keyarea ul:after,
.repositioned #keyarea ul:before {
  content: none;
}

#psw:after,
span.swr:after {
  content: '';
}

.lflash {
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
  float: left;
  margin-left: 20px;
  padding: 6px 10px;
  width: auto;
  z-index: 10;
}

#contracting-flash,
#expanding-flash,
#generating-flash,
#load-group,
#loadme {
  float: left;
  top: 6px;
  margin-left: 20px;
  padding: 1px 10px 2px;
  width: auto;
  z-index: 10;
  position: absolute;
  display: none;
  background-image: linear-gradient(-225deg,#332c69 27%,#aabcc5 100%);
  color: #fff;
  font-size: 13px;
  line-height: 17px;
}

#psw:after,
.popped em.gn,
.single-profile #loadme {
  display: block;
}

#psw:after {
  height: 3px;
  width: 1px;
}

span.swr:after {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  width: 9px;
  background: linear-gradient(to right,rgba(60,60,67,0) 0,#3c3c43 100%);
}

.popped em.gn,
span.swr {
  max-width: 300px;
  min-height: 16px;
  position: relative;
  overflow: hidden;
}

#chromogroupfield,
#membox {
  width: 100%;
}

.popped em.gn {
  padding-bottom: 10px;
}

.popped span.swr {
  display: none!important;
}

td,
th {
  padding: 5px;
  font-size: 1.4rem;
}

th {
  padding: 10px 5px;
  background: #456d81;
  color: #fff;
}

.tabulator-row.tabulator-row-odd,
tbody tr:hover,
tbody tr:nth-child(odd) {
  background-color: #e5f0f7;
}

.tabulator-row.tabulator-row-even {
  background-color: #fff;
}

.tabulator-row .tabulator-cell {
  border-color: transparent;
}

.tabulator .tabulator-header .tabulator-col {
  background-color: #456d81;
  border-color: transparent;
  color: #fff;
  min-height: 38px!important;
  padding-top: 5px;
  padding-bottom: 5px;
}

#tbody tr:hover,
#tbody tr:nth-child(odd) {
  background: inherit;
}

#reportnew {
  margin-top: 10px;
}

#delete-tabulator-rows {
  float: none;
  position: absolute;
  top: 50px;
  margin-bottom: 10px;
}

.tabulator-row.tabulator-selected,
.tabulator-row.tabulator-selected:hover {
  background-color: #2a3c4e!important;
  color: #fff;
}

.repcheck:before {
  content: "\f0c8";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  color: #bbb;
  font-size: 18px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.tabulator-selected .tabulator-editing textarea {
  background: #373737;
}

.repcheck.repselected:before,
.tabulator-tableHolder .tabulator-selected .repcheck:before {
  content: "\f14a";
}

.tabulator-headers .repcheck:before {
  margin-left: 4px;
  margin-top: 6px;
}

#list-trees tbody tr:nth-child(odd) {
  background-color: #f7f0e4;
}

#list-trees tbody tr:hover {
  background-color: #fff5e4;
}

#list-trees table.tablesorter thead tr .tablesorter-headerDesc {
  background-color: #ffb401;
}

#list-watotrees tbody tr:nth-child(odd) {
  background-color: #c5f8ff;
}

#list-watotrees tbody tr:hover {
  background-color: #2a3b4e;
}

#list-watotrees table.tablesorter thead tr .tablesorter-headerAsc,
#list-watotrees table.tablesorter thead tr .tablesorter-headerDesc {
  background-color: #293c4e;
  color: #EDEDDC;
}

#list-watotrees #homecoveragetrees tbody tr:nth-child(odd) {
  background-color: #8b806f;
  color: #fff;
}

#list-watotrees #homecoveragetrees tbody tr a {
  color: #1a130e;
  display: block;
}

#list-watotrees #homecoveragetrees tbody tr:hover a,
#list-watotrees #homecoveragetrees tbody tr:nth-child(odd) a,
#list-watotrees tbody tr:hover,
#list-watotrees tbody tr:hover a {
  color: #fff;
}

#list-watotrees hr {
  margin: 30px 0 25px;
}

#list-watotrees #homecoveragetrees.tablesorter tbody tr:hover,
#list-watotrees #table.tablesorter thead tr .tablesorter-headerAsc,
#list-watotrees table#homecoveragetrees thead tr .tablesorter-headerDesc {
  background-color: #1a130e;
  color: #e7f2fa!important;
}

#keyarea .btn-secondary {
  font-size: 1.4rem;
  padding-top: 5px;
  display: inline-block;
  padding-right: 10px;
}

#keyarea .btn-secondary .fa,
#keyarea .btn-secondary .glyphicon {
  padding-right: 2px;
}

.tabulator-row.tabulator-selectable:hover,
tbody tr:hover {
  background-color: #cedde4;
}

.tabulator-edit-select-list .tabulator-edit-select-list-item:hover {
  background-color: #456d80;
}

.tabulator-row .tabulator-cell.tabulator-editing {
  border-color: #456d80;
}

.tabulator-edit-select-list .tabulator-edit-select-list-item.active {
  background-color: #2E3B4C;
}

.tabulator {
  border: 0;
  background-color: transparent;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
  background-color: #84a4b3;
}

div.ui-selected {
  background: #2a3c4e;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
  top: 10px;
}

div.ui-selected strong {
  opacity: 1!important;
}

div.ui-selected:not(:hover) em {
  background: #efefef!important;
  color: #000!important;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 8000;
  border: 1px dotted #000;
}

#keyarea ul,
.wide-container {
  position: relative;
}

select#memgroupid {
  max-width: 100%;
}

button.openmem {
  background: 0 0;
  border: none;
  margin-left: 10px;
  color: #2a3c4e;
  font-size: 1.2rem;
}

#keylower .openmem {
  font-size: 15px;
  background: 0 0;
  border: none;
  color: #446c81;
  margin: 10px auto 0;
  display: none;
}

#memerror,
#memsuccess {
  display: none;
  margin-top: 10px;
}

#membox small {
  color: #fff;
  margin-bottom: 5px;
  font-size: 13px;
}

#memsuccess span {
  font-weight: 700;
}

.memmovetogroup {
  margin-top: 15px;
}

#membox {
  background: #8cbed8;
  padding: 15px;
  border-radius: 2px;
  max-width: 400px;
  position: fixed;
  top: 63px;
  left: 18px;
  z-index: 19999;
  display: none;
}

.alert .btn.btn-secondary.btn-sml,
.btn-sml {
  margin: 5px 0;
  padding: 2px 5px;
  float: right;
}

#memcounter,
.mem-groups,
.mem-move {
  display: none;
}

.dpform .btn-secondary {
  float: left;
  background: 0 0;
}

#confirm-delete-profile .btn,
.btn.editgroup,
.compare {
  float: right;
}

.confirm-delete .btn-secondary {
  background: #fff;
}

#keyarea ul:after,
#keyarea ul:before {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  content: '';
}

.compare {
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0 5px;
}

#keyarea {
  position: fixed;
  right: 2rem;
  bottom: 3.5rem;
  z-index: 1112;
  min-width: 240px;
}

#keyarea ul {
  border: 1px solid #ccc;
  padding: 1rem;
  list-style: none;
}

#keyarea ul:before {
  top: -1px;
  left: -11px;
  border-width: 0 0 10px 10px;
}

.navbar-static-top {
  z-index: 1120;
}

.copies {
  padding-top: 1rem;
}

.copies label {
  margin: 0;
}

#keyarea ul:after {
  bottom: -10px;
  right: -1px;
  border-width: 10px 10px 0 0;
}

#existingancestor,
#existinggroup,
.clear-data {
  display: none;
}

.cp strong:hover .curl {
  width: 90px;
  height: 90px;
}

dd {
  padding-bottom: 2rem;
}

.navbar>.container .navbar-brand,
.navbar>.container-fluid .navbar-brand {
  margin-left: 0;
}

#matchdetailform .slider-vertical {
  margin-bottom: 0;
}

.popover {
  border-radius: 2px;
  border: 0;
}

.btn-default,
.btn-group>.btn {
  border: 0;
}

.popover-title {
  background: 0;
  border: 0;
  font-size: 2rem;
}

.popover-content ul {
  padding-left: 18px;
}

.popover-content img {
  width: 100%;
  height: auto;
  margin: 1rem 0;
}

.popover .btn-default.disabled:hover,
.popover .btn-default[disabled]:hover {
  background: #aaa;
}

.clear-data {
  clear: left;
}

.itool p:last-child {
  margin-bottom: 0;
}

.tools-area>div.tmain {
  padding-top: 13px;
  padding-bottom: 13px;
  margin-bottom: 27px;
}

body.page-tools-imf {
  background: #faf5ee;
}

body.page-tools-cap {
  background: #fdfbfb;
}

.tools-area div.tool-scm {
  background: #AED980;
}

.tools-area div.tool-wato {
  background: #71d4de;
}

.tools-area div.tool-watov2 {
  background: #a7f7ff;
}

.tools-area div.tool-imf {
  background: #fff6e7;
}

.tools-area div.tool-cft {
  background: #e6e6e6;
}

.tools-area div.tool-cap {
  background: #caf0fa;
}

.tools-area div.tool-cme {
  background: #fffde2;
}

.tools-area div.tool-csg {
  background: #fbf6bb;
}

.tools-area div.tool-dsg {
  background: #ffebd2;
}

.tools-area div.tool-sci {
  background: #f8e9f4;
}

.tools-area div.tool-lom {
  background: #c0d7de;
}

.tools-area div.tool-bkg {
  background: #DAE1E6;
}

.tools-area div.tool-acps {
  background: #E4FDF2;
}

.tools-area div.tool-cov {
  background: #dad1c6;
}

.tools-area div.tool-isg {
  background: #ffebeb;
}

.tools-area div.tmain:hover {
  background: #2a3c4e;
  box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);
}

.tools-area div:hover a,
.tools-area div:hover p {
  color: #fff;
}

.tools-area .tbadge {
  opacity: .8;
}

.tools-area div:hover .tbadge {
  opacity: 1;
}

.itool a {
  color: #2a2a2a;
}

.itool a:hover,
.tools-area div:hover a:hover {
  color: #ccc;
}

.badge-scm {
  background-image: url("/assets/local/img/tool-scm.png");
}

.badge-wato {
  background-image: url("/assets/local/img/tool-wato.png");
}

.badge-cft {
  background-image: url("/assets/local/img/tool-cft.png");
}

.badge-imf {
  background-image: url("/assets/local/img/tool-imf.png");
}

.badge-cap {
  background-image: url("/assets/local/img/tool-cap.png");
}

.badge-cme {
  background-image: url("/assets/local/img/tool-cme.png");
}

.badge-csg {
  background-image: url("/assets/local/img/tool-csg.png");
}

.badge-dsg {
  background-image: url("/assets/local/img/tool-dsg.png");
}

.badge-sci {
  background-image: url("/assets/local/img/tool-sci.jpg");
}

.badge-lom {
  background-image: url("/assets/local/img/tool-lom.jpg");
}

.badge-bkg {
  background-image: url("/assets/local/img/tool-bkg.png");
}

.badge-acps {
  background-image: url("/assets/local/img/tool-acps.png");
}

.badge-cov {
  background-image: url("/assets/local/img/tool-coverage.jpg");
}

.badge-isg {
  background-image: url("/assets/local/img/tool-isg.png");
}

.itool {
  padding-right: 150px;
  position: relative;
  min-height: 140px;
}

.tbadge,
.tcta,
a.permalink {
  position: absolute;
}

.tbadge {
  top: 0;
  right: 0;
  background-size: cover;
  margin: 0 auto;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.tooltabs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tooltabs li {
  display: inline-block;
}

.tab-content {
  display: none;
  padding-top: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-top: 2px solid #828282;
}

.tab-content.watotab {
  border-top-color: #89D2DC;
}

.tab-content.coveragetab {
  border-top-color: #8b806f;
}

button.watotab {
  background: #efefef;
  color: #333;
}

button.watotab.selectedtab {
  background: #89D2DC;
  color: #000;
  font-weight: 700;
}

button.coveragetab {
  background: #efefef;
  color: #333;
}

button.coveragetab.selectedtab {
  background: #8b806f;
  color: #fff;
  font-weight: 700;
}

.tooltabs button {
  padding: 8px 21px 7px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: none;
}

.tooltabs button.selectedtab {
  cursor: default;
}

#keyarea ul li span:hover,
.litabs li:hover {
  cursor: pointer;
}

.panel-body .alert a {
  color: #efefef;
}

.panel-body .alert a:hover {
  color: #ccc;
}

.tcta {
  bottom: 15px;
  right: 30px;
}

a.permalink {
  display: block;
  text-decoration: none;
  right: 10px;
  bottom: 10px;
}

.permalink .fa-link:before {
  font-size: 1.25rem;
}

#confirm-delete-profile {
  position: absolute;
  top: -10px;
  z-index: 99;
  width: 100%;
  border-radius: 2px;
}

.page-tools #confirm-delete-profile {
  top: auto;
}

.home-loggedin #confirm-delete-profile {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border: 8px solid #efb48a;
  top: 15px;
  line-height: 1.25;
  background: #dc4b38;
}

input.hfilterdata {
  padding: 3px 5px;
  width: 50%;
}

.confirm-delete em {
  color: #f7f9c1;
  display: block;
  padding: 10px 2px;
}

#confirm-delete-profile .del-profile-proceed {
  float: right;
  clear: right;
  margin-right: 10px;
  text-transform: none;
  color: #fff;
  background: 0 0;
  border: none;
}

#confirm-delete-profile button:active:focus,
#confirm-delete-profile button:focus {
  outline: 0;
  box-shadow: none;
}

#confirm-delete-profile .btn-cancel {
  text-transform: none;
  color: #fff;
  background: 0 0;
  border: none;
  float: none;
  display: inline;
  padding-left: 0;
}

#confirm-delete-profile #bubuttons .btn-cancel {
  float: left;
}

.del-profile {
  float: right;
}

.tab-pane .del-profile {
  padding: 0 2px;
  border: 1px solid transparent;
}

.tab-pane .del-profile:hover {
  border: 1px solid #5b7b90;
}

#keyarea ul li a {
  position: relative;
  line-height: 1.75rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  font-size: 1.4rem;
  width: calc(100% - 4rem);
  z-index: 2000;
}

.cp strong.popped .popup p,
.trait li {
  white-space: normal;
}

#existingcolours li span,
#keyarea ul li span,
.chr-detail-key li span {
  vertical-align: bottom;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: .25rem;
  margin-right: .75rem;
  display: inline-block;
}

#keyarea ul li.dphidden {
  opacity: .5;
}

#keyarea #newmatchkey {
  display: none;
  margin-bottom: 25px;
}

#keyarea ul li a.btn {
  color: #fff;
  margin: 10px 0 0;
  width: 100%;
}

.promo-panel-body {
  padding: 10px 20px 5px;
  background: #00b6dc;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
}

.promo2 {
  background: #c4dde3;
  margin: 30px 15px;
}

.promo2 strong a,
body.page-home .promo-panel-body.promo2 p {
  color: #333;
}

.promo-panel-body a,
.promo-panel-body p {
  color: #fff;
}

.promo-panel-body a.btn {
  margin: 10px 0 15px;
}

body.page-home .promo-panel-body p {
  color: #fff;
  font-size: 1.7rem;
  padding-top: 13px;
}

.popup,
strong.popped {
  height: auto;
  border-radius: 2px;
  width: auto!important;
  padding: 15px 10px 10px;
  font-size: 1.5rem;
  left: -1.5vh;
  top: -4px;
}

span.fixedkey {
  background-image: url("/assets/local/img/new-twill.png");
}

#traitskey {
  list-style: none;
  margin: 10px 0 10px 20px;
  padding: 0;
}

#traitskey span {
  font-size: 1.375rem;
}

#traitskey strong:before {
  content: '';
  display: block;
  float: left;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: inherit;
  vertical-align: bottom;
  margin-right: 8px;
  position: relative;
  bottom: -2px;
}

.panel-body.f-info-box {
  background: #ededed;
  position: relative;
  left: -25px;
  padding: 15px;
  margin-top: 15px;
  max-width: 700px;
}

.panel-body-inner {
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.panel-body-inner ul {
  padding-left: 20px;
}

.f-info-box h2 {
  margin-top: 0;
}

strong.trait {
  position: absolute;
  height: 100%;
  min-height: 44px;
  top: -10px;
  max-width: 2px;
}

#maincontent.showtm #traits-intro {
  display: block;
}

.cp-open strong.trait:after,
strong.trait.popped:after,
strong.trait:hover:after,
strong.trait:not(.popped):before {
  content: '';
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: inherit;
  position: absolute;
  top: -14px;
  left: -8px;
}

.trait li {
  color: #efefef;
  margin-bottom: 5px;
}

.trait ul {
  list-style: none;
  padding: 0;
}

.trait a {
  border-bottom: 1px dotted #9f9b9b;
}

.trait ul li:hover {
  cursor: pointer;
  color: #ccc;
}

.trait h6 {
  font-family: 'Helvetica Neue',Helvetica,Sans-serif;
  color: #b2d0de;
  margin-bottom: 5px;
}

.cp strong.trait:not(.popped):hover>span,
.cp-open strong.trait:not(.popped)>span {
  top: -18px;
  left: -13px;
  padding-left: 27px;
}

.cp-open strong.trait:before,
strong.trait:hover:before {
  content: none;
}

.cp strong.trait:not(.popped):hover>span:after,
.cp-open strong.trait:not(.popped)>span:after {
  content: 'read more';
  padding-left: 5px;
  font-size: 1rem;
  color: #ccc;
}

.showtm #chr {
  clear: left;
  padding-top: 1rem;
}

.showtm #chr .cp,
.showtm #chr h4 {
  margin-top: 3rem;
}

strong.trait .popup,
strong.trait.popped {
  height: auto;
  border-radius: 2px;
  width: auto!important;
  padding: 15px 10px 10px;
  left: -1.5vh;
}

#chr-groupdetail-key a.active,
.alert-larger,
.sib-form .btn,
.thischr,
.trname {
  font-weight: 700;
}

strong.trait.popped {
  background: 0 0!important;
  padding: 0;
  border: 0!important;
  top: -23px;
}

strong.trait.popped:after {
  top: 0;
  left: -7px;
}

strong.trait h5 {
  font-family: 'Helvetica Neue',Helvetica,sans-serif;
  padding-left: 23px;
  margin: 12px 0 10px;
}

strong.trait.popped>span {
  display: none;
}

strong.trait .popup p {
  margin-top: 5px;
}

.cp strong.popped.trait .popup {
  cursor: default;
  position: absolute;
  left: -18px;
  background: #1F1F27!important;
  padding-top: 5px;
  top: -15px;
}

.cp-open strong.trait:not(.popped)>span {
  top: -1px!important;
  left: 0!important;
}

.cp-open strong.trait {
  min-height: 3rem;
  top: 0;
}

.cp-open strong.trait:not(.popped):after {
  left: 8px;
  top: 4px;
}

.trname {
  font-size: 1.25rem;
  display: block;
}

dd ul {
  margin-bottom: 0;
}

; .panel-body .savenew {
  font-size: 22px;
}

.seg-ill table {
  margin-bottom: 2rem;
}

.welcome-panel-body {
  line-height: 1;
  padding: 9px 10px 13px;
  margin: 0;
  clear: left;
  font-family: Novecentosanswide,"Lucida Grande",Century,Garamond,serif;
  font-size: 18px;
  text-transform: lowercase;
}

.sib-form,
.sib-form label,
.sib-form p {
  text-transform: none;
}

.navbar-nav .fa {
  font-size: 1.5rem;
}

.compact-header .navbar-nav.sec-nav>li>a {
  color: #f6b642;
}

.compact-header .navbar-nav.sec-nav>li>a:hover {
  text-decoration: underline;
}

.compact-header .navbar-nav.sec-nav>li:hover:before {
  content: none;
}

#mc-embedded-subscribe {
  width: 100%!important;
}

.sib-form input {
  border-radius: 0!important;
  border: 0!important;
}

.sib-form .mc-field-group label {
  margin-bottom: 5px!important;
}

.sib-form div#mce-responses {
  margin: 0!important;
  width: 100%!important;
}

.sib-form div.response {
  width: 100%!important;
  padding: 0!important;
}

#mce-responses {
  background: #fff;
  color: #000;
}

.sib-form h2 {
  margin: 0!important;
  padding: 0 0 10px!important;
  text-align: center!important;
  font-size: 2.5rem!important;
}

.sib-form .btn {
  border-radius: 0;
  border: none;
  color: #fff!important;
  text-transform: uppercase;
  margin: 0;
}

#totalmatchcm a {
  border-bottom: 1px dashed #b0b4b7;
}

#mergeRow-gdpr .mc_fieldset {
  left: 20px;
}

.content__gdpr {
  margin-bottom: 0;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.mc-field-group .radio input[type=radio],
.radio-inline input[type=radio] {
  position: static;
}

.welcome-panel-body {
  background: #4c6677;
  color: #fff;
  padding-left: 16px;
}

.welcome-panel-body .fa {
  color: #596775;
  font-size: 1.5rem;
}

.sidesc {
  margin-top: 10px;
  padding: 0 20px;
}

.alert-larger {
  font-size: 2rem;
  margin-bottom: 10px;
}

.alert-error h2,
.alert-info h2 {
  font-family: 'Helvetica Neue',Helvetica,'Source Sans Pro',Arial,sans-serif;
  color: #caf0fa;
  text-transform: none;
  letter-spacing: 0;
  font-size: 2.75rem;
}

.alert-error h2 {
  color: #ffddd9;
}

#has-uploaded-cluster-csv .alert-larger {
  color: #ff0;
  text-align: center;
}

#has-uploaded-cluster-csv li {
  font-size: 1.8rem;
  line-height: 1.8rem;
}

.welcome-panel-body.larger {
  font-size: 20px;
  padding: 7px 10px 11px;
  line-height: 1.35;
}

#painted-seg {
  margin: 0 0 2rem;
}

.chr-detail-key {
  list-style: none;
  float: right;
  margin-top: 5px;
}

#chr-groupdetail-key ul {
  clear: both;
  list-style: none;
  margin-top: 10px;
  padding-left: 36px;
  max-height: 350px;
  position: relative;
  overflow-y: auto;
}

#chr-groupdetail-key.drg ul {
  max-height: none;
  overflow: visible;
}

.cgroups,
.cmatches {
  max-height: 350px;
  overflow-y: auto;
}

#editgroupbutton {
  clear: right;
}

#chr-groupdetail-key li,
.chr-detail-key li {
  font-size: 1.4rem;
  padding-bottom: 5px;
}

#chr-groupdetail-key li {
  padding-bottom: 0;
  position: relative;
  font-size: 1.5rem;
  display: inline-block;
  width: 19%;
  overflow: hidden;
  box-sizing: border-box;
  margin-right: 1%;
}

#chr-groupdetail-key li:after {
  content: '';
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  width: 20px;
  background: linear-gradient(to right,rgba(255,255,255,0) 0,#f9f9f9 100%);
}

#chr-groupdetail-key li.btncell {
  width: auto;
}

#chr-groupdetail-key li.btncell:after {
  content: none;
}

#chr-groupdetail-key .keytitle {
  padding-left: 36px;
  width: auto;
  clear: both;
  display: block;
  padding-bottom: 5px;
  text-align: left;
  text-transform: uppercase;
  margin-top: 42px;
}

.detailheader h4,
.filtergroupblock,
.flash,
.thischr {
  text-align: center;
}

#chr-groupdetail-key .keytitle small {
  text-transform: none;
  padding-left: 5px;
}

#chr-groupdetail-key li a {
  display: inline-block;
  white-space: nowrap;
  padding: 1px 5px 0 15px;
}

#chr-groupdetail-key #showallmatches,
#header-title,
.flash {
  display: none;
}

.chrdetailchromosome strong.highlight:not(.popped) {
  border-color: #000!important;
  background: repeating-linear-gradient(315deg,#fff,#000 3px);
  border: 1px solid #333!important;
  height: 1.5rem;
}

#filterdatagroup {
  width: 240px;
  padding: 5px 10px;
  margin-top: 10px;
}

.filtergroupblock {
  display: none;
}

.popup a {
  color: #efefef;
  word-wrap: break-word;
}

strong.popped.fixed {
  width: 300px!important;
}

strong.popped.fixed .popup {
  width: 95%!important;
  white-space: normal;
  padding-top: 10px;
}

strong.popped.fixed .popup p {
  padding-top: 10px;
}

.flash {
  padding: 6px 2px;
  width: 81px;
  float: right;
  margin-right: 10px;
  font-size: 16px;
}

#facebookShareLink i,
.thischr {
  margin-right: 5px;
}

.thischr {
  border-radius: 50%;
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
}

.floater .flash {
  float: left;
}

.dpform ul {
  padding-bottom: 10px;
}

.popup {
  padding: 0;
  font-size: 1.25rem;
  max-width: 300px;
}

#minkey:not(.minimised),
.mdoclose,
.panel-body .dpclose,
.popped .dpclose,
.tip-area .dpclose {
  text-decoration: none!important;
  font-weight: 400;
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  top: -8px;
  right: -9px;
  background: #456d81;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  z-index: 102000;
  line-height: 1.25;
  cursor: pointer;
}

#match-confirm,
.fgc,
.tip-area .dpclose {
  display: none;
}

#minkey:not(.minimised):hover {
  background: #333;
}

.panel-body {
  position: relative;
}

.tip-area .dpclose {
  right: 20px;
  top: -10px;
  font-size: 1.1rem;
  line-height: 15px;
  color: #342c6a;
  background: #c8d4da;
  border: 1px solid #fff;
  z-index: 1;
  padding: 0;
}

.fgc:active,
.fgc:focus {
  outline: 0;
  border-color: #231556;
}

.panel-body .dpclose {
  font-size: 1.3rem;
  line-height: 20px;
  z-index: 999;
  padding: 0;
}

.tip-area .dpclose:hover {
  border: 1px solid #466d81;
}

.mdoclose:hover,
.panel-body .dpclose:hover {
  background: #332c68;
  color: #fff;
}

#filter-groups {
  width: calc(100% - 12px);
  position: absolute;
  left: 0;
  top: -64px;
  background: rgba(255,255,255,.95);
  z-index: 12000;
  box-sizing: border-box;
  margin-left: 11px;
  padding: 10px 0 10px 10px;
  border: 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: none;
}

button.fgc {
  background: 0 0;
  border: none;
  position: absolute;
  top: -55px;
  right: 5px;
  z-index: 12001;
}

#groupdetail .newgroupform h3 {
  line-height: 1.75rem;
}

#keyarea.gs ul#chrkey {
  padding-bottom: 51px;
}

#keyarea.gs #keyhigher {
  border-bottom: 1px solid #ccc;
}

.tip-area .slick-initialized~.dpclose {
  display: block;
}

.gender-male #pX .pat,
.groupsideboth div.mat,
.groupsideboth div.pat,
.groupsidemat div.both,
.groupsidemat div.pat,
.groupsidepat div.both,
.groupsidepat div.mat,
body[data-mapgender=gender-male] #pdX .pat {
  display: none;
}

#minkey:not(.minimised) .glyphicon {
  font-size: 1.0625rem;
}

#existingcolours li span {
  margin-right: .5rem;
}

.detailheader h4 {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #466d81;
  font-size: 1.5rem;
}

.boxgroup,
.boxgroup label,
.del-segs-area {
  text-align: left;
}

.badge,
strong a.dpclose:hover {
  color: #fff;
}

#profileGenderro,
span.ro {
  float: left;
}

#profileGender,
#profileGenderro {
  font-size: 1.4rem;
  margin-left: 5px;
  line-height: 21px;
  padding-top: 16px;
}

#chromodetail div.both,
.groupsideboth .cp>div {
  background-color: #ededed!important;
}

.chrdetailchromosome .cp>div.mat:after,
.chrdetailchromosome .cp>div.pat:after {
  border: 0;
}

.cpanel label {
  line-height: 1.5;
  padding-bottom: 0;
  margin-top: 0;
}

.cpanel label input[type=checkbox] {
  display: inline-block;
  padding-right: 5px;
}

.badge {
  background: #d83600;
  border-radius: 2px;
  font-weight: 700;
}

#settingspanel ul {
  list-style: none;
  padding: 0;
}

.actions li,
.reports li {
  padding: 0 0 8px;
}

#matchlistpeople {
  column-count: 3;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

#matchlistpeople li {
  padding: 5px;
  break-inside: avoid-column;
}

#matchlistpeople li:nth-child(even) {
  background-color: #e5f0f7;
}

#settingspanel li a,
#settingspanel li label {
  font-size: 1.5rem;
}

#settingspanel li span {
  margin-right: 4px;
  float: left;
  width: 20px;
  vertical-align: top;
}

#settingspanel li>label span::before {
  margin-left: 1px;
  color: #456e81;
}

#settingspanel label {
  display: block;
  float: left;
  width: 89%;
  line-height: 1.35;
  padding-bottom: 7px;
  font-weight: 400;
}

#settingspanel input {
  display: block;
  clear: both;
  margin-right: 9px;
  float: left;
}

.mark-del {
  float: left;
  background: 0 0;
  border: none;
  color: #446c81;
  padding: 0 0 10px;
}

.mark-del:hover {
  color: #332c68;
}

.del-segs-area.active {
  position: fixed;
  margin-left: 100px;
}

#datareport button.del-segs,
.del-segs-area.active .mark-del,
.del-segs-area.confirm button.del-segs,
.del-segs-area.started .mark-del,
.mark-del-i,
button.cdel-segs {
  display: none;
}

.del-segs-area.started .mark-del-i {
  display: inline-block;
}

#datareport .del-segs-area.active.confirm button.del-segs {
  display: none;
}

#datareport .del-segs-area.active button.del-segs,
#searchentry,
.del-segs-area.active .cdel-segs {
  display: inline-block;
}

#datareport .del-segs-area.active button.del-segs {
  float: left;
  margin-top: 0;
}

button.cdel-segs,
button.cdel-tsegs {
  background: 0 0;
  border: none;
  line-height: 2.4;
  padding: 0 0 0 10px;
}

fieldset>button.cdel-segs {
  position: absolute;
  top: 5px;
}

#segs-confirm-delete button.cdel-segs {
  padding-top: 11px;
  font-weight: 400;
  font-size: 1.4rem;
}

.del-segs-area.active fieldset {
  float: left;
  background: #8cbed8;
  padding: 15px 30px 15px 15px;
  border-radius: 2px;
  margin-right: 50px;
}

#searchpanel input,
.dpform input {
  box-sizing: border-box;
  padding: 5px 8px;
  border: 0;
}

.search-site-area input {
  box-sizing: border-box;
  padding: 4px 8px;
  margin-bottom: 5px;
  vertical-align: top;
  max-width: 100%;
}

#newgroupfield,
#searchentry {
  margin-bottom: 10px;
}

#searchentry {
  min-width: 300px;
}

.dpform input,
.dpform select {
  margin-bottom: 8px;
}

.slider-handle {
  border-radius: 3px!important;
  width: 20px;
  height: 20px;
}

.slider.slider-vertical {
  height: 140px;
}

.navbar-brand {
  padding-top: 10px;
}

.thin-header .navbar-brand {
  padding-top: 3px;
}

a.navbar-brand span {
  color: #9bef8f;
  background-color: red;
  background-image: linear-gradient(45deg,#f3ec78,#af4261);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#searchpanel #search-info {
  padding-bottom: 5px;
}

.confirm-delete {
  display: none;
  font-weight: 700;
  font-size: 1.6rem;
  position: absolute;
  box-shadow: 0 0 30px rgba(0,0,0,.125);
  padding: 10px;
  color: #fff;
  border-radius: 2px;
  line-height: 3.2rem;
  left: 19px;
  margin-top: -25px;
  z-index: 1102;
  background: #456d81;
}

.narrower .confirm-delete {
  margin-right: 25px;
}

#update-info {
  font-size: 15px;
  background: 0 0;
  display: block;
  border: none;
  color: #446c81;
  margin: 10px auto 0;
}

.confirmk-delete .btn-secondary:hover,
strong .dpclose:hover {
  background: #333;
}

#update-info button {
  margin-top: 10px;
}

.confirm-delete .btn-secondary {
  float: none;
  display: block;
  clear: both;
}

.confirm-delete.higher-abs {
  bottom: 15px;
  max-width: 90%;
}

#help-key .img-responsive,
.dpform .panel-body {
  max-width: 100%;
}

.confirm-delete p {
  line-height: 2rem;
}

#datareport .confirm-delete {
  position: relative;
  left: 0;
  text-align: left;
}

.slider .tooltip.top .tooltip-arrow {
  display: none!important;
}

label.paddedlabel {
  padding-bottom: 20px;
}

label.paddedlabel2 {
  padding: 10px 0 4px;
}

#newmatchCertainty {
  padding-top: 10px;
}

.editable {
  float: left;
  display: inline-block;
  border: 1px solid transparent;
  padding: 0 5px;
}

.editable input[type=submit] {
  display: none;
}

.edit_area {
  border: 1px solid #fff;
}

.edit_area:hover,
.editable:hover {
  cursor: pointer;
  border-color: #ccc;
}

span#profileGender:hover {
  border-color: #fff;
}

#overlay-confirm,
#overlay-confirm-none {
  display: none;
  clear: left;
  margin-top: 1rem;
}

.btn.matchform {
  display: block;
}

.slider-vertical {
  margin: 20px auto;
}

.enableHover .nav>li.active:before,
.enableHover .nav>li:hover:before {
  content: '';
  width: auto;
  background: rgba(170,188,197,.4);
  transform: skew(-10deg);
  height: auto;
  display: block;
  min-height: 52px;
  left: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 0;
}

a.view-dupes {
  display: block;
  float: left;
  margin: 5px 0 15px;
}

.save-dupetool {
  line-height: 22px;
}

.cp .btn {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2rem;
  margin-top: 10px;
}

strong.match button {
  text-transform: uppercase;
  display: block;
  width: 100%;
  background: #6b6884;
}

.cpanel small,
.dpform small,
.floater small,
.panel-body small {
  font-style: italic;
  color: #767676;
  font-weight: 700;
  line-height: 1.375;
}

.panel-body small {
  display: block;
  margin-top: 10px;
}

p#somedupesegments {
  margin-bottom: 0;
}

.floater .popup .btn {
  float: none;
  display: block;
}

#matchform {
  z-index: 10001;
}

.dpform p.unpadded {
  margin: 15px 0 0;
}

div#thegroupnotes {
  max-height: 115px;
  overflow: auto;
}

.floater {
  display: none;
}

.other-views,
a.editmatchfromsegment {
  font-weight: 700;
  display: block;
  padding: 5px 0 0;
}

.other-views .glyphicon {
  color: #a8afb9;
}

ul#detail_group_links {
  padding: 0;
  list-style: none;
  margin: 0 0 5px;
}

.mobile-only {
  display: none;
}

.user-is-touching .mobile-only {
  display: block;
}

form.dpform {
  max-height: 100%;
}

form.dpform .inner {
  margin: 0 auto;
  padding: 0 5px 5px;
}

form.dpform textarea {
  display: block;
  border: 1px solid #d8e4ea;
  width: 100%;
  padding: .5rem;
  margin: 1rem 0 0;
  min-height: 180px;
}

form.dpform select {
  height: 32px;
}

form.dpform textarea#segmentnotes {
  min-height: 100px;
}

.boxgroup label {
  border-radius: 2px;
  min-height: 120px;
  width: 150px;
  vertical-align: top;
  background: #304c5a;
  margin-right: 20px;
  color: #fff;
  padding: 10px;
  display: inline-block;
}

.boxgroup label.active {
  background: #ff4f47;
}

.boxgroup input {
  position: absolute;
}

.boxgroup span {
  display: block;
  padding-left: 20px;
}

#confirm-clear-area,
.form-toggled #chr .popped,
.form-toggled #chr .popup,
.groupfields,
.oldgroupfields {
  display: none;
}

#searchpanel .dpclose,
#settingspanel .dpclose,
#traitspanel .dpclose {
  position: absolute;
  right: .5rem;
  top: 0;
  font-size: 2.5rem;
  text-decoration: none;
  color: #456d81;
  font-weight: 400;
  opacity: 1;
  z-index: 9;
  background: 0 0;
  border: none;
}

.floater>a.dpclose,
.floater>div>.dpclose,
.fulloverlay .dpclose,
form a.dpclose {
  position: absolute;
  right: 2rem;
  top: 1rem;
  font-size: 2.5rem;
  text-decoration: none;
  color: #456d81;
  font-weight: 400;
  opacity: 1;
  z-index: 9;
}

.floater>a.dpclose:hover,
.floater>div>a.dpclose:hover,
form a.dpclose:hover {
  color: #332c69;
}

#chr .cp .both strong.match:not(.popped),
strong.gnewmatch {
  color: #fff;
  height: 3rem!important;
}

strong.gnewmatch {
  border: 1px solid #ccc;
  margin-top: 8px;
}

.refresh-stats {
  background: 0 0;
  border: none;
  font-size: 1.125rem;
  opacity: .9;
  color: #fff;
}

.refresh-stats:hover {
  color: #efefef;
}

.refresh-stats:focus {
  outline: 0;
}

#chrdetail .cp .both strong.match:not(.popped),
#groupdetail .cp .both strong.match:not(.popped) {
  height: 1.5rem!important;
  border-top-width: 1.5rem!important;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  margin-top: 0!important;
}

#chrdetail .cp .both strong.match.highlight:not(.popped),
#groupdetail .cp .both strong.match.highlight:not(.popped) {
  border-top-width: 1px!important;
}

#groupdetail .both>div {
  min-height: 2rem;
}

#groupdetail .both>div:last-child {
  min-height: 1.5rem;
}

#chr .cp .both strong.match:not(.popped) {
  border-top-width: 3.3rem!important;
}

#chr .cp-open .both strong.match:not(.popped) {
  height: 1.5rem!important;
  border-top-width: 1.5rem!important;
}

a.dpprint {
  position: absolute;
  right: 5rem;
  top: 2rem;
  font-size: 1.5rem;
  text-decoration: none;
  color: #456d81;
  font-weight: 400;
  opacity: 1;
  z-index: 9;
}

.payments .btn-secondary {
  color: #456d81;
  background: #fff;
  border: 1px solid #456d81;
}

.page-subscribe .img-responsive {
  margin: 0 0 2rem;
}

#featc {
  margin-bottom: 3rem;
}

#featc td,
#featc th {
  text-align: center;
}

#featc th {
  color: #456d81;
  background: 0 0;
}

#numberofimatches,
#numberofisegmentsalert {
  font-weight: 700;
}

#ethimport-confirm,
#import-confirm {
  display: none;
  position: relative;
}

#ethimport-confirm .dpclose,
#import-confirm .dpclose {
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 1.25rem;
  line-height: 1;
}

strong.gnewmatch {
  opacity: .85;
  background: repeating-linear-gradient(315deg,#fff,#000 3px);
}

form .dpclose:hover {
  color: #aaa;
}

.popped.gnewmatch {
  height: auto!important;
}

.floater h2,
form.dpform h2,
h4.detailgroupside {
  text-align: center;
  padding: 0 5.5rem 1.5rem;
  margin: 0;
}

.ancestorfields,
.groupfields {
  clear: both;
}

#gnewgroupname {
  display: block;
}

#chromodetail .cp>div:before {
  text-transform: uppercase;
  display: block;
  text-align: center;
  font-family: Novecentosanswide,"Lucida Grande",Century,Garamond,serif;
  font-weight: 700;
  padding: 10px 0;
}

#chromodetail .pat:before {
  content: 'Paternal';
}

#chromodetail .mat:before {
  content: 'Maternal';
}

#chromodetail .both:before {
  content: 'Not known';
}

#chrcontainer.overlaying .cp:not(.cp-open) .match:not(:hover) {
  opacity: .375!important;
}

#chromodetail .cp {
  width: 100%!important;
}

#chromodetail h2 strong {
  display: inline-block;
  background: #221657;
  color: #fff;
  index: 2001;
  margin: .5vmin 0 0;
  letter-spacing: 0;
  position: relative;
  text-align: center;
  width: 2.25vmin;
  font-weight: 400;
  height: 2.25vmin;
  border-radius: 50%;
  max-height: 48px;
  max-width: 48px;
  min-height: 36px;
  min-width: 36px;
  line-height: 32px;
  font-size: 2.25rem;
}

#chromodetail .cp>div.both {
  background: linear-gradient(to top,rgba(255,255,255,1) 0,rgba(246,246,246,1) 3%,rgba(237,237,237,1) 100%);
}

#chromodetail .cp>div.both:empty {
  display: none;
}

#chr-detail .both>div,
#chr-detail .mat>div,
#chr-detail .pat>div {
  width: 100%;
  position: relative;
  min-height: 2rem;
}

#chr-detail .both>div.fixed {
  min-height: 3rem;
}

div#keyarea:before {
  content: '';
  display: block;
  background: #ccc;
  height: 1px;
  margin-left: 10px;
}

#groupdetail .cp>div>div,
#matchdetail .cp>div>div,
.cp-open .both>div,
.cp-open .mat>div,
.cp-open .pat>div {
  width: 100%;
  position: relative;
  min-height: 2rem;
}

div.popped {
  min-height: 0!important;
}

#groupdetail .cp>div>div {
  min-height: 1.5rem;
  margin-bottom: 5px;
}

#groupdetail .cp>div>div:last-of-type {
  margin-bottom: 0;
}

.cp-open .both>div {
  min-height: 2rem;
}

div.gnewmatch {
  position: absolute;
}

.cp-open .both>div.gnewmatch {
  min-height: 4.5rem;
}

#chr:not(.hidematchnames) .cp-open strong.gnewmatch:not(.popped)>em,
#chr:not(.hidematchnames) .cp-open strong.highlight:not(.popped)>span,
.showmatchnames .cp strong.highlight:not(.popped)>span {
  top: -1px;
}

.cp strong.hilite,
.cp strong:hover {
  opacity: 1!important;
}

.chrdetailchromosome .both>div:last-child,
.chrdetailchromosome .mat>div:last-child,
.chrdetailchromosome .pat>div:last-child {
  min-height: 1.5rem;
}

em.grippy {
  float: right;
  clear: right;
  content: '....';
  width: 10px;
  height: 20px;
  display: inline-block;
  overflow: hidden;
  line-height: 5px;
  padding: 5px 2px;
  vertical-align: middle;
  margin-top: 1px;
  margin-left: 6px;
  font-size: 8px;
  font-family: sans-serif;
  letter-spacing: 2px;
  color: #292929;
  text-shadow: 1px 0 1px #000;
}

.indmatch em.grippy,
.keytitle .grippy {
  float: none;
  color: #656667;
  font-size: 10px;
}

em.grippy::after {
  content: '.. .. .. ..';
}

.indmatch {
  position: relative;
}

.indmatch a {
  padding-left: 24px;
}

.indmatch em.grippy {
  padding: 5px 0;
  margin-left: 0;
  position: absolute;
  left: 0;
  margin-top: 0;
}

.indmatch em.grippy::after,
.keytitle em.grippy::after {
  content: '.. ..';
}

.keytitle .grippy {
  padding: 0;
  margin: 0 0 0 2px;
  cursor: default;
}

.main-footer {
  font-size: 1.25rem;
}

.ui-sortable-placeholder {
  height: 1.75rem;
  text-decoration: none;
  padding-bottom: .25rem;
  margin-bottom: .5rem;
  color: #231557;
  border: 1px dotted #ccc;
  box-sizing: border-box;
  background: #fff;
}

.ui-sortable-helper {
  white-space: nowrap;
}

.ui-sortable-helper em.grippy,
.ui-sortable-helper em.grippy::after {
  content: '';
}

button.collapser {
  display: block;
  font-weight: 700;
  text-align: left;
  font-size: 1.6rem;
  margin-top: .5rem;
  line-height: 1.3;
}

#claimed,
#groupError,
#matchError,
#namematchError {
  display: none;
}

.content ol>li::before,
.hfilterblock,
.noneyet,
.panec,
.tab-pane h3,
.tree li,
.tree li a.split span,
.tree ul,
ul.toolsfooter {
  text-align: center;
}

button.collapser:focus {
  outline: 0;
}

button.collapser .glyphicon {
  font-size: 1.2rem;
  line-height: 2.125rem;
  padding-right: .5rem;
  vertical-align: bottom;
}

.page-glossary dd ul a,
.panel-body {
  font-size: 1.6rem;
}

.floater button.collapser {
  margin-bottom: 5px;
}

.floater ul.plain {
  margin-top: 10px;
  border-radius: 2px;
  list-style: disc;
  padding-left: 30px;
}

.groupbuckets,
.submenu,
ul.plain,
ul.toolsfooter {
  list-style: none;
}

.panel {
  border: 0;
  box-shadow: none;
}

.panel-body {
  padding: 15px;
  border-radius: 2px;
  float: left;
  max-width: 800px;
  clear: left;
  margin: 2rem 0 1rem;
}

.page-update .panel-body,
.page-update-fragment .panel-body,
.panel-body.fullw {
  max-width: 100%;
}

.page-home .panel-body {
  margin: 0;
}

#datareport h2,
#detailgroupname {
  text-transform: lowercase;
}

.dpform .panel-body {
  float: none;
  margin: 1rem 0;
  padding: 5px 15px 15px;
}

.dpform .panel-body.pad {
  padding-top: 15px;
}

.dpform .col-sm-6 .panel-body {
  min-height: 280px;
}

#groupConfidenceLabel {
  box-sizing: border-box;
  padding-top: 30px;
  display: block;
  clear: both;
  font-weight: 700;
}

#groupCertaintySlider {
  float: left;
}

button.collapser {
  background: 0 0;
  border: 0;
  padding: 0;
  color: #304d5b;
}

.popover {
  max-width: 550px;
}

.alert .btn.btn-secondary,
.panel-body .btn.btn-secondary {
  margin-left: 10px;
  background: 0 0;
  border: 1px solid #2A135F;
  color: #2A135F;
}

.alert .btn,
.alert .btn.btn-secondary {
  margin-left: 20px;
}

.login-box-body,
.register-box-body {
  font-size: 1.5rem;
}

.panel-body textarea {
  display: block;
  margin: 1.5rem 0;
  color: #000;
  width: 50%;
  min-width: 300px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  height: 100px;
}

.panel-body textarea.collapse {
  display: none;
}

.panel-body ol {
  margin: 0;
  padding: 10px 0 10px 20px;
}

#touch-device-message {
  margin-top: 10px;
  display: none;
}

.user-is-touching #touch-device-message {
  display: block;
  clear: both;
  margin-top: 12px;
  float: left;
}

#removedata {
  width: 100%;
  min-height: 140px;
}

.btn.loading {
  opacity: .6;
}

strong.popped.cutoff {
  left: auto!important;
}

strong.cutoff.cutoff-right {
  right: 0!important;
}

#copied-match {
  float: none;
  position: absolute;
  bottom: 41px;
  right: -23px;
  background: 0 0;
  font-size: 13px;
  color: #382b65;
}

.cp strong>span #profilemeta label {
  clear: both;
  display: block;
  margin-top: 1rem;
}

#chr .cp:not(.showmatchnames):not(.cp-open) strong.cutoff-right:not(.popped):hover .swr,
#chr .cp:not(.showmatchnames):not(.cp-open) strong.firsthilite.cutoff-right:not(.popped) .swr,
.chrcontainer:not(.showmatchnames) .cp strong.cutoff-right:not(.popped):hover .swr {
  clear: both;
  position: absolute;
  right: 2px!important;
}

.dpbanner,
.submenu li,
.submenu li a,
.tree li,
.tree ul {
  position: relative;
}

#chr .cp:not(.showmatchnames):not(.cp-open) strong.trait.cutoff-right:not(.popped):hover span {
  position: relative;
  left: -120px;
  white-space: normal;
  width: 200px;
}

.toolsfooter li a,
.tree ul,
span.feedback {
  white-space: nowrap;
}

#chr .cp:not(.showmatchnames):not(.cp-open) strong.trait.cutoff-right:not(.popped):hover:after {
  left: -114px;
}

.cp-open strong.trait.cutoff-right:not(.popped)>span {
  left: -160px!important;
}

#chr .cp-open strong.trait.cutoff-right:not(.popped):after {
  left: -154px;
}

strong.trait.cutoff.cutoff-right {
  right: 200px!important;
}

#profilemeta img {
  margin: 0 auto;
  max-width: 700px;
  height: auto;
}

a.ext:before,
ul.plain a[href*="//"]:not([href*="dnapainter.com"]):before {
  padding-right: .5rem;
  font-family: FontAwesome;
  content: "\f08e";
  font-size: 1.4rem;
}

.content ol>li::before,
.page-home .dpbanner #page-title {
  font-family: Novecentosanswide,"Lucida Grande",Century,Garamond,serif;
}

ul.plain {
  padding-left: 0;
}

dd ul.plain {
  padding-left: 1.8rem;
  padding-top: .5rem;
}

.content ol {
  margin: 3rem 0 0;
  padding: 0;
  list-style-type: none;
}

.content ol>li {
  counter-increment: step-counter;
  margin-bottom: 10px;
}

.content-header-n {
  padding-left: 10px;
  padding-right: 10px;
}

.content ol>li::before {
  content: counter(step-counter);
  margin-right: 1rem;
  font-weight: 700;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: inline-block;
  line-height: 22px;
  font-size: 16px;
}

.alert h4 {
  font-size: 1.5rem;
}

.content ol>li ul {
  padding-left: 6rem;
}

.content ol>li ul:not(.plain) li {
  padding-bottom: 1rem;
}

.content ol li h3 {
  display: inline;
}

.content ol li p {
  padding: .5rem 0 0 3.5rem;
}

.btn-plain {
  border: 0;
  background: 0 0;
  font-weight: 400;
  color: #446c81;
  font-size: 1.4rem;
}

.answer .btn-plain {
  font-weight: 700;
  background: 0 0;
  color: #304d5b;
  padding: 0 0 10px;
}

.answer a {
  border-bottom: 1px #ccc dashed;
}

.row.insetpanel {
  padding: 25px 15px 15px 0;
  margin-bottom: 15px;
  background: linear-gradient(to right,#fff,#f7ebe3,#e2dedb,#fff);
}

.insetpanel p {
  font-style: italic;
}

.dpbanner {
  background: #efefef;
  margin: 2rem 0 2rem -.75%;
  transform: rotate(0);
  width: 101%;
}

.page-home .content-wrapper,
body.page-home .main-header .navbar {
  background: 0 0;
}

.page-about .dpbanner,
.page-glossary .dpbanner {
  transform: rotate(-.25deg);
}

.page-home .dpbanner {
  margin-left: 0;
}

.page-home .dpbanner #page-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin: 10px 10px 10px 6px;
  letter-spacing: 1px;
  font-size: 2rem;
  text-shadow: none;
}

.submenu li.active ul li.active::marker,
.submenu li.active ul li::marker,
.submenu>li.active.on::marker {
  font-family: 'Glyphicons Halflings';
  font-size: 1.3rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

#dnamount {
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

#card-errors {
  margin-top: 12px;
  color: #332c68;
  font-weight: 700;
}

.submenu {
  margin: 0 0 20px;
  padding: 0;
  clear: both;
}

.submenu li a {
  display: block;
  clear: both;
  color: #332c69;
  font-weight: 700;
}

.submenu li a:hover {
  color: #456d81;
}

.submenu li {
  float: left;
  clear: left;
  padding: 0;
  margin: 0 0 10px;
}

.submenu li ul {
  display: none;
}

.submenu li.active ul {
  display: block;
  padding: 5px 0 0 15px;
}

body.page-home #page-description,
body.page-home .breadcrumb {
  display: none;
}

.submenu li.active ul li {
  margin-bottom: 5px;
  padding-left: 5px;
  list-style-type: disc;
}

.submenu li.active ul li::marker {
  content: "\2212";
  color: #ccc;
  font-weight: 400;
}

.submenu>li.active.on::marker {
  content: "\e092 \2009";
  color: #332c69;
  font-weight: 400;
}

.submenu>li.active>a {
  color: #000;
}

.submenu li.active ul li.active::marker {
  content: "\e092";
  color: #332c69;
  font-weight: 400;
}

.submenu li.active ul li.active:hover::marker {
  color: #456d81;
}

.container-wide #maincontent {
  padding-bottom: 50px;
}

.navbar-nav>li>a {
  margin-right: 1px;
  padding: 15px 12px;
}

#overlap-info li:hover {
  cursor: pointer;
  color: #342E68;
}

#chr.searching strong:not(.hilite)::not(.popped):hover,
.toolsfooter li a.active:hover,
.tree li a:hover {
  cursor: default;
}

.content-header>.breadcrumb {
  z-index: 2;
}

#compareform label.pull-left {
  padding-top: 7px;
}

.social {
  font-size: 1.75rem;
  display: inline-block;
  padding-left: 10px;
}

.social a {
  padding-right: 5px;
}

.tree-nbr>p {
  padding-top: 1rem;
}

.tree {
  padding-bottom: 3rem;
}

.tree ul {
  padding: 1em 0 0;
  margin: 0 auto;
}

.tree ul::after {
  content: '';
  display: table;
  clear: both;
}

.tree li {
  display: inline-block;
  vertical-align: top;
  list-style-type: none;
  padding: 1em .5em 0;
}

.button-group span,
.hethnicity span,
.hunknown span {
  vertical-align: middle;
}

.tree li::after,
.tree li::before,
.tree ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  height: 1em;
}

.tree li::after,
.tree li::before {
  right: 50%;
  border-top: 1px solid #ccc;
  width: 50%;
}

.tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #ccc;
}

.tree li:only-child::after,
.tree li:only-child::before {
  display: none;
}

.tree li:only-child {
  padding-top: 0;
}

.tree li:first-child::before,
.tree li:last-child::after {
  border: 0;
}

.tree li:last-child::before {
  border-right: 1px solid #ccc;
  border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
  border-radius: 5px 0 0;
}

.tree ul ul::before {
  left: 50%;
  border-left: 1px solid #ccc;
  width: 0;
}

.tree li a {
  font-size: 16px;
  padding: .5em .75em;
  border: 1px solid #ff4f47;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  position: relative;
  top: 1px;
}

.home-questions .row {
  padding-top: 10px;
}

.page-faq .answer,
.page-mailing-faq .answer,
.page-trees-faq .answer,
.page-wato-faq .answer {
  background: #f3f3f3;
  padding: 10px 30px 4px 14px;
  margin: 10px 0;
  position: relative;
}

.page-help .emphasis {
  background: #f3f3f3;
  padding: 20px 40px;
}

.tree li a:hover,
.tree li a:hover+ul li a {
  color: #fff;
  border: 1px solid #e9453f;
}

.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul ul::before,
.tree li a:hover+ul::before {
  border-color: #e9453f;
}

.tree li a.split span {
  display: block;
  width: 50%;
  float: left;
  color: #fff;
  box-sizing: border-box;
  padding: 4px 20px;
}

.tree li a.split span:first-of-type {
  border-right: 1px solid #fff;
}

.tree li a.split span:last-of-type {
  float: right;
  border-left: 1px solid #fff;
}

.tree li a.split strong {
  display: block;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 400;
  clear: both;
}

.tree li a.fbi {
  animation: pulsate 2s;
  background: #ff4f47;
}

#match-flash,
#merge-flash {
  margin: 10px 0 10px 36px;
  width: auto;
  float: left;
  padding: 6px 10px;
}

.floater .flash {
  margin: 10px!important;
}

#bbottom,
#btop {
  position: fixed;
  width: 100%;
  z-index: 2003;
}

#btop {
  height: 100px;
  top: 0;
}

#bbottom {
  height: 100%;
  overflow: hidden;
}

.groupbucketsholder,
.newgroupformholder {
  position: fixed;
  width: 100%;
  top: 50px;
  left: 0;
  text-align: center;
  z-index: 2002;
  display: none;
}

.groupbuckets,
.newgroupform {
  position: relative;
  margin: 0 auto;
}

.toolsfooter li a {
  margin: 0 5px;
  font-size: 1.4rem;
  padding: 3px 10px;
  border-radius: 10px;
  border: 1px solid #2a3b4e;
  background: #fff;
  color: #2a3b4e;
}

.page-indtool .toolsfooter li a {
  font-size: 1.8rem;
}

.toolsfooter li a span {
  color: #ff4f47;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.toolsfooter li a:hover span {
  color: #fff;
}

.toolsfooter li {
  display: inline-block;
  margin-bottom: 10px;
}

ul.toolsfooter {
  padding: 0;
  max-width: 1000px;
  margin: 0 auto 30px;
}

ul.toolsfooter.singlelink {
  margin: 10px auto 0;
}

ul.toolsfooter.singlelink li a {
  font-size: 18px;
}

.toolsfooter.singlelink li a span {
  font-size: 16px;
}

.noneyet {
  color: #2a3c4e;
  font-size: 1.5rem;
  background: #e3edf4;
  padding: 10px;
}

.noneyet a {
  border-bottom: 1px dashed #608295;
}

.tab-pane li a:hover,
.toolsfooter li a.active,
.toolsfooter li a:hover {
  background: #50748c;
  color: #fff;
}

#groupdetail .groupbucketsholder h3 {
  margin: 0 auto;
  max-width: 80%;
  background: #f9f9f9;
}

.newgroupform input[type=text] {
  display: block;
  width: 100%;
}

.newgroupform {
  max-width: 370px;
  text-align: left;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 20px;
  float: none;
}

.groupbuckets {
  height: auto;
  max-height: 300px;
  overflow: scroll;
  z-index: 2000;
  padding: 15px;
  max-width: 80%;
  min-height: 100px;
  background: #f9f9f9;
}

.groupbuckets div {
  padding-top: 5px;
  font-size: 1.4rem;
}

.groupbuckets div strong {
  display: block;
  height: 20px;
  overflow: hidden;
}

#chrtog.exp~.chrmatchlabel {
  display: block;
}

.groupbuckets li.ui-droppable-hover div {
  background: #d8e4ea;
}

.groupbuckets span {
  display: block;
  height: 30px;
  background: #fff;
  border: 1px dashed #456d81;
  color: #456d81;
  margin: 4px 8px 8px;
}

.filterblock small {
  padding-top: 10px;
  display: block;
  max-width: 700px;
  margin: 0 auto 5px;
}

.ui-draggable-dragging {
  z-index: 99999!important;
}

.groupbuckets li {
  background: #f9f9f9;
  padding: 5px;
  width: 25%;
  float: left;
  height: 84px;
  text-align: center;
  color: #5a7d8e;
}

.cpanel button.active,
.tb-btn:active {
  background: #e6f0f7;
}

.ui-draggable.ui-draggable-dragging {
  border-left: 4px solid #11abf9;
  box-shadow: 0 3px 4px rgba(116,116,116,.3);
}

.ui-sortable-helper {
  border-right: 4px solid #11abf9;
}

.signy {
  padding: 0 15px 20px;
}

.child1 {
  width: 80%;
}

.child2 {
  width: 77.824%;
}

.child3 {
  width: 51.2%;
}

.button-group {
  float: right;
}

.dpform .button-group .btn {
  float: none;
}

.button-group span {
  display: inline-block;
  padding: 5px;
  margin-top: 10px;
}

#chrfilter em {
  font-style: normal;
}

.payments img {
  margin-top: 45px;
}

.eternity {
  width: 100%;
  padding: 150px 0 0;
  overflow: hidden;
  position: absolute;
  top: -41px;
  left: 0;
}

.eternity:after {
  content: "";
  display: block;
  position: absolute;
  left: -1400px;
  top: -236px;
  width: 0;
  z-index: -1;
  border-top: 300px solid transparent;
  border-bottom: 300px solid transparent;
  margin-top: 0;
}

.panel-body.pb-solo {
  margin-top: 5px;
}

#searchpanel,
#settingspanel,
#traitspanel {
  background: #e6f0f7;
  padding: 12px 40px 16px 16px;
  position: relative;
  display: none;
  height: auto;
  z-index: 1100;
  max-width: 760px;
}

#chr.searching strong:not(.hilite):not(.popped) {
  opacity: .5!important;
  z-index: 800!important;
}

#open-traits {
  font-weight: 700;
  position: relative;
  height: 47px;
  padding-top: 13px;
  font-size: 1.625rem;
}

#open-traits span {
  position: relative;
  top: -5px;
}

strong.firsthilite:not(.popped) .swr {
  opacity: 1!important;
}

.top-pad {
  padding-top: 20px;
}

#hiddengrouptrig {
  font-weight: 700;
}

.hethnicity button,
.hunknown button {
  font-weight: 700;
  color: #231557;
  background: #fff;
  border: none;
  font-size: 1.4rem;
  padding: 5px 0 0;
  line-height: 1.75rem;
}

.floater h3 {
  text-transform: lowercase;
  color: #6b8b9b;
}

.floater .panel-body h3 {
  margin-top: 0;
  font-size: 1.8rem;
}

.floater p.intro {
  font-size: 1.8rem;
}

@keyframes growmore {
  0%, 75% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.popover[class*=tour-] {
  z-index: 2202;
}

.question {
  clear: both;
}

.home-quotes dt {
  font-style: italic;
  font-weight: 600;
}

.home-quotes.home-questions {
  font-size: 16px;
}

.home-questions section.content {
  margin-top: 0;
}

.home-quotes dl {
  margin-bottom: 0;
}

.page-home .home-questions .answer li {
  max-width: 750px;
  padding: 6px 0;
}

.home-questions {
  background: #e3edf3;
  background: linear-gradient(to bottom,#e3edf3,#fff);
  font-size: 18px;
  border-radius: 3px;
  margin: 0;
}

.home-questions dt {
  padding-bottom: 4px;
}

.home-questions .col-sm-12 {
  padding: 15px;
}

.page-home .ctas .btn {
  font-size: 2rem;
}

#alerts-page>div:first-child {
  margin-top: 3.5rem;
}

.auth-form #password-guidelines-trigger {
  position: relative;
  float: left;
}

#lowerthresholdimport,
#lowerthresmatch,
#thresholdimport,
#upperthresholdimport,
.thres-input {
  width: 70px;
}

.btn-lg.btn-secondary {
  background: #fff;
  color: #456d81;
  border: 1px solid #456d81;
}

.btn-lg.btn-secondary:hover {
  color: #fff;
  background: #456d81;
}

.toolpromo p {
  font-size: 20px;
}

.toolpromo img {
  border: 1px solid #ccc;
}

.toolpromo img:hover {
  opacity: .8;
}

.page-headlines .pull-left {
  font-size: 1.875rem;
  padding: 10px 0 0 15px;
}

.single-profile #maincontent {
  margin-top: 0;
}

.single-tree #maincontent {
  margin-top: 0;
  background: linear-gradient(to right,#ececec,#fff);
}

.narrower,
form.dpform.narrower {
  max-width: 750px;
}

body.readonly .add-segments,
body.readonly .compare,
body.readonly .del-matchdetail,
body.readonly .edit,
body.readonly .edit-matchdetail,
body.readonly .editgroup,
body.readonly .keytitle small,
body.readonly .mergegroup-choose,
body.readonly .open-ethnicity,
body.readonly .open-share,
body.readonly .openmem,
body.readonly .save-matchdetail,
body.readonly div#alerts-page {
  display: none!important;
}

#groupCertaintySlider:not(.active) .tooltip,
#matchCertaintySlider:not(.active) .tooltip,
.readonly #find-data-reminder,
.readonly .indmatch .grippy {
  display: none;
}

#find-data-reminder {
  text-align: center;
  display: none;
}

.readonly #chr-groupdetail-key li a {
  padding-left: 0;
}

body:after {
  background: #ff4f47;
  color: #fff;
}

a {
  color: #456d81;
}

.panel-body a,
a:hover {
  color: #332c69;
}

.panel-body a {
  border-bottom: 1px dashed #514a8c;
}

.panel-body a:hover {
  color: #456d81;
}

.panel-body a.btn:hover {
  color: #fff;
}

.navbar-toggle {
  color: #456d81;
  font-size: 1.75rem;
  line-height: 1.25;
}

.content-wrapper {
  background: #fff;
}

.main-header .navbar {
  background: linear-gradient(to right,#e0e0e0,#fff);
  color: #fff;
}

.login-logo a,
.main-header .navbar-brand {
  color: #332c69;
}

.exmpls button {
  color: #332c69;
  border: none;
  border-bottom: 1px dashed #514a8c;
  background: 0 0;
  padding: 0;
  font-size: 15px;
}

.login-logo a:hover,
.main-header .navbar-brand:hover {
  color: #24213c;
}

.page-tools .intro {
  margin-bottom: 20px;
}

.login-logo,
.panel-body .btn-secondary.collapser,
.register-logo {
  margin-bottom: 10px;
}

section.content {
  margin-top: 1.2rem;
  position: relative;
}

.alert .btn-secondary,
.panel-body .btn-secondary {
  color: #2A135F;
  background: 0 0;
}

#keyarea #newmatchkey {
  box-shadow: -10px 10px 0 0 #456d81;
  border-color: #456d81;
}

#keyarea #newmatchkey:before {
  border-color: transparent transparent #456d81;
}

#keyarea #newmatchkey:after {
  border-color: #456d81 transparent transparent;
}

.tree li a,
.tree li::after,
.tree li::before,
.tree li:last-child::before,
.tree ul ul::after,
.tree ul ul::before {
  border-color: #332c69;
}

@keyframes colorchange {
  0%, 50% {
    color: #332c69;
  }

  25% {
    color: #FF1A5D;
  }

  75% {
    color: #ff4f47;
  }

  100% {
    color: #456d81;
  }
}

button.btn-secondary.collapser:hover {
  color: #aabcc5;
}

.main-header .navbar-brand:hover {
  animation: none;
}

.page-glossary dd button {
  color: #456d81;
}

.tree li a {
  background: #332c69;
  color: #fff;
}

.tree li a:hover,
.tree li a:hover+ul li a {
  border-color: #ff4f47;
  background: #ff4f47;
}

.tree ul li a.split:hover {
  background: #332c69;
  border-color: #332c69;
}

.login-page,
.register-page,
body.page-home {
  background: #f5f5f5;
  background: linear-gradient(to right,#f5f5f5,#e6f4fd);
}

.navbar-custom-menu>.navbar-nav>li {
  color: #2c4552;
}

.dpbanner h2 {
  margin: 10px;
}

.btn {
  background: #456d81;
  color: #fff;
}

.btn:hover {
  background: #332c69;
}

body.page-home p {
  color: #333;
}

#page-title {
  color: #332c69;
}

#chromodetail h3,
.popover-title,
.row h3,
h2,
h2 a,
h3 {
  color: #2a3c4e;
}

#stats {
  background: #ff4f47;
  color: #fff;
}

.cp strong>span {
  background: rgba(0,0,10,.85);
  color: #fff;
}

#keyarea ul {
  box-shadow: -10px 10px 0 0 #231557;
  border-color: #231557;
}

#keyarea ul:before {
  border-color: transparent transparent #231557;
}

#keyarea ul:after {
  border-color: #231557 transparent transparent;
}

.navbar-nav a {
  color: #2c4552;
}

.nav>li>a:active,
.nav>li>a:focus,
.nav>li>a:hover {
  background: 0 0!important;
}

.btn-default.focus,
.btn-default:focus {
  background: #332c69;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default {
  color: #fff;
}

.navbar-nav>.user-menu>.dropdown-menu>li.user-header>p {
  color: #27145b;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default:hover {
  color: #332c69;
}

.alert-success,
.bg-green,
.callout.callout-success,
.label-success,
.modal-success .modal-body {
  background: #332c69!important;
  border: 0;
}

.box.box-primary {
  border-top-color: #251459;
}

#keyarea ul li a {
  color: #231557;
}

#keyarea ul li a:hover {
  color: #456d81;
}

.popup,
strong.popped {
  background: #231557!important;
  color: #fff!important;
  border-color: #231557!important;
}

.popup a:hover {
  color: #ccc!important;
}

strong.fixed .popup,
strong.fixed.popped {
  background: #4b4a50!important;
}

.flash {
  color: #fff;
  background-image: linear-gradient(-225deg,#332c69 27%,#aabcc5 100%);
}

.thischr {
  background: #fff;
  color: #000;
}

.slider-handle,
.slider-selection {
  background: #332c69;
}

#groupCertaintySlider .slider-handle,
#groupCertaintySlider .slider-selection,
#matchCertaintySlider .slider-handle,
#matchCertaintySlider .slider-selection {
  background: #ccc;
}

#groupCertaintySlider.active .slider-handle,
#groupCertaintySlider.active .slider-selection,
#matchCertaintySlider.active .slider-handle,
#matchCertaintySlider.active .slider-selection {
  background: #332c69;
}

.page-glossary dd button .glyphicon {
  color: #456d81;
}

.panel-body {
  background: #d8e4ea;
  color: #0d0d0d;
}

.panel-body-lighter {
  background: #ecf3f7;
}

.panel-body.plain-body {
  background: 0 0;
}

.alert .btn,
.panel-body .btn {
  background: #2A135F;
  color: #fff;
}

.panel-body .btn:hover {
  background: #456d81;
}

.panel-body .btn-secondary:hover {
  color: #efefef;
  background: #2A135F;
}

.panel-body .btn-secondary.collapser:hover {
  background: 0 0;
  color: #333;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: #efefef;
}

.btn.focus,
.btn:focus {
  outline: auto;
  border-radius: 5px;
}

.popover-navigation button.btn.btn-sm.btn-default:focus {
  border: 0!important;
  outline: 0;
}

.btn-secondary:focus {
  color: #333;
}

.btn-secondary:focus:hover {
  color: #efefef;
}

.confirm-delete .btn-secondary:focus {
  color: #efefef;
  background: #332c69;
}

.cpanel .btn-secondary:focus:hover {
  color: #332c68;
}

.content ol li::before {
  background-color: #456d81;
  color: #fff;
}

#dim-list .btn-plain {
  font-size: 1.6rem;
}

@media (min-width:1024px) {
  .navbar-nav {
    margin: 0 0 0 36px;
  }

  .signy .pull-left {
    font-size: 2rem;
  }

  .fr-text a {
    font-size: 1.6rem;
  }
}

@media only screen and (min-device-width :768px) and (max-device-width :1024px) {
  .login-logo a,
  .navbar-header a {
    font-size: 3vw;
  }

  .cancel-filter {
    left: -35px;
  }
}

@media only screen and (min-device-width :768px) and (max-device-width :1024px) and (orientation:landscape) {
  .login-logo a,
  .navbar-header a {
    font-size: 2.25vw;
  }
}

@media only screen and (min-device-width :768px) and (max-device-width :1024px) and (orientation:portrait) {
  .login-logo a,
  .navbar-header a {
    font-size: 2.25vw;
  }
}

@media all and (max-width:840px) {
  .tip-area .panel-body {
    max-width: 100%;
  }

  #chromodetail,
  .floater,
  form.dpform {
    width: 90%;
  }
}

@media all and (min-width:767px) {
  .navbar-nav {
    margin-left: 24px;
  }

  #keyarea {
    bottom: 1.5rem;
  }

  .feature-row div.homefeat {
    width: 54%;
  }

  span#profileName {
    max-width: 30%;
  }
}

@media all and (min-width:767px) and (max-width:1200px) {
  .btn-lg {
    font-size: 16px;
  }

  .hbanner h2 {
    max-width: 60%;
  }
}

@media all and (max-width:1200px) {
  .home-new .search-site-area {
    padding-bottom: 10px;
  }

  #datareport {
    width: 95%;
  }

  #datareport td,
  #datareport th {
    font-size: 1.2rem;
    white-space: normal;
  }

  #chr-groupdetail-key li {
    width: 24%;
    margin-right: 1%;
  }

  .home-ill i {
    display: none;
  }

  .signy {
    padding: 15px;
  }

  .groupbuckets li {
    width: 33.3%;
  }

  #regbutton {
    font-size: 32px;
  }

  .gshowmblines .chrdetailchromosome .mbscale span:nth-child(even),
  .gshowmblines .cp-open .mbscale span:nth-child(even) {
    text-indent: -9999rem;
  }
}

@media all and (min-width:0px) and (max-width:1024px) {
  #import ul li p {
    width: 50%;
  }

  .home-new #main-strap {
    font-size: 2.5rem;
    background-size: 300px 104px;
    padding: 0 300px 40px 0;
  }

  .login-logo a,
  .navbar-header a {
    font-size: 3.2rem;
  }

  .tree li a {
    padding: .25em .75em;
    font-size: 18px;
  }

  .page-home .ctas .btn {
    font-size: 1.7rem;
  }

  #datareport h2 {
    padding-top: 10px;
  }
}

@media all and (min-width:600px) {
  .page-matchdata .row img {
    max-width: 600px;
    height: auto;
  }

  .popover-content {
    font-size: 1.6rem;
  }

  .popover .btn-sm {
    font-size: 1.4rem;
  }
}

@media all and (min-width:0px) and (max-width:991px) {
  #regbutton {
    font-size: 24px;
  }

  .pnote {
    font-size: 13px;
  }

  .hcard:before {
    position: static;
    padding: 5px;
  }

  .hcard {
    padding: 15px;
  }

  #chr-groupdetail-key li {
    width: 32.33%;
    margin-right: 1%;
  }

  #import ul li p {
    width: 40%;
  }

  .content-header>.breadcrumb {
    background: 0 0;
    float: right;
  }

  ol.breadcrumb {
    display: none;
  }

  .navbar-collapse.pull-left+.navbar-custom-menu {
    top: 16px;
  }

  .navbar-collapse {
    box-shadow: none;
    -webkit-box-shadow: none;
  }

  .navbar-nav>li>a {
    font-size: 1.5rem;
    padding: 15px 8px;
  }

  .page-home .ctas .btn {
    font-size: 1.6rem;
  }

  .main-header .navbar-custom-menu a.btn,
  .main-header .navbar-right a.btn {
    background: #456d81;
  }

  .navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default:hover {
    background: #332c69;
    color: #fff;
  }
}

@media all and (min-width:0px) and (max-height:650px) {
  .cp {
    margin-bottom: 8px;
  }

  form.dpform {
    padding-bottom: 2rem;
    width: 100%;
    height: 100%;
  }

  form.dpform .inner {
    width: 100%;
  }

  #keyarea {
    bottom: 1.5rem;
  }

  #chrfilter em {
    display: none;
  }

  .main-header .navbar {
    padding: 10px;
  }

  .login-logo a,
  .navbar-header a {
    font-size: 3rem;
  }

  body:after {
    height: 15px;
    left: -25px;
    font-size: 11px;
    line-height: 15px;
  }
}

@media all and (min-width:0px) and (max-width:767px) {
  .nav>li:hover:before,
  div#keyarea:before {
    content: none;
  }

  div#recent-blog-posts,
  span#stats {
    text-align: center;
  }

  .page-tools .panel-body p,
  .page-tools p.intro {
    font-size: 1.4rem;
  }

  div#recent-blog-posts img {
    margin: 15px auto 5px;
  }

  #recent-blog-posts a.btitle {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

  #cmDisplayReminder {
    display: none!important;
  }

  .gshowmblines .chrdetailchromosome .mbscale,
  .gshowmblines .cp-open .mbscale {
    font-size: 9px;
  }

  .gshowmblines .chrdetailchromosome .mbscale span,
  .gshowmblines .cp-open .mbscale span {
    text-indent: -9999rem;
  }

  .gshowmblines .chrdetailchromosome .mbscale span:nth-child(even),
  .gshowmblines .cp-open .mbscale span:nth-child(even) {
    text-indent: 0;
  }

  a.home-vid~.btn {
    display: block;
    float: none!important;
    margin-bottom: 40px;
  }

  .hcard {
    padding: 0 0 10px 115px;
  }

  .hcard a {
    font-size: 1.4rem;
  }

  body:not(.page-home) .row h2:first-child {
    margin-top: 2rem;
  }

  #maincontent .content {
    padding: 0;
  }

  body:not(.page-home) .hbanner .row h2:first-child {
    margin-top: 10px!important;
  }

  .home-cards {
    display: block;
    margin-bottom: 5px;
  }

  body:not(.page-home) .row .home-cards h2:first-child {
    margin-top: 1rem;
  }

  .hcard:before {
    width: 80px;
    height: 80px;
    position: absolute;
    padding: 0;
  }

  .panel-body.f-info-box {
    left: 0;
  }

  .img-float-right {
    max-width: 200px;
  }

  .tab-pane li a,
  .toolsfooter li a {
    font-size: 1.2rem;
  }

  .row.feature-row h3 {
    font-size: 1.5rem;
  }

  .home-new #main-strap {
    font-size: 2rem;
    min-height: 105px;
  }

  .hhl-img img {
    max-width: 86%;
    max-width: 240px;
  }

  .litabs>li {
    max-width: 150px;
  }

  .feature-row.litabs h3 {
    font-size: 13px;
  }

  .hhl-img .btn {
    max-width: 240px;
    margin: 0 auto;
  }

  #matchdetail .copy-match-segments,
  .hhl-img a {
    margin-right: 0;
  }

  .feature-row li.homefeat {
    max-width: 300px;
  }

  .home-new #maincontent {
    min-height: 0;
  }

  .feature-row li h3 {
    font-size: 12px;
  }

  img.smallerimg {
    float: none;
    padding-left: 0;
  }

  .search-site-area {
    padding-bottom: 20px;
  }

  .home-new .search-site-area {
    padding: 8px 16px 16px;
  }

  .edit-matchdetail {
    display: block!important;
    float: none!important;
  }

  .promo-offer li {
    font-size: 1.6rem;
  }

  .hidemobile {
    display: none;
  }

  #matchdetailform .panel-body {
    padding-bottom: 76px;
  }

  #profilemeta img {
    max-width: 100%;
  }

  #import ul li p {
    width: 100%;
    float: none;
  }

  .signy .btn,
  .signy .pull-left {
    float: none!important;
  }

  .groupbuckets li {
    width: 50%;
  }

  #groupdetail .groupbucketsholder,
  .page-headlines .home-ill table {
    width: 100%;
  }

  #regbutton,
  .signy .feature-link,
  .signy .search-site-area {
    clear: both;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    position: static;
  }

  .page-headlines .home-ill img {
    margin-top: 1rem;
  }

  #datareport td,
  #datareport th {
    font-size: 1.1rem;
  }

  #chr-groupdetail-key li {
    margin-right: 1%;
  }

  .groupbuckets {
    max-width: 95%;
  }

  .dpform .col-sm-6 .panel-body {
    min-height: 100px;
  }

  .navbar-nav>li>a {
    font-size: 1.4rem;
  }

  .btn-block {
    margin-bottom: 1rem;
  }

  .panel-body:not(.newgroupform) {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 1.5rem auto 0;
  }

  #stats {
    margin-bottom: 1rem;
  }

  .submenu li.drop {
    margin-top: 0;
  }

  .login-logo a,
  .navbar-header a {
    padding: 1.5rem 0 0 2rem;
    margin-left: 10px!important;
  }

  .navbar-collapse {
    margin-left: -31px!important;
    margin-right: -31px!important;
    margin-top: 10px;
    padding: 0 30px;
  }

  #commonmatches ul li {
    width: 48%;
  }

  #chr .cp-open div.both strong.fixed {
    top: 0;
  }

  .subscribe-now {
    padding-top: 30px;
  }

  strong.cutoff.cutoff-right {
    right: auto!important;
  }

  .home-quotes dl {
    margin-top: 10px;
  }

  #chr h4 {
    margin: 4px 0 0 8px;
  }

  .cpanel {
    left: -1.6rem;
  }

  .tip-area .dpclose {
    right: -10px;
  }

  .tip-area {
    width: 90%;
    float: none;
    margin: 20px auto 0;
    padding: 0;
  }

  #chromodetail,
  #chromodetail #chrcontainer,
  #groupdetail .groupbucketsholder,
  .floater,
  .groupbuckets,
  .tree li a.split,
  form.dpform {
    width: 100%;
  }

  .tip-area i.fa {
    display: none;
  }

  .content .feature-tips {
    padding-right: 30px!important;
  }

  .seg-ill table td,
  .seg-ill table th {
    font-size: 11px;
  }

  .hbanner {
    background-position: 120% 0;
    background-image: none;
    height: auto;
    min-height: 0;
    margin: 0 0 10px;
  }

  .dpform .btn-secondary {
    clear: left;
  }

  .compare,
  span#stats {
    clear: both;
    float: none;
  }

  #groupdetail h3 {
    padding: 0 20px;
    line-height: 1.25;
  }

  .video-container {
    margin-bottom: 15px;
  }

  #keyarea ul li a {
    width: 183px;
  }

  .home-questions .row,
  .tree-nbr>p {
    padding-top: 0;
  }

  .tree li a.split span {
    white-space: normal;
    padding: 5px;
  }

  .social {
    padding-left: 0;
    float: right;
    padding-top: 5px;
  }

  #chr-groupdetail-key,
  .groupbuckets {
    padding: 0;
  }

  #chr-groupdetail-key li {
    display: inline-block;
    width: auto;
  }

  #confirm-delete-profile {
    width: 80%;
  }

  #datareport th,
  ; #datareport td {
    font-size: 1rem;
  }

  .boxgroup label {
    box-sizing: border-box;
    max-width: 50%;
    margin-right: 0;
    display: block;
    float: left;
  }

  span.feedback {
    padding-top: 10px;
    display: inline-block;
  }

  .form-toggled #modal,
  .form-toggled #modal-inner {
    overflow: auto;
    display: block;
  }

  .form-toggled #modal-inner {
    width: 100%;
    height: 100%;
  }

  .content-header>.breadcrumb,
  .page-home .content-header {
    display: none;
  }

  .confirm-delete {
    left: 24px;
    right: 24px;
  }

  .cp strong.popped {
    left: -3px!important;
  }

  body {
    font-size: 1.4rem;
  }

  .thischr {
    font-size: 11px;
  }

  #profileDesc {
    width: 90%;
    margin: 10px auto;
    box-sizing: border-box;
    float: none;
  }

  #page-title {
    margin: 15px 15px 15px 0;
    font-size: 1.5rem;
  }

  .clear-area {
    margin-top: 25px;
  }

  #keyarea ul li a {
    font-size: 1.2rem;
  }

  em.grippy {
    margin-top: -4px;
  }

  .page-headlines img {
    width: 80%;
  }

  form.dpform {
    padding-bottom: 2rem;
    width: 100%;
    height: 100%;
  }

  #chromodetail,
  form.dpform .inner {
    width: 100%;
  }

  .home-questions,
  .home-quotes,
  .home-quotes.home-questions,
  .page-headlines,
  .toolpromo p {
    font-size: 14px;
  }

  #alerts-page {
    margin-bottom: 2rem;
  }

  .compare,
  .content>h1 {
    margin: 0 auto;
    width: 90%;
  }

  .tree li a {
    font-size: 13px;
  }

  .compare {
    display: block;
  }

  .container-wide section.content {
    margin-top: 0;
  }

  h1 {
    font-size: 24px;
  }

  section.content {
    padding: 0;
  }

  .row h2 {
    font-size: 1.6rem;
  }

  .navbar-brand {
    padding-left: 25px;
  }

  .main-footer {
    font-size: 1.125rem;
  }

  .login-logo a,
  .navbar-header a {
    font-size: 3.5vmax;
  }

  .row h3 {
    font-size: 1.4rem;
  }

  .content ol li p {
    padding: .5rem 0 1rem 2.75rem;
  }

  .content ol li::before {
    width: 20px;
    height: 20px;
    line-height: 18px;
    margin-right: .75rem;
    font-size: 1.4rem;
  }

  .dpbanner {
    height: auto;
    background: 0 0;
    transform: rotate(-.5deg);
    margin: 0 0 2rem;
  }

  #minkey:not(.minimised) {
    right: 18px;
  }

  .page-home .dpbanner #page-title {
    text-align: center;
    margin: 15px 0;
    font-size: 1.4rem;
  }

  .page-home .dpbanner {
    margin-bottom: 1.5rem;
    margin-top: .5rem;
  }

  body:after {
    position: absolute;
  }

  span#stats {
    margin: 10px auto;
  }

  span#stats.activated {
    display: block!important;
  }

  #profileGender {
    padding-top: 0;
    font-size: 1.2rem;
    padding-left: 12px;
    line-height: 32px;
  }

  #chrkey,
  #newmatchkey {
    width: 250px;
    max-width: 250px;
  }

  #keyarea ul li span,
  .chr-detail-key li span {
    margin-right: 1rem;
  }

  .page-home .ctas .btn {
    font-size: 16px;
  }

  #keyarea {
    min-width: 10px;
    right: 1.75rem;
    z-index: 2002;
    bottom: 1.5rem;
  }

  #touch-device-message .dpclose {
    right: 7px;
    font-size: 1.3rem;
    line-height: 14px;
  }

  .mobile {
    display: block;
  }

  .popover {
    max-width: 90%;
  }

  a {
    word-wrap: break-word;
  }

  div.navbar-collapse {
    background: linear-gradient(to right,rgba(224,224,224,.9),#fdfdfc);
    background: rgba(243,245,246,.9);
  }
}

@media all and (min-width:0px) and (max-width:480px) {
  .hm,
  .home-new .search-site-area,
  .openmem {
    display: none;
  }

  .submenu>li.active.on::marker {
    content: none;
  }

  .navbar-custom-menu>.navbar-nav {
    float: left;
  }

  ul.nav.navbar-nav:not(.sec-nav) {
    float: right;
  }

  #chromodetail h2 {
    line-height: 1.5;
  }

  .hbanner h1 {
    margin-bottom: 0;
    padding-left: 0;
  }

  .cmslidecontainer {
    width: 100%;
    padding: 20px 0;
  }

  .cmslider {
    margin-top: 15px;
  }

  .gshowmblines .chrdetailchromosome .mbscale,
  .gshowmblines .cp-open .mbscale {
    font-size: 8px!important;
  }

  .cmslider::-webkit-slider-thumb {
    width: 30px;
    height: 25px;
  }

  .cmslider::-moz-range-thumb {
    width: 30px;
    height: 25px;
  }

  .gshowmblines .chrdetailchromosome#pd1 .mbscale span:nth-child(even),
  .gshowmblines .chrdetailchromosome#pd2 .mbscale span:nth-child(even) {
    text-indent: -9999em;
  }

  .gshowmblines .chrdetailchromosome#pd1 .mbscale span:nth-child(4n-2),
  .gshowmblines .chrdetailchromosome#pd2 .mbscale span:nth-child(4n-2) {
    text-indent: 0;
  }

  .htlink:after {
    width: 110px;
  }

  .wlks {
    top: 9px;
  }

  .f-info-box,
  .infop {
    word-break: break-word;
  }

  .f-info-box {
    font-size: 1.4rem;
  }

  #chr h4.expandedf {
    top: 4px;
    left: 4px;
  }

  #chr .cp-open>div.both:before {
    z-index: 2;
  }

  .welcome-panel-body {
    font-size: 1.5rem;
  }

  .container.table-container {
    padding: 0;
  }

  .feature-row.litabs h3,
  .row.feature-row div h3 {
    font-size: 9px;
  }

  .feature-row.litabs h3 {
    padding: 0 10px;
    line-height: 1.5;
    min-height: 30px;
  }

  .litabs>li {
    max-width: 110px;
  }

  .hfilterblock {
    margin-bottom: 5px;
  }

  .home-new #main-strap {
    font-size: 1.6rem;
    background-size: 200px 70px;
    padding: 0 0 50px;
  }

  .fr-text a {
    font-size: 1.3rem;
  }

  #psw {
    height: auto;
    float: none;
    display: block;
    margin: 10px auto;
    width: 90%;
  }

  img.smallerimg {
    max-width: 100%;
  }

  .table-container td,
  .table-container th,
  .tablesorter td,
  .tablesorter th {
    font-size: 1rem;
  }

  .tableholder td {
    padding: 8px 3px;
  }

  .tableholder th {
    padding: 10px 6px 10px 3px;
  }

  #watotrees td.right,
  #watotrees th.right,
  a.btn {
    white-space: normal;
  }

  #watotrees td,
  #watotrees th {
    padding: 10px 3px;
    font-size: 1.3rem;
  }
}

@media all and (min-width:0px) and (max-width:380px) {
  .gshowmblines .chrdetailchromosome .mbscale span,
  .gshowmblines .chrdetailchromosome .mbscale span:nth-child(even),
  .gshowmblines .cp-open .mbscale span,
  .gshowmblines .cp-open .mbscale span:nth-child(even) {
    text-indent: -9999rem;
  }

  .gshowmblines .chrdetailchromosome .mbscale span:nth-child(6n-2),
  .gshowmblines .cp-open .mbscale span:nth-child(6n-2) {
    text-indent: 0;
  }

  .feature-row div h3 {
    font-size: 8px;
  }

  #keyarea {
    right: auto;
    left: 5px;
  }

  .litabs>li {
    max-width: 92px;
  }

  .feature-row.litabs h3 {
    font-size: 7px;
  }

  .pnote {
    font-size: 11px;
  }

  .welcome-panel-body {
    font-size: 1.2rem;
  }

  a#home-overlay {
    display: none;
  }

  .btn-group-lg>.btn,
  .btn-lg {
    font-size: 14px;
  }

  p.intro {
    font-size: 16px;
  }

  .seg-ill table td,
  .seg-ill table th {
    font-size: 10px;
  }

  .panel-body textarea {
    min-width: 200px;
  }

  .page-headlines .home-ill table td {
    font-size: 8px;
  }

  #chromodetail h2,
  form.dpform h2 {
    font-size: 1.375rem;
  }

  .cp strong.popped {
    left: -45px!important;
  }

  .popup {
    font-size: 1.2rem;
  }

  .page-headlines {
    font-size: 16px;
  }

  .page-home .ctas .btn {
    font-size: 18px;
  }

  .tree li a {
    font-size: 11px;
  }

  .page-home .dpbanner #page-title {
    font-size: 1.125rem;
  }

  #page-title {
    font-size: 1.25rem;
    margin: 16px 5px;
  }
}

.floating-checkboxes {
  margin-left: 20px;
}

.floating-checkboxes label {
  display: inline-block;
  color: #575757;
  padding-right: 15px;
}

@media print {
  .wrapper,
  body,
  div,
  h1,
  h2,
  h3,
  ol,
  ul {
    width: auto;
    border: 0;
    padding: 0;
    float: none;
    position: static;
    overflow: visible!important;
  }

  .cpanel {
    display: none!important;
  }

@page {
    margin: 1cm;
}

  body {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  a[href]:after {
    display: none;
    visibility: hidden;
  }

  #chrfilter,
  #compare,
  #groupdetail .filtergroupblock,
  #keyarea .btn-secondary,
  #psw,
  .btn,
  .content-header,
  .download-csv,
  .dpclose,
  .dpprint,
  .editgroup,
  .form-toggled #keyarea,
  .form-toggled #profileDesc,
  .refresh-stats,
  .tip-area,
  a.download-dpbackup,
  body:after,
  header,
  i.next-link,
  i.prev-link {
    display: none!important;
  }

  #groupdetail .filtergroupblock,
  .filterblock {
    display: none!important;
    visibility: none!important;
  }

  #chr:not(.hidematchnames) .cp-open strong:not(.popped) span {
    margin-left: 0;
  }

  #chr-detail .cp>div.pat,
  #groupdetail .cp>div.pat {
    background: repeating-linear-gradient(315deg,#eef1f5,#eef1f5 5px,#eef1f5 5px,#eff5fd 10px)!important;
    border: 1px solid #ccc!important;
  }

  #chr-detail .cp>div.mat,
  #groupdetail .cp>div.mat {
    background: repeating-linear-gradient(315deg,#f9ecee,#f9ecee 5px,#f9ecee 5px,#f5f0f1 10px)!important;
    border: 1px solid #ccc!important;
  }

  #chr-detail .cp>div.both,
  #groupdetail .cp>div.both {
    border: 1px solid #ccc!important;
  }

  #stats {
    border: 1px solid #333;
  }

  body:after {
    content: '';
  }

  #chr h4,
  #chr-detail h4,
  .groupdetailcontainer h4 {
    float: none;
    border: 1px solid #231557;
    color: #231557;
    line-height: 1.7;
  }

  .chrdetailchromosome {
    clear: both;
  }

  body.form-toggled #chrcontainer,
  body.form-toggled h1 {
    display: none;
  }

  .center-label {
    display: none!important;
  }

  body.form-toggled #modal,
  body.form-toggled #modal-inner {
    position: static!important;
    overflow: visible!important;
  }

  body.form-toggled .floater {
    width: 100%;
    background: #fff;
    box-shadow: none;
    margin: 0;
    overflow: visible!important;
  }

  #chromodetail,
  .floater,
  form.dpform {
    position: static!important;
  }

  #stats {
    background: 0 0;
    color: #000;
    padding: 0;
    line-height: 3.25rem;
  }
}

.cp:not(.cp-open) .mna {
  display: none;
}

#chr:not(.hidematchnames) .cp-open div strong.match:not(.popped):after,
#chr:not(.hidematchnames) .cp-open strong:not(.popped) .mna,
.showmatchnames .cp strong:not(.popped) .mna,
.showmatchnames .cp strong:not(.popped):after {
  content: attr(data-match);
  font-style: normal!important;
  font-weight: 700!important;
  padding-top: 0!important;
  display: block;
  position: absolute;
  top: -15px;
  left: 100%;
  margin-left: 2px;
  font-size: 1.2rem;
  padding: 0 8px 1px;
  background: rgba(0,0,10,.6);
  color: #fff;
}

.showmatchcm #chr:not(.hidematchnames) .cp-open div strong.match:not(.popped):not([data-cm=""]):after,
.showmatchcm .chrdetailchromosome div strong.match:not(.popped):not([data-cm=""]):after {
  content: attr(data-match)" " attr(data-cm)"cM";
}

#chr:not(.hidematchnames) .cp-open strong:not(.popped) .mna,
.showmatchnames .cp strong:not(.popped) .mna {
  content: none;
}

.showmatchcm .cp strong:not(.popped) em.mna:not([data-cm=""]):after {
  content: " " attr(data-cm)"cM";
}

#maincontent.enablecf .cp strong.match:after,
.cp-open .mna {
  content: none!important;
}

.chrcontainer.showmatchnames .cp strong.highlight:not(.popped) .mna,
.chrcontainer.showmatchnames .cp strong.highlight:not(.popped):after {
  top: -1px;
}

.mna {
  display: none;
}

.chrcontainer.showmatchnames .mna {
  display: block;
}

#maincontent strong.popped .mna {
  display: none;
}
.compact-header .navbar {
  min-height: 30px;
  margin-bottom: 0;
}

.compact-header>nav {
  padding: 4px 0 3px;
}

.compact-header .navbar-header a.navbar-brand:hover {
  color: #f1e0bf;
}

.compact-header .navbar-custom-menu {
  float: right;
  padding-right: 10px;
}

header.compact-header {
  background: #2a3c4e;
  width: 100%;
}

a.navbar-brand span {
  color: #9bef8f;
  background-image: linear-gradient(45deg,#f3ec78,#ED8E97);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compact-header a.navbar-brand:hover span {
  background: 0 0;
  color: #f1e0bf;
  -webkit-background-clip: none;
  -webkit-text-fill-color: inherit;
}

.compact-header .navbar-header a.navbar-brand {
  color: #8acae8;
  font-size: 2.5rem;
  line-height: 30px;
  padding: 0 0 0 16px;
  height: auto;
}

.compact-header .navbar-nav>li>a {
  padding: 8px 12px;
  color: #efefef;
}

.enableHover .compact-header .nav>li.active:before,
.enableHover .compact-header .nav>li:hover:before {
  min-height: 36px;
}

@media all and (min-width:0px) and (max-width:767px) {
  .compact-header .navbar-header a.navbar-brand {
    padding-left: 4px;
  }

  .compact-header .navbar-toggle {
    padding: 6px 15px;
  }

  .compact-header div.navbar-collapse {
    background: #293c4e;
  }

  .compact-header .navbar-nav {
    margin: 8px 6px;
  }

  .compact-header .user-header {
    display: none;
  }

  .compact-header li.user-menu.open>a {
    padding: 9px 11px;
    margin-right: 2px;
    background: #fff;
  }

  .compact-header .navbar-custom-menu>.navbar-nav>li>.dropdown-menu {
    border-top: 0;
  }
}
.sp-container {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  z-index: 9999994;
  overflow: hidden;
}

.sp-container.sp-flat,
.sp-top {
  position: relative;
}

.sp-container,
.sp-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.sp-top {
  width: 100%;
  display: inline-block;
}

.sp-alpha-handle,
.sp-color,
.sp-dragger,
.sp-hue,
.sp-sat,
.sp-slider,
.sp-top-inner,
.sp-val {
  position: absolute;
}

.sp-top-inner {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-color {
  top: 0;
  left: 0;
  bottom: 0;
  right: 20%;
}

.sp-hue {
  top: 0;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 100%;
}

.sp-clear-enabled .sp-hue {
  top: 33px;
  height: 77.5%;
}

.sp-fill {
  padding-top: 80%;
}

.sp-sat,
.sp-val {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sp-alpha-enabled .sp-top {
  margin-bottom: 18px;
}

.sp-alpha-enabled .sp-alpha {
  display: block;
}

.sp-alpha-handle {
  top: -4px;
  bottom: -4px;
  width: 6px;
  left: 50%;
  cursor: pointer;
  border: 1px solid #000;
  background: #fff;
  opacity: .8;
}

.sp-alpha {
  display: none;
  bottom: -14px;
  right: 0;
  left: 0;
  height: 8px;
}

.sp-alpha-inner {
  border: 1px solid #333;
}

.sp-clear {
  display: none;
}

.sp-clear.sp-clear-display {
  background-position: center;
}

.sp-clear-enabled .sp-clear {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 28px;
}

.sp-alpha,
.sp-alpha-handle,
.sp-clear,
.sp-container,
.sp-container button,
.sp-container.sp-dragging .sp-input,
.sp-dragger,
.sp-preview,
.sp-replacer,
.sp-slider {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

.sp-container.sp-buttons-disabled .sp-button-container,
.sp-container.sp-input-disabled .sp-input-container,
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container,
.sp-initial-disabled .sp-initial,
.sp-palette-disabled .sp-palette-container,
.sp-palette-only .sp-picker-container {
  display: none;
}

.sp-sat {
  background-image: -webkit-gradient(linear,0 0,100% 0,from(#FFF),to(rgba(204,154,129,0)));
  background-image: -webkit-linear-gradient(left,#FFF,rgba(204,154,129,0));
  background-image: -moz-linear-gradient(left,#fff,rgba(204,154,129,0));
  background-image: -o-linear-gradient(left,#fff,rgba(204,154,129,0));
  background-image: -ms-linear-gradient(left,#fff,rgba(204,154,129,0));
  background-image: linear-gradient(to right,#fff,rgba(204,154,129,0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}

.sp-val {
  background-image: -webkit-gradient(linear,0 100%,0 0,from(#000),to(rgba(204,154,129,0)));
  background-image: -webkit-linear-gradient(bottom,#000,rgba(204,154,129,0));
  background-image: -moz-linear-gradient(bottom,#000,rgba(204,154,129,0));
  background-image: -o-linear-gradient(bottom,#000,rgba(204,154,129,0));
  background-image: -ms-linear-gradient(bottom,#000,rgba(204,154,129,0));
  background-image: linear-gradient(to top,#000,rgba(204,154,129,0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

.sp-hue {
  background: -moz-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);
  background: -ms-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);
  background: -o-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);
  background: -webkit-gradient(linear,left top,left bottom,from(red),color-stop(.17,#ff0),color-stop(.33,#0f0),color-stop(.5,#0ff),color-stop(.67,#00f),color-stop(.83,#f0f),to(red));
  background: -webkit-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);
  background: linear-gradient(to bottom,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);
}

.sp-1 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}

.sp-2 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}

.sp-3 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}

.sp-4 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}

.sp-5 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}

.sp-6 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

.sp-hidden {
  display: none!important;
}

.sp-cf:after,
.sp-cf:before {
  content: "";
  display: table;
}

.sp-cf:after {
  clear: both;
}

@media (max-device-width:480px) {
  .sp-color {
    right: 40%;
  }

  .sp-hue {
    left: 63%;
  }

  .sp-fill {
    padding-top: 60%;
  }
}

.sp-dragger {
  border-radius: 5px;
  height: 5px;
  width: 5px;
  border: 1px solid #fff;
  background: #000;
  cursor: pointer;
  top: 0;
  left: 0;
}

.sp-slider {
  top: 0;
  cursor: pointer;
  height: 3px;
  left: -1px;
  right: -1px;
  border: 1px solid #000;
  background: #fff;
  opacity: .8;
}

.sp-container {
  border-radius: 0;
  background-color: #ECECEC;
  border: 1px solid #f0c49B;
  padding: 0;
}

.sp-clear,
.sp-color,
.sp-container,
.sp-container button,
.sp-container input,
.sp-hue {
  font: 400 12px "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-top {
  margin-bottom: 3px;
}

.sp-clear,
.sp-color,
.sp-hue {
  border: 1px solid #666;
}

.sp-input-container {
  float: right;
  width: 100px;
  margin-bottom: 4px;
}

.sp-initial-disabled .sp-input-container,
.sp-input {
  width: 100%;
}

.sp-input {
  font-size: 12px!important;
  border: 1px inset;
  padding: 4px 5px;
  margin: 0;
  background: 0 0;
  border-radius: 3px;
  color: #222;
}

.sp-input:focus {
  border: 1px solid orange;
}

.sp-input.sp-validation-error {
  border: 1px solid red;
  background: #fdd;
}

.sp-palette-container,
.sp-picker-container {
  float: left;
  position: relative;
  padding: 10px 10px 300px;
  margin-bottom: -290px;
}

.sp-picker-container {
  width: 172px;
  border-left: solid 1px #fff;
}

.sp-palette-container {
  border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
  border: 0;
}

.sp-palette .sp-thumb-el {
  display: block;
  position: relative;
  float: left;
  cursor: pointer;
}

.sp-palette .sp-thumb-el.sp-thumb-active,
.sp-palette .sp-thumb-el:hover {
  border-color: orange;
}

.sp-thumb-el {
  position: relative;
}

.sp-initial {
  float: left;
  border: 1px solid #333;
}

.sp-initial span {
  width: 30px;
  height: 25px;
  border: none;
  display: block;
  float: left;
  margin: 0;
}

.sp-initial .sp-clear-display {
  background-position: center;
}

.sp-button-container,
.sp-palette-button-container {
  float: right;
}

.sp-replacer {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  display: inline-block;
  border: 1px solid #91765d;
  background: #eee;
  color: #333;
  vertical-align: middle;
}

.sp-replacer.sp-active,
.sp-replacer:hover {
  border-color: #F0C49B;
  color: #111;
}

.sp-replacer.sp-disabled {
  cursor: default;
  border-color: silver;
  color: silver;
}

.sp-dd {
  padding: 2px 0;
  height: 16px;
  line-height: 16px;
  float: left;
  font-size: 10px;
}

.sp-preview {
  width: 25px;
  height: 20px;
  border: 1px solid #222;
  margin-right: 5px;
  float: left;
  z-index: 0;
}

.sp-palette {
  max-width: 220px;
}

.sp-palette .sp-thumb-el {
  width: 16px;
  height: 16px;
  margin: 2px 1px;
  border: 1px solid #d0d0d0;
}

.sp-container {
  padding-bottom: 0;
}

.sp-container button {
  background-color: #eee;
  background-image: -webkit-linear-gradient(top,#eee,#ccc);
  background-image: -moz-linear-gradient(top,#eee,#ccc);
  background-image: -ms-linear-gradient(top,#eee,#ccc);
  background-image: -o-linear-gradient(top,#eee,#ccc);
  background-image: linear-gradient(to bottom,#eee,#ccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}

.sp-container button:hover {
  background-color: #ddd;
  background-image: -webkit-linear-gradient(top,#ddd,#bbb);
  background-image: -moz-linear-gradient(top,#ddd,#bbb);
  background-image: -ms-linear-gradient(top,#ddd,#bbb);
  background-image: -o-linear-gradient(top,#ddd,#bbb);
  background-image: linear-gradient(to bottom,#ddd,#bbb);
  border: 1px solid #bbb;
  border-bottom: 1px solid #999;
  cursor: pointer;
  text-shadow: 0 1px 0 #ddd;
}

.sp-container button:active {
  border: 1px solid #aaa;
  border-bottom: 1px solid #888;
  -webkit-box-shadow: inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;
  -moz-box-shadow: inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;
  -ms-box-shadow: inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;
  -o-box-shadow: inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;
  box-shadow: inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;
}

.sp-cancel {
  font-size: 11px;
  color: #d93f3f!important;
  margin: 0 5px 0 0;
  padding: 2px;
  vertical-align: middle;
  text-decoration: none;
}

.sp-cancel:hover {
  color: #d93f3f!important;
  text-decoration: underline;
}

.sp-palette span.sp-thumb-active,
.sp-palette span:hover {
  border-color: #000;
}

.sp-alpha,
.sp-preview,
.sp-thumb-el {
  position: relative;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==");
}

.sp-alpha-inner,
.sp-preview-inner,
.sp-thumb-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-palette .sp-thumb-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=");
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=");
}

.sp-clear-display {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==");
}
.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.slick-track {
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
@charset 'UTF-8';

.slick-dots,
.slick-next,
.slick-prev {
  position: absolute;
  display: block;
  padding: 0;
}

.slick-dots li button:before,
.slick-next:before,
.slick-prev:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-loading .slick-list {
  background: url("../local/css/ajax-loader.gif") center center no-repeat #fff;
}

.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  transform: translate(0,-50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  color: transparent;
  outline: 0;
  background: 0 0;
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: .25;
}

.slick-next:before,
.slick-prev:before {
  font-family: fontawesome;
  font-size: 14px;
  line-height: 1;
  opacity: .75;
  color: #466d81;
}

.slick-prev {
  left: 5px;
}

[dir=rtl] .slick-prev {
  right: 5px;
  left: auto;
}

.slick-prev:before,
[dir=rtl] .slick-prev:before {
  content: '\f053';
}

.slick-next {
  right: 5px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: 5px;
}

.slick-next:before,
[dir=rtl] .slick-next:before {
  content: '\f054';
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  width: 100%;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: 0;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #000;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #000;
}
.StripeElement {
  background-color: #fff;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5!important;
}
.tpd-content-relative,
.tpd-title-relative {
  width: 100%;
}

.tpd-content,
.tpd-title {
  font-size: 11px;
  line-height: 16px;
  color: #fff;
}

.tpd-backgrounds,
.tpd-stem {
  -webkit-transform-origin: 0 0;
  left: 0;
}

.tpd-background-box,
.tpd-close,
.tpd-content-wrapper,
.tpd-shift-stem,
.tpd-stem,
.tpd-stem-side,
.tpd-title-wrapper {
  overflow: hidden;
}

.tpd-tooltip {
  position: absolute;
  box-sizing: content-box;
}

.tpd-tooltip [class^=tpd-] {
  box-sizing: inherit;
}

.tpd-content,
.tpd-spinner-spin,
.tpd-title {
  box-sizing: border-box!important;
}

.tpd-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
}

.tpd-content,
.tpd-content-relative,
.tpd-content-relative-padder,
.tpd-content-spacer,
.tpd-title,
.tpd-title-relative,
.tpd-title-relative-padder,
.tpd-title-wrapper {
  position: relative;
  float: left;
}

.tpd-content {
  clear: both;
  padding: 10px;
}

.tpd-has-inner-close .tpd-content-relative .tpd-content {
  padding-right: 0!important;
}

.tpd-tooltip .tpd-content-no-padding {
  padding: 0!important;
}

.tpd-title-spacer {
  float: left;
}

.tpd-title {
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.tpd-background-box,
.tpd-background-shadow,
.tpd-backgrounds,
.tpd-close,
.tpd-frames,
.tpd-skin {
  position: absolute;
  top: 0;
}

.tpd-has-title-close .tpd-title {
  padding-right: 0!important;
}

.tpd-close {
  right: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: #fff;
}

.tpd-close-icon {
  float: left;
  font-family: Arial,Baskerville,monospace;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
}

.tpd-frames,
.tpd-skin {
  left: 0;
}

.tpd-frames .tpd-frame {
  float: left;
  width: 100%;
  height: 100%;
  clear: both;
  display: none;
}

.tpd-visible-frame-bottom .tpd-frame-bottom,
.tpd-visible-frame-left .tpd-frame-left,
.tpd-visible-frame-right .tpd-frame-right,
.tpd-visible-frame-top .tpd-frame-top {
  display: block;
}

.tpd-backgrounds {
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
}

.tpd-background-shadow {
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  pointer-events: none;
}

.tpd-no-shadow .tpd-skin .tpd-background-shadow {
  box-shadow: none!important;
}

.tpd-background-box {
  left: 0;
  height: 100%;
  width: 100%;
}

.tpd-no-stem .tpd-background-box,
.tpd-no-stem .tpd-shift-stem {
  display: none;
}

.tpd-no-stem .tpd-background-box-top {
  display: block;
}

.tpd-background-loading,
.tpd-is-loading .tpd-background,
.tpd-is-loading .tpd-content-wrapper,
.tpd-is-loading .tpd-title-wrapper {
  display: none;
}

.tpd-background-box-shift,
.tpd-background-box-shift-further {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}

.tpd-shift-stem,
.tpd-shift-stem-side,
.tpd-stem,
.tpd-stem-point,
.tpd-stem-spacer,
.tpd-stem-triangle {
  position: absolute;
}

.tpd-background {
  border-radius: 10px;
  float: left;
  clear: both;
  background: 0 0;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255,255,255,.1);
}

.tpd-no-radius .tpd-skin .tpd-frames .tpd-frame .tpd-backgrounds .tpd-background {
  border-radius: 0;
}

.tpd-background-content,
.tpd-background-title {
  float: left;
  clear: both;
  width: 100%;
  background-color: #282828;
}

.tpd-background-border-hack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
}

.tpd-background-box-top {
  top: 0;
}

.tpd-background-box-bottom {
  bottom: 0;
}

.tpd-background-box-left {
  left: 0;
}

.tpd-background-box-right {
  right: 0;
}

.tpd-shift-stem {
  top: 0;
  left: 0;
}

.tpd-frame-bottom .tpd-shift-stem-side,
.tpd-frame-top .tpd-shift-stem-side {
  width: 100%;
}

.tpd-frame-left .tpd-shift-stem-side,
.tpd-frame-right .tpd-shift-stem-side {
  height: 100%;
}

.tpd-stem {
  top: 0;
  width: 16px;
  height: 8px;
  margin-left: 3px;
  margin-top: 2px;
  transform-origin: 0 0;
}

.tpd-tooltip .tpd-skin .tpd-frames .tpd-frame .tpd-shift-stem .tpd-stem-reset {
  margin: 0!important;
}

.tpd-stem-spacer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tpd-stem-reset .tpd-stem-spacer {
  margin-top: 0;
}

.tpd-stem-point {
  width: 100px;
  top: 0;
  left: 50%;
}

.tpd-stem-downscale,
.tpd-stem-transform {
  float: left;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  position: relative;
}

.tpd-stem-side {
  width: 50%;
  height: 100%;
  float: left;
  position: relative;
}

.tpd-stem-side-inversed {
  -webkit-transform: scale(-1,1);
  transform: scale(-1,1);
}

.tpd-stem-triangle {
  width: 0;
  height: 0;
  border-bottom-style: solid;
  border-left-color: transparent;
  border-left-style: solid;
  top: 0;
  left: 0;
}

.tpd-stem-border,
.tpd-stem-border-corner {
  position: absolute;
  left: 50%;
  border-right-style: solid;
  border-right-width: 0;
  height: 100%;
  top: 0;
}

.tpd-stem-border {
  width: 20px;
  background-color: #fff;
  border-right-color: #fff;
}

.tpd-stem * {
  z-index: 0;
  zoom: 1;
}

.tpd-stem-border-center-offset,
.tpd-stem-border-center-offset-inverse {
  float: left;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tpd-stem-notransform {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}

.tpd-stem-notransform .tpd-stem-border {
  height: 100%;
  position: relative;
  float: left;
  top: 0;
  left: 0;
  margin: 0;
}

.tpd-spinner,
.tpd-stem-notransform .tpd-stem-border-center {
  position: absolute;
}

.tpd-stem-notransform .tpd-stem-border-corner {
  background: #fff;
  border: 0;
  top: auto;
  left: auto;
}

.tpd-stem-notransform .tpd-stem-border-center,
.tpd-stem-notransform .tpd-stem-triangle {
  height: 0;
  border: 0;
  left: 50%;
}

.tpd-stem-transform-left {
  -webkit-transform: rotate(-90deg) scale(-1,1);
  transform: rotate(-90deg) scale(-1,1);
}

.tpd-stem-transform-right {
  -webkit-transform: rotate(90deg) translate(0,-100%);
  transform: rotate(90deg) translate(0,-100%);
}

.tpd-stem-transform-bottom {
  -webkit-transform: scale(1,-1) translate(0,-100%);
  transform: scale(1,-1) translate(0,-100%);
}

.tpd-spinner {
  top: 50%;
  left: 50%;
  width: 46px;
  height: 36px;
}

.tpd-spinner-spin {
  position: relative;
  float: left;
  margin: 8px 0 0 13px;
  text-indent: -9999em;
  border-top: 2px solid rgba(255,255,255,.2);
  border-right: 2px solid rgba(255,255,255,.2);
  border-bottom: 2px solid rgba(255,255,255,.2);
  border-left: 2px solid #fff;
  -webkit-animation: tpd-spinner-animation 1.1s infinite linear;
  animation: tpd-spinner-animation 1.1s infinite linear;
}

.tpd-spinner-spin,
.tpd-spinner-spin:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

@-webkit-keyframes tpd-spinner-animation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tpd-spinner-animation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.tpd-is-loading .tpd-background-loading {
  display: block;
}

.tpd-tooltip-measuring {
  top: 0;
  left: 0;
  position: absolute;
  max-width: 100%;
  width: 100%;
}

.tpd-tooltip-measuring .tpd-skin,
.tpd-tooltip-measuring .tpd-spinner {
  display: none;
}

.tpd-tooltip-measuring .tpd-content-wrapper,
.tpd-tooltip-measuring .tpd-title-wrapper {
  display: block;
}

.tpd-tooltip a,
.tpd-tooltip a:hover {
  color: grey;
  text-decoration: underline;
}

.tpd-tooltip a:hover {
  color: #6c6c6c;
}

.tpd-size-x-small .tpd-content,
.tpd-size-x-small .tpd-title {
  padding: 7px 8px;
  font-size: 10px;
  line-height: 15px;
}

.tpd-size-x-small .tpd-background {
  border-radius: 5px;
}

.tpd-size-x-small .tpd-stem {
  width: 12px;
  height: 6px;
  margin-left: 4px;
  margin-top: 2px;
}

.tpd-size-x-small.tpd-no-radius .tpd-stem {
  margin-left: 7px;
}

.tpd-size-x-small .tpd-close {
  margin-bottom: 1px;
}

.tpd-size-x-small .tpd-spinner {
  width: 35px;
  height: 29px;
}

.tpd-size-x-small .tpd-spinner-spin {
  margin: 6px 0 0 9px;
}

.tpd-size-x-small .tpd-spinner-spin,
.tpd-size-x-small .tpd-spinner-spin:after {
  width: 17px;
  height: 17px;
}

.tpd-size-small .tpd-content,
.tpd-size-small .tpd-title {
  padding: 8px;
  font-size: 10px;
  line-height: 16px;
}

.tpd-size-small .tpd-background {
  border-radius: 6px;
}

.tpd-size-large .tpd-background,
.tpd-size-medium .tpd-background {
  border-radius: 8px;
}

.tpd-size-small .tpd-stem {
  width: 14px;
  height: 7px;
  margin-left: 5px;
  margin-top: 2px;
}

.tpd-size-small.tpd-no-radius .tpd-stem {
  margin-left: 8px;
}

.tpd-size-small .tpd-close {
  margin: 2px 1px;
}

.tpd-size-small .tpd-spinner {
  width: 42px;
  height: 32px;
}

.tpd-size-small .tpd-spinner-spin {
  margin: 7px 0 0 13px;
}

.tpd-size-small .tpd-spinner-spin,
.tpd-size-small .tpd-spinner-spin:after {
  width: 18px;
  height: 18px;
}

.tpd-size-medium .tpd-content,
.tpd-size-medium .tpd-title {
  padding: 10px;
  font-size: 11px;
  line-height: 16px;
}

.tpd-size-medium .tpd-stem {
  width: 16px;
  height: 8px;
  margin-left: 6px;
  margin-top: 2px;
}

.tpd-size-medium.tpd-no-radius .tpd-stem {
  margin-left: 10px;
}

.tpd-size-medium .tpd-close {
  margin: 4px 2px;
}

.tpd-size-medium .tpd-spinner {
  width: 50px;
  height: 36px;
}

.tpd-size-medium .tpd-spinner-spin {
  margin: 8px 0 0 15px;
}

.tpd-size-medium .tpd-spinner-spin,
.tpd-size-medium .tpd-spinner-spin:after {
  width: 20px;
  height: 20px;
}

.tpd-size-large .tpd-content,
.tpd-size-large .tpd-title {
  padding: 10px;
  font-size: 13px;
  line-height: 18px;
}

.tpd-size-large .tpd-stem {
  width: 18px;
  height: 9px;
  margin-left: 7px;
  margin-top: 2px;
}

.tpd-size-large.tpd-no-radius .tpd-stem {
  margin-left: 10px;
}

.tpd-size-large .tpd-close {
  margin: 5px 2px;
}

.tpd-size-large .tpd-spinner {
  width: 54px;
  height: 38px;
}

.tpd-size-large .tpd-spinner-spin {
  margin: 9px 0 0 17px;
}

.tpd-size-large .tpd-spinner-spin,
.tpd-size-large .tpd-spinner-spin:after {
  width: 20px;
  height: 20px;
}

.tpd-skin-dark .tpd-close,
.tpd-skin-dark .tpd-content,
.tpd-skin-dark .tpd-title {
  color: #fff;
}

.tpd-skin-dark .tpd-background-content,
.tpd-skin-dark .tpd-background-title {
  background-color: #332c69;
}

.tpd-skin-dark .tpd-background {
  border-width: 1px;
  border-color: rgba(255,255,255,.1);
}

.tpd-skin-dark .tpd-title-wrapper {
  border-bottom: 1px solid #404040;
}

.tpd-skin-dark .tpd-spinner-spin {
  border-color: rgba(255,255,255,.2);
  border-left-color: #fff;
}

.tpd-skin-dark a {
  color: #ccc;
}

.tpd-skin-dark a:hover {
  color: silver;
}