.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.hide-text {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 28px;
  /* Make inputs at least the height of their button counterpart */

  /* Makes inputs behave like true block-level elements */

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* 
buttons.less
*/
.btn {
  background: #555555;
  padding: 4px 10px 4px;
  text-shadow: none !important;
  border: 1px solid #555555;
  border-bottom: 4px solid #222222;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background linear 0.1s, border-color linear 0.1s;
  -moz-transition: background linear 0.1s, border-color linear 0.1s;
  -ms-transition: background linear 0.1s, border-color linear 0.1s;
  -o-transition: background linear 0.1s, border-color linear 0.1s;
  transition: background linear 0.1s, border-color linear 0.1s;
  color: #FFF !important;
}
.btn i {
  background-image: url("/img/glyphicons-halflings-white.png") !important;
  opacity: 0.4;
  filter: alpha(opacity=40);
  position: relative;
  top: 1px;
  left: 2px;
}
.btn:hover {
  color: #555555 !important;
  background-color: #FFF;
  border-bottom-color: #DDD;
  text-shadow: none;
  -webkit-transition: background linear 0.1s, border-color linear 0.1s;
  -moz-transition: background linear 0.1s, border-color linear 0.1s;
  -ms-transition: background linear 0.1s, border-color linear 0.1s;
  -o-transition: background linear 0.1s, border-color linear 0.1s;
  transition: background linear 0.1s, border-color linear 0.1s;
}
.btn:hover i {
  background-image: url("/img/glyphicons-halflings.png") !important;
  opacity: 0.1;
  filter: alpha(opacity=10);
}
.btn:active {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.btn.disabled,
.btn.disabled:hover,
.btn[disabled] {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.btn.disabled i,
.btn.disabled:hover i,
.btn[disabled] i {
  background-image: url("/img/glyphicons-halflings-white.png") !important;
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.btn-primary {
  border-color: #1a82da;
  border-bottom-color: #0f4c7f;
  background-color: #1a82da;
}
.btn-primary:hover {
  color: #1a82da !important;
  text-shadow: none;
  border-bottom-color: #c8e2f8;
}
.btn-primary.disabled,
.btn-primary.disabled:hover {
  color: #FFF !important;
  border-color: #1a82da;
  border-bottom-color: #0f4c7f;
  background-color: #1a82da;
}
.btn-danger,
.btn.cancel {
  border-color: #ff4536;
  border-bottom-color: #cf0f00;
  background-color: #ff4536;
}
.btn-danger:hover,
.btn.cancel:hover {
  color: #ff4536 !important;
  background: #FFF !important;
  border-bottom-color: #ffd3cf;
}
.btn-info {
  border-color: #555555;
  border-bottom-color: #222222;
  background-color: #555555;
}
.btn-info:hover {
  color: #555555 !important;
  border-bottom-color: #bbbbbb;
}
.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info[disabled],
.btn-info[disabled]:hover {
  border-color: #555555 !important;
  background: #FFF !important;
  border-bottom-color: #222222;
}
.btn-success {
  border-color: #11b049;
  border-bottom-color: #085322;
  background-color: #11b049;
}
.btn-success:hover {
  color: #11b049 !important;
  border-bottom-color: #b7e7c8;
}
.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success[disabled],
.btn-success[disabled]:hover {
  border-color: #11b049 !important;
  border-bottom-color: #085322 !important;
  background-color: #11b049 !important;
  color: #ffffff !important;
}
/*
forms.less
*/
input,
textarea,
.uneditable-input {
  color: #555555;
  background: #FFF;
  border: 2px solid #e4e4e4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0px 0px 1px #555555;
  -moz-box-shadow: inset 0px 0px 1px #555555;
  box-shadow: inset 0px 0px 1px #555555;
  -webkit-transition: color linear 0.1s, border-color linear 0.1s;
  -moz-transition: color linear 0.1s, border-color linear 0.1s;
  -ms-transition: color linear 0.1s, border-color linear 0.1s;
  -o-transition: color linear 0.1s, border-color linear 0.1s;
  transition: color linear 0.1s, border-color linear 0.1s;
}
.error input,
input.error,
.error textarea,
textarea.error,
.error select,
select.error {
  border-color: #ffd3cf !important;
}
.success input,
input.success,
.success textarea,
textarea.success,
.success select,
select.success {
  border-color: #d0fadf !important;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #c8e2f8 !important;
  color: #1a82da !important;
  -webkit-box-shadow: inset 0px 0px 1px #000000 !important;
  -moz-box-shadow: inset 0px 0px 1px #000000 !important;
  box-shadow: inset 0px 0px 1px #000000 !important;
  -webkit-transition: color linear 0.1s, border-color linear 0.1s;
  -moz-transition: color linear 0.1s, border-color linear 0.1s;
  -ms-transition: color linear 0.1s, border-color linear 0.1s;
  -o-transition: color linear 0.1s, border-color linear 0.1s;
  transition: color linear 0.1s, border-color linear 0.1s;
}
label {
  color: #999999;
}
p > .label {
  position: relative;
  top: -2px;
}
.label-important,
.label-warning {
  background-color: #ff4536;
}
.label-important:hover,
.label-warning:hover {
  background-color: #cf0f00;
  cursor: default;
}
/*
dropdowns.less
*/
.btn-group .caret {
  margin-left: -1px;
}
.btn-group.open .btn[data-toggle="dropdown"] {
  z-index: 999;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  border-bottom-color: #FFF;
}
.btn-group.open .dropdown-toggle {
  background: #FFF;
}
#header .dropdown-menu {
  border: 1px solid #DDD;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  margin-top: -1px !important;
  z-index: 1 !important;
}
#header .dropdown-menu li:hover a {
  background: #FFF;
  color: #1a82da;
}
#header .dropdown-menu li:hover a i {
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.btn-primary:hover .caret,
.btn-warning:hover .caret,
.btn-danger:hover .caret,
.btn-info:hover .caret,
.btn-success:hover .caret,
.btn-inverse:hover .caret {
  border-top-color: #000000;
  border-bottom-color: #000000;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
/*
navs.less
*/
.nav > li > a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.nav > li > a:hover {
  text-decoration: none;
  border-top-color: #eeeeee;
  border-left-color: #eeeeee;
  border-right-color: #eeeeee;
  color: #000000;
  background-color: #eeeeee;
}
.nav > li > a:active {
  opacity: .7;
}
.tabs-left .nav > li > a:hover {
  border-right-color: rgba(0, 0, 0, 0);
  border-bottom-color: #eeeeee;
  border-left-color: #eeeeee;
  border-top-color: #eeeeee;
}
.categories .nav > li.active a,
.categories .nav > li.active a:hover {
  background-color: transparent;
  color: #999999;
  border-bottom-color: #ffffff;
}
.categories .nav > li.active a i,
.categories .nav > li.active a:hover i {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.tabs-left .nav li.active a,
.tabs-left .nav li.active a:hover {
  border-right-color: #ffffff;
}
/*
modals.less
*/
.modal {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
/*
alerts.less
*/
.alert {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border-width: 0 0 2px;
}
.alert .close {
  width: 22px;
  height: 22px;
  border: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #FFF;
  font-size: 16px;
  text-align: center;
  text-shadow: none;
  text-decoration: none;
}
.alert .close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.alert .close,
.alert.alert-error .close {
  background-color: #ff4536;
}
.alert.alert-success .close {
  background-color: #11b049;
}
.alert.alert-info .close {
  background-color: #1a82da;
}
.top-alerts .alert {
  margin-bottom: 0;
}
/*
type.less
*/
h2 {
  font-size: 18px;
  line-height: 27px;
}
h2 small {
  font-size: 14px;
}
h3 {
  line-height: 27px;
  font-size: 18px;
}
h3 small {
  font-size: 14px;
}
h3 {
  font-weight: 500;
  color: #ff4536;
}
h1 {
  font-weight: 500;
  color: #1a82da;
  letter-spacing: -1px;
}
.page-header {
  margin-top: 20px;
  border: 0px;
  border-left: 1px dotted #ebebeb;
  border-bottom: 2px solid #ebebeb;
  padding-left: 20px;
  position: relative;
  /*left: -20px;*/

}
.page-header p {
  margin: 10px 0px 0px 0px;
  font: 400 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #555555;
  /*letter-spacing: 1px;*/

}
.page-header h1 {
  display: inline-block;
  background: #e3f0fc;
  color: #1a82da;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.page-header h2 {
  font-weight: 500;
  display: inline-block;
  background: #e3f0fc;
  color: #1a82da !important;
  padding: 4px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/*
tooltip.less
*/
.tooltip-inner {
  background-color: #222222;
}
.tooltip-arrow {
  border-top-color: #222222 !important;
}
.navbar-inner .navbar-form {
  padding: 0 2px;
}
.navbar-inner .navbar-form .search-query {
  padding: 4px 9px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  color: #ffffff;
  background-color: #626262;
  border: 1px solid #151515;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.navbar-inner .navbar-form .search-query:-moz-placeholder {
  color: #cccccc;
}
.navbar-inner .navbar-form .search-query::-webkit-input-placeholder {
  color: #cccccc;
}
.navbar-inner .navbar-form .search-query:focus,
.navbar-inner .navbar-form .search-query.focused {
  padding: 5px 10px;
  color: #333333;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #ffffff;
  border: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  outline: 0;
}
/* @group Base */
.chzn-container {
  font-size: 13px;
  position: relative;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.chzn-container .chzn-drop {
  background: #fff;
  border: 1px solid #aaa;
  border-top: 0;
  position: absolute;
  top: 29px;
  left: 0;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  z-index: 1010;
}
/* @end */
/* @group Single Chosen */
.chzn-container-single .chzn-single {
  background-color: #ffffff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #aaaaaa;
  -webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  display: block;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 23px;
  line-height: 24px;
  padding: 0 0 0 8px;
  color: #444444;
  text-decoration: none;
}
.chzn-container-single .chzn-default {
  color: #999;
}
.chzn-container-single .chzn-single span {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.chzn-container-single .chzn-single abbr {
  display: block;
  position: absolute;
  right: 26px;
  top: 6px;
  width: 12px;
  height: 13px;
  font-size: 1px;
  background: url('chosen-sprite.png') right top no-repeat;
}
.chzn-container-single .chzn-single abbr:hover {
  background-position: right -11px;
}
.chzn-container-single.chzn-disabled .chzn-single abbr:hover {
  background-position: right top;
}
.chzn-container-single .chzn-single div {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 18px;
}
.chzn-container-single .chzn-single div b {
  background: url('chosen-sprite.png') no-repeat 0 0;
  display: block;
  width: 100%;
  height: 100%;
}
.chzn-container-single .chzn-search {
  padding: 3px 4px;
  position: relative;
  margin: 0;
  white-space: nowrap;
  z-index: 1010;
}
.chzn-container-single .chzn-search input {
  background: #ffffff url('chosen-sprite.png') no-repeat 100% -22px;
  background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  outline: 0;
  border: 1px solid #aaa;
  font-family: sans-serif;
  font-size: 1em;
}
.chzn-container-single .chzn-drop {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/* @end */
.chzn-container-single-nosearch .chzn-search input {
  position: absolute;
  left: -9000px;
}
/* @group Multi Chosen */
.chzn-container-multi .chzn-choices {
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  border: 1px solid #aaa;
  margin: 0;
  padding: 0;
  cursor: text;
  overflow: hidden;
  height: auto !important;
  height: 1%;
  position: relative;
}
.chzn-container-multi .chzn-choices li {
  float: left;
  list-style: none;
}
.chzn-container-multi .chzn-choices .search-field {
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.chzn-container-multi .chzn-choices .search-field input {
  color: #666;
  background: transparent !important;
  border: 0 !important;
  font-family: sans-serif;
  font-size: 100%;
  height: 15px;
  padding: 5px;
  margin: 1px 0;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.chzn-container-multi .chzn-choices .search-field .default {
  color: #999;
}
.chzn-container-multi .chzn-choices .search-choice {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  border: 1px solid #aaaaaa;
  line-height: 13px;
  padding: 3px 20px 3px 5px;
  margin: 3px 0 3px 5px;
  position: relative;
  cursor: default;
}
.chzn-container-multi .chzn-choices .search-choice-focus {
  background: #d4d4d4;
}
.chzn-container-multi .chzn-choices .search-choice .search-choice-close {
  display: block;
  position: absolute;
  right: 3px;
  top: 4px;
  width: 12px;
  height: 13px;
  font-size: 1px;
  background: url('chosen-sprite.png') right top no-repeat;
}
.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {
  background-position: right -11px;
}
.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {
  background-position: right -11px;
}
/* @end */
/* @group Results */
.chzn-container .chzn-results {
  margin: 0 4px 4px 0;
  max-height: 240px;
  padding: 0 0 0 4px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.chzn-container-multi .chzn-results {
  margin: -1px 0 0;
  padding: 0;
}
.chzn-container .chzn-results li {
  display: none;
  line-height: 15px;
  padding: 5px 6px;
  margin: 0;
  list-style: none;
}
.chzn-container .chzn-results .active-result {
  cursor: pointer;
  display: list-item;
}
.chzn-container .chzn-results .highlighted {
  background-color: #3875d7;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
  background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.chzn-container .chzn-results li em {
  background: #feffde;
  font-style: normal;
}
.chzn-container .chzn-results .highlighted em {
  background: transparent;
}
.chzn-container .chzn-results .no-results {
  background: #f4f4f4;
  display: list-item;
}
.chzn-container .chzn-results .group-result {
  cursor: default;
  color: #999;
  font-weight: bold;
}
.chzn-container .chzn-results .group-option {
  padding-left: 15px;
}
.chzn-container-multi .chzn-drop .result-selected {
  display: none;
}
.chzn-container .chzn-results-scroll {
  background: white;
  margin: 0 4px;
  position: absolute;
  text-align: center;
  width: 321px;
  /* This should by dynamic with js */

  z-index: 1;
}
.chzn-container .chzn-results-scroll span {
  display: inline-block;
  height: 17px;
  text-indent: -5000px;
  width: 9px;
}
.chzn-container .chzn-results-scroll-down {
  bottom: 0;
}
.chzn-container .chzn-results-scroll-down span {
  background: url('chosen-sprite.png') no-repeat -4px -3px;
}
.chzn-container .chzn-results-scroll-up span {
  background: url('chosen-sprite.png') no-repeat -22px -3px;
}
/* @end */
/* @group Active  */
.chzn-container-active .chzn-single {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #5897fb;
}
.chzn-container-active .chzn-single-with-drop {
  border: 1px solid #aaa;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  -moz-box-shadow: 0 1px 0 #fff inset;
  -o-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  background-color: #eee;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
  background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.chzn-container-active .chzn-single-with-drop div {
  background: transparent;
  border-left: none;
}
.chzn-container-active .chzn-single-with-drop div b {
  background-position: -18px 1px;
}
.chzn-container-active .chzn-choices {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #5897fb;
}
.chzn-container-active .chzn-choices .search-field input {
  color: #111 !important;
}
/* @end */
/* @group Disabled Support */
.chzn-disabled {
  cursor: default;
  opacity: 0.5 !important;
}
.chzn-disabled .chzn-single {
  cursor: default;
}
.chzn-disabled .chzn-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @group Right to Left */
.chzn-rtl {
  text-align: right;
}
.chzn-rtl .chzn-single {
  padding: 0 8px 0 0;
  overflow: visible;
}
.chzn-rtl .chzn-single span {
  margin-left: 26px;
  margin-right: 0;
  direction: rtl;
}
.chzn-rtl .chzn-single div {
  left: 3px;
  right: auto;
}
.chzn-rtl .chzn-single abbr {
  left: 26px;
  right: auto;
}
.chzn-rtl .chzn-choices .search-field input {
  direction: rtl;
}
.chzn-rtl .chzn-choices li {
  float: right;
}
.chzn-rtl .chzn-choices .search-choice {
  padding: 3px 5px 3px 19px;
  margin: 3px 5px 3px 0;
}
.chzn-rtl .chzn-choices .search-choice .search-choice-close {
  left: 4px;
  right: auto;
  background-position: right top;
}
.chzn-rtl.chzn-container-single .chzn-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chzn-rtl .chzn-results .group-option {
  padding-left: 0;
  padding-right: 15px;
}
.chzn-rtl.chzn-container-active .chzn-single-with-drop div {
  border-right: none;
}
.chzn-rtl .chzn-search input {
  background: #ffffff url('chosen-sprite.png') no-repeat -38px -22px;
  background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background: url('chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  padding: 4px 5px 4px 20px;
  direction: rtl;
}
/* @end */
html {
  background-color: #323232;
}
body {
  background: #FFF;
  font: 400 13px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body > .top-border {
  height: 4px;
  background-color: #cdcdcd;
}
:-moz-placeholder {
  color: #cccccc;
}
::-webkit-input-placeholder {
  color: #cccccc;
}
:-moz-placeholder {
  color: #cccccc;
}
::-webkit-input-placeholder {
  color: #cccccc;
}
.inline {
  display: inline;
}
.float-right {
  float: right;
}
#status-indicator {
  position: fixed;
  z-index: 999;
  top: 60px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #FFF;
}
header#header {
  height: 80px;
  border-bottom: 2px solid #ebebeb;
  position: relative;
  z-index: 20;
  background: #FFF;
}
header#header > .row > nav[role="navigation"] {
  position: relative;
}
header#header > .row > nav[role="navigation"] > ul.left {
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 44px;
  left: -10px;
}
header#header > .row > nav[role="navigation"] > ul.left > li {
  display: inline-block;
  list-style-type: none;
}
header#header > .row > nav[role="navigation"] > ul.left > li.separation {
  color: #CCC;
  padding: 0px 2px;
}
header#header > .row > nav[role="navigation"] > ul.left > li > a {
  display: inline-block;
  height: 36px;
  font: 500 14px/30px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #585858;
  border-bottom: 2px solid #ebebeb;
}
header#header > .row > nav[role="navigation"] > ul.left > li > a .dropdown-menu {
  z-index: 999 !important;
}
header#header > .row > nav[role="navigation"] > ul.left > li > a:hover {
  border-bottom: 4px solid #000000;
  height: 34px;
  color: #000000;
  text-decoration: none;
}
header#header > .row > nav[role="navigation"] > ul.left > li > a > i {
  display: inline-block;
  position: relative;
  top: 6px;
}
header#header > .row > nav[role="navigation"] > ul.left > li.active a,
header#header > .row > nav[role="navigation"] > ul.left > li.active a:hover {
  border-bottom: 4px solid #DDD;
  height: 34px;
  color: #BBB;
  text-decoration: none;
}
header#header > .row > nav[role="navigation"] > ul.left > li.open a {
  background-color: #FFF !important;
}
header#header > .row > nav[role="navigation"] > ul.left > li.open .dropdown-menu {
  border-top: none !important;
  margin-top: -4px !important;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  margin-left: -11px;
  z-index: 999;
}
header#header > .row > nav[role="navigation"] > ul.left > li.open .dropdown-menu a {
  padding-left: 12px !important;
  color: #555555 !important;
}
header#header > .row > nav[role="navigation"] > ul.left > li.open .dropdown-menu a:hover {
  color: #000000 !important;
  text-decoration: underline;
}
header#header > .row > nav[role="navigation"] > p.user {
  position: absolute;
  right: -70px;
  top: 50px;
  font: 400 12px/15px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999999;
}
header#header > .row > nav[role="navigation"] > p.user > .icon-logout {
  display: inline-block;
  position: relative;
  opacity: .3;
  top: 2px;
  margin-left: 2px;
}
header#header > .row form.login {
  position: absolute;
  right: -80px;
  display: none;
  width: 200px;
  padding: 10px;
  top: 79px;
  border: 1px solid #DDD;
  border-top: 0px;
  background: #FFF;
  z-index: 999;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
header#header > .row form.login.open {
  display: block;
}
header#header > .row form.login hr.mini {
  margin: 0px;
}
header#header > .row form.login > .border {
  height: 1px;
  background: #eeeeee;
  width: 100%;
  margin: 4px 0px;
}
header#header > .row form.login a.forgot {
  position: relative;
  left: 4px;
  top: 2px;
}
header#header > .row input[type=text],
header#header > .row input[type=email],
header#header > .row input[type=password] {
  width: 186px;
}
header#header > .row > a.logo {
  position: relative;
  display: block;
  height: 54px;
  top: 20px;
  border-right: 1px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
  padding-top: 6px;
  color: #585858;
}
header#header > .row > a.logo > img:first-child {
  display: block;
  width: 150px;
  height: 24px;
  margin-bottom: 3px;
}
header#header > .row > a.logo:hover {
  border-bottom: 4px solid #000000;
  height: 52px;
  text-decoration: none;
  color: #AAA;
}
header#header > .row > .nsearch {
  position: absolute;
  right: 0px;
  bottom: -20px;
  border-bottom: 4px solid #1a82da;
  border-right: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  width: 240px;
  height: 50px;
}
header#header > .row > .nsearch > .icon-search {
  position: absolute;
  right: 10px;
  bottom: 10px;
  opacity: 0.3;
  filter: alpha(opacity=30);
  cursor: pointer;
}
header#header > .row > .nsearch > .icon-search:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
header#header > .row > .nsearch input {
  position: absolute;
  left: 10px;
  bottom: -3px;
  border: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 180px;
}
header#header > .row > .nsearch input:focus {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
header#header > #mini-cart {
  display: block;
  text-decoration: none;
  position: absolute;
  right: 4px;
  z-index: 998;
  top: 12px;
  font: 600 14px/26px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFF;
  background-color: #11b049;
  padding: 2px 6px 2px 28px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
header#header > #mini-cart > .domains {
  text-decoration: underline;
}
header#header > #mini-cart > .icon {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('../images/icon.cart.fff.png') no-repeat center center;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
header#header > #mini-cart:hover > .domains {
  text-decoration: none;
}
header#header > #mini-cart:hover > .icon {
  opacity: 1;
  filter: alpha(opacity=100);
}
footer {
  border-bottom: 4px solid #323232;
  background-color: #3f3f3f;
  padding: 20px 0px;
  color: #969696;
}
footer p.ideegeo {
  position: relative;
  top: -7px;
}
footer p.ideegeo > .logo-ideegeo {
  display: inline-block;
  position: relative;
  top: 3px;
  opacity: 0.34;
  filter: alpha(opacity=34);
  right: 4px;
}
footer a {
  color: #CCC;
}
footer a:hover {
  color: #FFF;
}
footer ul > li {
  list-style-type: none;
  font: 400 12px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #CCC;
}
footer ul > li.title {
  color: #969696;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font: 500 11px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
footer .right {
  text-align: right;
}
footer .center {
  text-align: center;
}
footer .extras {
  margin-top: 20px;
}
footer .logo-bbb {
  display: inline-block;
  position: relative;
  top: 3px;
  opacity: 0.34;
  filter: alpha(opacity=34);
}
footer .logo-bbb:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
nav.crumbs > .btn-group {
  display: inline-block;
  position: relative;
  top: 10px;
}
nav.crumbs > span.separator {
  padding: 0px 4px;
  color: #999999;
}
#main {
  padding-top: 20px;
}
.domain-menu li a {
  padding: 8px 8px;
}
#dashboard #domain-filter {
  margin-bottom: 0px;
}
#dashboard #domain-table tr:first-child td {
  border-top: 0px;
}
#dashboard #domain-table .domain h3 {
  font: 600 18px/25px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#dashboard #domain-table td.action {
  /*border-left: 1px solid @grayLighter;*/

  position: relative;
  width: 36px;
  /*
      a{
        position: relative;
        top: 5px;
        > i{
          .opacity(20);
        }
        &:hover{
          color: @grayLight;
          text-decoration: none;
          > i{
            .opacity(100);
          }
        }
      }
      */

}
#dashboard #domain-table td.action > .default-text {
  position: relative;
  text-decoration: underline;
  left: 8px;
  top: 2px;
  color: #999999;
}
#dashboard #domain-table td.action > .btn-group {
  display: none;
  position: absolute;
  left: 5px;
  top: 5px;
}
#dashboard #domain-table tr:hover .default-text {
  display: none;
}
#dashboard #domain-table tr:hover .btn-group {
  display: inline-block;
}
#dashboard #domain-table tr:hover .domain h3 {
  text-decoration: underline;
}
#dashboard .welcome {
  color: #1a82da;
}
#dashboard .welcome p {
  position: relative;
  top: 14px;
}
#domain,
#account {
  position: relative;
}
#domain > .left > *,
#account > .left > * {
  position: relative;
  z-index: 10;
}
#domain > .left > .background,
#account > .left > .background {
  background-color: #666666;
  position: absolute;
  right: 50%;
  margin-right: 240px;
  top: -20px;
  bottom: 0px;
  left: -1000px;
  z-index: 1;
}
#domain > .left h4,
#account > .left h4 {
  border-bottom: 1px dotted #999999;
  margin: 0px 50px 10px 0px;
  font: 500 15px/48px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFF;
}
#domain > .left h4 a,
#account > .left h4 a {
  color: #FFF;
}
#domain > .left > nav.domain-dropdown,
#account > .left > nav.domain-dropdown {
  position: relative;
  border-bottom: 1px dotted #999999;
  margin: 0px 50px 10px 0px;
}
#domain > .left > nav.domain-dropdown > a.selected-domain,
#account > .left > nav.domain-dropdown > a.selected-domain {
  font: 500 15px/48px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFF;
}
#domain > .left > nav.domain-dropdown > .arrow,
#account > .left > nav.domain-dropdown > .arrow {
  position: absolute;
  right: 0px;
  top: 15px;
  width: 20px;
  height: 20px;
  background: #FFF;
  text-align: center;
  cursor: pointer;
}
#domain > .left > nav.domain-dropdown > .arrow > .caret,
#account > .left > nav.domain-dropdown > .arrow > .caret {
  position: relative;
  top: 9px;
}
#domain > .left > nav.domain-dropdown > .arrow > .close,
#account > .left > nav.domain-dropdown > .arrow > .close {
  display: none;
  text-shadow: none !important;
}
#domain > .left > nav.domain-dropdown > .arrow:hover,
#account > .left > nav.domain-dropdown > .arrow:hover {
  background-color: #1a82da;
}
#domain > .left > nav.domain-dropdown > .arrow:hover > .caret,
#account > .left > nav.domain-dropdown > .arrow:hover > .caret {
  border-top-color: #ffffff;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#domain > .left > nav.domain-dropdown > ul.domains,
#account > .left > nav.domain-dropdown > ul.domains {
  display: none !important;
  margin: 0px;
  padding: 0px;
  padding-bottom: 10px;
}
#domain > .left > nav.domain-dropdown > ul.domains > li,
#account > .left > nav.domain-dropdown > ul.domains > li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
#domain > .left > nav.domain-dropdown > ul.domains > li > a,
#account > .left > nav.domain-dropdown > ul.domains > li > a {
  color: #b6b6b6;
}
#domain > .left > nav.domain-dropdown > ul.domains > li > a:hover,
#account > .left > nav.domain-dropdown > ul.domains > li > a:hover {
  color: #ffffff;
}
#domain > .left > nav.domain-dropdown.open > ul.domains,
#account > .left > nav.domain-dropdown.open > ul.domains {
  display: block !important;
}
#domain > .left > nav.domain-dropdown.open > .arrow > .caret,
#account > .left > nav.domain-dropdown.open > .arrow > .caret {
  display: none;
}
#domain > .left > nav.domain-dropdown.open > .arrow > .close,
#account > .left > nav.domain-dropdown.open > .arrow > .close {
  display: block;
  position: relative;
  left: -4px;
  top: -1px;
}
#domain > .left > nav.domain-dropdown.open > .arrow:hover,
#account > .left > nav.domain-dropdown.open > .arrow:hover {
  background-color: #ff4536;
}
#domain > .left > nav.domain-dropdown.open > .arrow:hover > .close,
#account > .left > nav.domain-dropdown.open > .arrow:hover > .close {
  color: #FFF;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#domain > .left nav.sections > ul.tabs li,
#account > .left nav.sections > ul.tabs li {
  list-style-type: none;
}
#domain > .left nav.sections > ul.tabs li > a,
#account > .left nav.sections > ul.tabs li > a {
  display: block;
  position: relative;
  text-align: right;
  padding: 3px 0px;
  padding-right: 50px;
  color: #b6b6b6;
}
#domain > .left nav.sections > ul.tabs li > a > .bg-active-tab,
#account > .left nav.sections > ul.tabs li > a > .bg-active-tab {
  display: none;
}
#domain > .left nav.sections > ul.tabs li > a:hover,
#account > .left nav.sections > ul.tabs li > a:hover {
  color: #FFF;
  text-decoration: none;
}
#domain > .left nav.sections > ul.tabs li.active > a,
#account > .left nav.sections > ul.tabs li.active > a {
  color: #FFF;
}
#domain > .left nav.sections > ul.tabs li.active > a > .bg-active-tab,
#account > .left nav.sections > ul.tabs li.active > a > .bg-active-tab {
  position: absolute;
  display: block;
  right: 0px;
  top: 4px;
}
section.chapter > header {
  position: relative;
  border-bottom: 4px solid #eeeeee;
  margin-bottom: 20px;
}
section.chapter > header h2 {
  font: 500 20px/48px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
section.chapter > header .right {
  position: absolute;
  right: 0px;
  top: 10px;
}
/*
Vim.less
*/
.document {
  min-height: 600px;
}
.document .auto_renew_on {
  display: none;
}
.document .auto_renew_off {
  display: inline;
}
.document .auto_renew .auto_renew_on {
  display: inline;
}
.document .auto_renew .auto_renew_off {
  display: none;
}
.control-group,
.controls {
  position: relative;
}
div.controls.display-only {
  padding-top: 5px;
  padding-left: 6px;
}
.form-edit-link {
  position: absolute;
  z-index: 30;
  right: 0px;
  top: 0px;
  text-align: right;
}
.form-edit-link .btn {
  margin-bottom: 4px;
}
.overview-notes .edit-notes {
  display: none;
}
.overview-notes.editing .view-notes {
  display: none;
}
.overview-notes.editing .edit-notes {
  display: block;
}
.overview-notes [name=notes] {
  width: 300px;
}
#status-indictator {
  position: absolute;
  top: 50px;
  right: 150px;
}
table.dns {
  width: 698px;
  border-left: 1px solid #eeeeee;
}
table.dns th {
  background: #eeeeee;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 1px solid #FFF;
  padding: 4px 8px;
  font-weight: 400;
  color: #999999;
  border-bottom: 1px solid #d5d5d5;
}
table.dns th:first-child {
  border-left: 1px solid #eeeeee;
}
table.dns input[type="text"] {
  width: auto;
  border: 0px;
  padding: 0px;
  display: block;
  margin: 0px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  height: 40px;
  width: 100%;
  text-indent: 6px;
  background: transparent;
  z-index: 1;
  color: #555555;
  cursor: pointer;
}
table.dns input[type="text"]:hover {
  color: #000000;
}
table.dns input[type="text"]:focus {
  z-index: 10;
  background-color: #FFF;
  cursor: text;
}
table.dns form {
  margin: 0px;
}
table.dns th,
table.dns td {
  text-align: left;
  vertical-align: left;
}
table.dns .type {
  width: 46px !important;
}
table.dns .name {
  width: 284px;
}
table.dns .points-to {
  width: 200px;
}
table.dns .button {
  width: 40px;
}
table.dns .ttl {
  width: 60px;
}
table.dns td.button > button {
  display: block;
  border: 0px;
  background: #FFF;
  width: 40px;
  margin: 0px;
  height: 40px;
}
table.dns td.button > button[data-action="delete"]:hover {
  background-color: #ff4536;
}
table.dns td.button > button[data-action="delete"]:hover i {
  background-image: url("/img/glyphicons-halflings-white.png") !important;
}
table.dns td.button > button.add:hover {
  background-color: #11b049;
}
table.dns td.button > button.add:hover i {
  background-image: url("/img/glyphicons-halflings-white.png") !important;
}
table.dns td {
  padding: 0px;
  margin: 0px;
}
table.dns td > form {
  position: relative;
}
table.dns td.path,
table.dns td.to,
table.dns td.type,
table.dns td.name,
table.dns td.points-to,
table.dns td.ttl,
table.dns td.button {
  border: 1px solid #eeeeee;
  height: 40px;
  line-height: 40px;
  position: relative;
  z-index: 1;
}
table.dns td.path .help-inline,
table.dns td.to .help-inline,
table.dns td.type .help-inline,
table.dns td.name .help-inline,
table.dns td.points-to .help-inline,
table.dns td.ttl .help-inline,
table.dns td.button .help-inline {
  display: none;
}
table.dns td.path.error,
table.dns td.to.error,
table.dns td.type.error,
table.dns td.name.error,
table.dns td.points-to.error,
table.dns td.ttl.error,
table.dns td.button.error {
  z-index: 10;
  border-bottom-color: #ff4536;
}
table.dns td.path.error input[type="text"] :-moz-placeholder,
table.dns td.to.error input[type="text"] :-moz-placeholder,
table.dns td.type.error input[type="text"] :-moz-placeholder,
table.dns td.name.error input[type="text"] :-moz-placeholder,
table.dns td.points-to.error input[type="text"] :-moz-placeholder,
table.dns td.ttl.error input[type="text"] :-moz-placeholder,
table.dns td.button.error input[type="text"] :-moz-placeholder {
  color: #ff4536;
}
table.dns td.path.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.to.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.type.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.name.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.points-to.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.ttl.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.button.error input[type="text"] ::-webkit-input-placeholder {
  color: #ff4536;
}
table.dns td.path.error input[type="text"] :-moz-placeholder,
table.dns td.to.error input[type="text"] :-moz-placeholder,
table.dns td.type.error input[type="text"] :-moz-placeholder,
table.dns td.name.error input[type="text"] :-moz-placeholder,
table.dns td.points-to.error input[type="text"] :-moz-placeholder,
table.dns td.ttl.error input[type="text"] :-moz-placeholder,
table.dns td.button.error input[type="text"] :-moz-placeholder {
  color: #ff4536;
}
table.dns td.path.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.to.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.type.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.name.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.points-to.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.ttl.error input[type="text"] ::-webkit-input-placeholder,
table.dns td.button.error input[type="text"] ::-webkit-input-placeholder {
  color: #ff4536;
}
table.dns td.path.error .help-inline,
table.dns td.to.error .help-inline,
table.dns td.type.error .help-inline,
table.dns td.name.error .help-inline,
table.dns td.points-to.error .help-inline,
table.dns td.ttl.error .help-inline,
table.dns td.button.error .help-inline {
  display: block !important;
  position: absolute;
  background-color: #ff4536;
  z-index: 20;
  font: 400 12px/24px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFF;
  padding: 0px 6px;
  left: -1px;
}
table.dns td.path.error .help-inline > .caret,
table.dns td.to.error .help-inline > .caret,
table.dns td.type.error .help-inline > .caret,
table.dns td.name.error .help-inline > .caret,
table.dns td.points-to.error .help-inline > .caret,
table.dns td.ttl.error .help-inline > .caret,
table.dns td.button.error .help-inline > .caret {
  position: absolute;
  top: -4px;
  border-top: 0px;
  border-bottom: 4px solid #ff4536;
  opacity: 1;
  filter: alpha(opacity=100);
}
table.dns td.path:hover,
table.dns td.to:hover,
table.dns td.type:hover,
table.dns td.name:hover,
table.dns td.points-to:hover,
table.dns td.ttl:hover,
table.dns td.button:hover {
  border-bottom-color: #1a82da;
}
table.dns td.path.focused,
table.dns td.to.focused,
table.dns td.type.focused,
table.dns td.name.focused,
table.dns td.points-to.focused,
table.dns td.ttl.focused,
table.dns td.button.focused {
  z-index: 10;
  border-bottom-color: #1a82da;
  cursor: default;
}
table.dns td.type {
  border-left: none;
  position: relative !important;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
table.dns td.type > .ff-fix {
  position: relative;
}
table.dns td.type select {
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  display: block;
  left: 0px;
  top: 6px;
  right: 0px;
  width: 60px;
  cursor: pointer;
  font-size: 12px;
}
table.dns td.type > .value {
  color: #555555;
}
table.dns td.type:hover {
  cursor: pointer;
}
table.dns td.type:hover > span {
  text-decoration: underline;
}
table.dns td.type.focused > .value {
  color: #1a82da;
}
.click-to-edit:hover {
  cursor: pointer;
  text-decoration: underline;
}
.small-domain-search,
.small-domain-transfer {
  position: relative;
  padding: 20px;
  margin-right: 20px;
  background-color: #eeeeee;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.small-domain-search .btn,
.small-domain-transfer .btn {
  position: relative;
  top: -4px;
}
.mini-domain-search {
  position: relative;
  height: 80px;
  margin: 10px 0px;
}
.mini-domain-search input[type=text] {
  position: absolute;
  left: 0px;
  width: 380px;
  height: 50px;
  border: 3px solid #e4e4e4;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 28px;
  text-indent: 4px;
}
.mini-domain-search input[type=text]::-webkit-input-placeholder {
  color: #DDD;
}
html.chrome .mini-domain-search input[type=text] {
  height: 46px;
}
html.chrome .mini-domain-search input[type=text]::-webkit-input-placeholder {
  color: #DDD;
  position: relative;
  top: 7px;
}
.mini-domain-search > button[type=submit] {
  position: absolute;
  width: 92px;
  height: 92px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  right: 10px;
  top: -10px;
  background-color: #ff4536;
  border: 4px solid #ff4536;
}
.mini-domain-search > button[type=submit] > i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
}
.mini-domain-search > button[type=submit]:hover {
  background-color: #1a82da;
  border-color: #0f4c7f;
}
.mini-domain-search > button[type=submit]:active {
  border-color: #000000;
  background-color: #555555;
}
.mini-domain-search p.transfer {
  padding-top: 70px;
  text-align: center;
  margin-top: 2px;
}
.mini-domain-search p.transfer > a {
  text-decoration: underline;
}
.widesearch {
  position: relative;
  padding: 70px 0px;
}
.widesearch form {
  width: 620px;
  position: relative;
  left: 50%;
  margin-left: -310px;
}
.widesearch form > .arrow {
  position: absolute;
  left: 30px;
  top: 42px;
}
.widesearch form > p.intro {
  font: 400 20px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 16px;
}
.widesearch form > p.transfer {
  text-align: center;
  margin-top: 2px;
}
.widesearch form > p.transfer > a {
  text-decoration: underline;
}
.widesearch form > input[type=text] {
  margin-left: 80px;
  width: 460px;
  height: 50px;
  border: 3px solid #e4e4e4;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 28px;
  text-indent: 4px;
}
.widesearch form > input[type=text]::-webkit-input-placeholder {
  color: #DDD;
  display: block;
  height: 50px;
}
html.chrome .widesearch form > input[type=text] {
  height: 46px;
}
html.chrome .widesearch form > input[type=text]::-webkit-input-placeholder {
  color: #DDD;
  position: relative;
  padding-top: 7px;
}
.widesearch form > button[type=submit] {
  position: absolute;
  width: 92px;
  height: 92px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  right: 0px;
  top: 20px;
  background-color: #ff4536;
  border: 4px solid #ff4536;
}
.widesearch form > button[type=submit] > i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
}
.widesearch form > button[type=submit]:hover {
  background-color: #1a82da;
  border-color: #0f4c7f;
}
.widesearch form > button[type=submit]:active {
  border-color: #000000;
  background-color: #555555;
}
.page {
  padding-bottom: 100px;
}
.container.home > .selling-points,
.container#nsearch > .selling-points {
  margin-bottom: 70px;
  position: relative;
  z-index: 4;
}
.container.home > .selling-points > .span4,
.container#nsearch > .selling-points > .span4 {
  text-align: center;
}
.container.home > .selling-points > .span4 > h3,
.container#nsearch > .selling-points > .span4 > h3 {
  margin-left: 20px;
}
.container.home > .selling-points > .span4 > .info,
.container#nsearch > .selling-points > .span4 > .info {
  height: 80px;
  margin: 10px 0px;
  border-left: 1px dotted #999999;
}
.container.home > .selling-points > .span4 > .info p,
.container#nsearch > .selling-points > .span4 > .info p {
  margin: 10px;
  margin-left: 30px;
  font: 400 15px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.container.home > .selling-points > .span4:first-child > .info,
.container#nsearch > .selling-points > .span4:first-child > .info {
  border-left: 0px;
}
.container.home > .selling-points > .span4 > a,
.container#nsearch > .selling-points > .span4 > a {
  display: inline-block;
  margin-left: 20px;
}
.container.home > .selling-points.dos .last,
.container#nsearch > .selling-points.dos .last {
  display: none;
}
.gray-domain-search {
  background: #eeeeee;
  position: relative;
  margin-bottom: 50px;
}
.gray-domain-search form {
  padding: 80px 0px 60px 224px;
  position: relative;
}
.gray-domain-search form > .left-image {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 44px;
  right: 0px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: left center;
}
.gray-domain-search form p.intro {
  position: relative;
  font: 400 15px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-left: -50px;
}
.gray-domain-search form p.intro > .tld {
  font-weight: 600;
}
.gray-domain-search form > .search-field {
  position: relative;
  margin-top: 10px;
  margin-left: -10px;
  z-index: 10;
}
.gray-domain-search form > .search-field > .arrow {
  position: absolute;
  left: -40px;
  top: 10px;
}
.gray-domain-search form > .search-field > input[type=text] {
  position: relative;
  z-index: 10;
  width: 380px;
  height: 50px;
  border: 3px solid #e4e4e4;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 28px;
  text-indent: 4px;
}
.gray-domain-search form > .search-field > input[type=text]::-webkit-input-placeholder {
  color: #DDD;
}
html.chrome .gray-domain-search form > .search-field > input[type=text] {
  height: 46px;
}
html.chrome .gray-domain-search form > .search-field > input[type=text]::-webkit-input-placeholder {
  color: #DDD;
  position: relative;
  top: 7px;
}
.gray-domain-search form > .search-field > button[type=submit] {
  position: absolute;
  width: 92px;
  height: 92px;
  z-index: 10;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  left: 360px;
  top: -20px;
  z-index: 20;
  background-color: #ff4536;
  border: 4px solid #ff4536;
  color: #FFF;
  font-weight: 500;
  text-indent: 6px;
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.gray-domain-search form > .search-field > button[type=submit] > i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
}
.gray-domain-search form > .search-field > button[type=submit]:hover {
  background-color: #1a82da;
  border-color: #0f4c7f;
}
.gray-domain-search form > .search-field > button[type=submit]:active {
  border-color: #000000;
  background-color: #555555;
}
.gray-domain-search form > .additional {
  position: relative;
  z-index: 10;
}
.gray-domain-search form > .additional a {
  text-decoration: underline !important;
}
.gray-domain-search form > .additional > p.price {
  margin-top: 20px;
}
.gray-domain-search form > .additional > p.price .strike {
  text-decoration: line-through;
}
.gray-domain-search form > .additional > p.price .sale-price {
  font: 500 22px/30px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #11b049;
}
.gray-domain-search form > .additional > p.price .saving {
  color: #ff4536;
}
.gray-domain-search form > .additional > p.small {
  font-size: 11px;
  color: #555555;
}
.gray-domain-search form > .additional > .sell {
  font: 400 16px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.gray-domain-search form > .additional > .sell strong {
  font-weight: 600;
  color: #1a82da;
}
.app-landing.page .sharing {
  margin-top: 20px;
}
.app-landing.page > .landing-domain-search {
  background: #eeeeee;
  /*border-bottom: 2px solid #DDD;*/

  margin-bottom: 50px;
  position: relative;
}
.app-landing.page > .landing-domain-search form {
  position: relative;
  height: 300px;
  margin: 0px;
  padding: 0px;
}
.app-landing.page > .landing-domain-search form > .bg-landing-search {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 55px;
}
.app-landing.page > .landing-domain-search form > p.intro {
  position: absolute;
  left: 224px;
  top: 80px;
  font: 400 15px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
  z-index: 3;
}
.app-landing.page > .landing-domain-search form > .additional {
  position: absolute;
  left: 224px;
  top: 186px;
  z-index: 3;
}
.app-landing.page > .landing-domain-search form > .additional a {
  text-decoration: underline;
}
.app-landing.page > .landing-domain-search form > .additional > .sell {
  font: 400 16px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.app-landing.page > .landing-domain-search form > .additional > .sell strong {
  font-weight: 600;
  color: #1a82da;
}
.app-landing.page > .landing-domain-search form input[type=text] {
  position: absolute;
  left: 210px;
  top: 110px;
  z-index: 10;
  width: 380px;
  height: 50px;
  border: 3px solid #e4e4e4;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 25px;
  text-indent: 4px;
}
.app-landing.page > .landing-domain-search form input[type=text]::-webkit-input-placeholder {
  color: #DDD;
  vertical-align: middle;
}
html.chrome .app-landing.page > .landing-domain-search form input[type=text] {
  height: 46px;
}
html.chrome .app-landing.page > .landing-domain-search form input[type=text]::-webkit-input-placeholder {
  color: #DDD;
  position: relative;
}
.app-landing.page > .landing-domain-search form > button[type=submit] {
  position: absolute;
  width: 92px;
  height: 92px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  left: 560px;
  top: 94px;
  z-index: 20;
  background-color: #ff4536;
  border: 4px solid #ff4536;
}
.app-landing.page > .landing-domain-search form > button[type=submit] > i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
}
.app-landing.page > .landing-domain-search form > button[type=submit]:hover {
  background-color: #1a82da;
  border-color: #0f4c7f;
}
.app-landing.page > .landing-domain-search form > button[type=submit]:active {
  border-color: #000000;
  background-color: #555555;
}
.app-landing.page > .landing-domain-search form > .app-icon {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 30px;
  width: 200px;
}
.app-landing.page > .landing-domain-search form > .app-icon > .bg-landing-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -100px;
  margin-left: -100px;
}
.app-landing.page > .landing-domain-search form > .app-icon > .icon {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: center center;
}
.block-text a {
  color: #1a82da;
  text-decoration: underline;
}
.block-text a:hover {
  text-decoration: none;
}
.block-text .btn {
  text-decoration: none;
}
.block-text h2 {
  color: #ff4536;
  font-weight: 500;
}
.block-text h2,
.block-text h3 {
  margin-bottom: 10px;
}
.block-text p.big {
  font: 400 15px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
}
.block-text p,
.block-text h2,
.block-text h3,
.block-text hr,
.block-text ul,
.block-text ol,
.block-text .alert {
  margin-right: 40px;
}
.block-text img.img-left {
  float: left;
  margin-right: 20px;
}
.block-text .price .compare-at-price {
  color: #ff4536;
  font: 500 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline-block;
}
.block-text .price .sale-price {
  color: #11b049;
  font-weight: 600;
  display: inline-block;
}
.block-text .price .saving {
  display: inline-block;
  color: #999999;
}
.block-text .price .strike {
  text-decoration: line-through;
}
table.invoices td {
  border-right: 1px solid #eeeeee;
}
table.invoices .sortable {
  width: 120px;
}
table.invoices .sortable a {
  text-decoration: underline;
}
table.invoices .sortable a:hover {
  text-decoration: none;
}
table.invoices td .domains {
  display: inline-block;
  width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}
table.invoices td .amount {
  font: 400 12px/20px 'monaco', monospace;
}
section.invoices header > .right label {
  position: relative;
  top: -2px;
  display: inline-block;
  right: 4px;
}
section.invoices header > .right select {
  width: 100px;
}
.row.screencast {
  margin: 40px 0px;
}
.row.screencast h2 {
  margin-bottom: 10px;
}
section.market {
  position: relative;
}
section.market .categories li.active a {
  /*background: @blue;*/

  color: #1a82da !important;
  text-shadow: none !important;
  font-weight: 600;
}
section.market > .left {
  position: absolute;
  left: 0px;
  top: 0px;
}
section.market > .left .social {
  position: relative;
  left: 30px;
  top: 10px;
}
section.market > .right {
  margin-left: 240px;
}
section.market .apps > .app {
  float: left;
  width: 220px;
  margin-right: 20px;
  margin-bottom: 20px;
  height: 240px;
}
section.market .apps > .app h4 {
  margin-bottom: 12px;
}
section.market .apps > .app p {
  color: #555555;
}
section.market .apps > .app > .image {
  height: 120px;
  margin-bottom: 10px;
  background: #eeeeee;
  display: block;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
section.market .apps > .app > .image > .bg-landing-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -100px;
  margin-top: -100px;
}
section.market .apps > .app > .image > .size {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
section.market .apps > .app:hover > .image {
  background-color: #FFF;
}
.page.login input[type=radio],
.page.login input[type=checkbox] {
  position: relative;
  top: -3px;
}
.page.login .accept-terms label {
  position: relative;
  top: -2px;
}
table.pricelist .strike {
  /*text-decoration: line-through;*/

}
table.pricelist td {
  vertical-align: middle;
}
table.pricelist a.tld {
  font: 500 16px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table.pricelist .normal-price,
table.pricelist .sale-price {
  display: block;
  font: 500 25px/25px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table.pricelist .normal-price > .currency-code,
table.pricelist .sale-price > .currency-code {
  font: 500 11px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  top: -4px;
  left: -3px;
}
table.pricelist .normal-price.sale-price,
table.pricelist .sale-price.sale-price {
  color: #11b049;
}
table.pricelist .usually-price {
  color: #999999;
  display: block;
}
.screenshots {
  height: 500px;
  overflow: hidden;
  position: relative;
}
.screenshots table {
  position: absolute;
  left: 0px;
  top: 0px;
}
.screenshots .arrow {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  background: #555555;
  color: #FFF;
  text-align: center;
  font: 500 40px/55px "Helvetica Neue", Helvetica, Arial, sans-serif;
  z-index: 10;
  cursor: pointer;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.screenshots .arrow.previous {
  left: 30px;
}
.screenshots .arrow.next {
  right: 30px;
}
.screenshots .arrow:hover {
  background-color: #1a82da;
}
.screenshots > .todo {
  position: absolute;
  left: 20px;
  top: 20px;
  font: 400 12px/20px 'monaco', monospace;
  color: #FFF;
}
.screenshots .screenshot {
  position: relative;
  width: 960px;
  height: 500px;
  z-index: 1;
}
.screenshots .screenshot img {
  position: absolute;
  left: 50%;
  margin-left: -337px;
  top: 0px;
}
.screenshots .screenshot p.caption {
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0px;
  text-align: center;
}
.actionbox {
  background-color: #eeeeee;
  margin: 20px 50px 20px 0px;
  padding: 20px;
  border-bottom: 1px solid #999999;
}
.actionbox .btn {
  position: relative;
  top: -2px;
}
.actionbox input[type=text] {
  position: relative;
  top: 3px;
}
/* New Search */
#nsearch {
  position: relative;
  padding-bottom: 100px;
  min-height: 400px;
}
#nsearch .white-cover {
  position: absolute;
  top: 0px;
  width: 250px;
  right: 0px;
  height: 280px;
  background-color: #FFF;
  z-index: 3;
}
#nsearch .widesearch {
  position: relative;
  z-index: 10;
  padding: 70px 0px 50px 0px;
}
#nsearch .widesearch .filters {
  position: absolute;
  width: 600px;
  top: 170px;
  left: 50%;
  margin-left: -270px;
  text-align: center;
}
#nsearch .widesearch .filters div,
#nsearch .widesearch .filters label,
#nsearch .widesearch .filters input,
#nsearch .widesearch .filters select {
  display: inline-block;
}
#nsearch .widesearch .filters select {
  padding: 0px;
  border: 0px;
  width: 200px;
  position: relative;
  top: 3px;
  left: 2px;
}
#nsearch .widesearch .filters input {
  position: relative;
  top: -1px;
}
#nsearch .widesearch .filters span.separator {
  color: #CCC;
}
#nsearch #search-ctrls {
  position: fixed;
  left: 50%;
  margin-left: 240px;
  top: 80px;
  width: 240px;
  text-align: center;
  z-index: 1;
}
#nsearch #search-ctrls a#new-search {
  font: 400 15px/40px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1a82da;
  text-decoration: underline;
  cursor: pointer;
}
#nsearch #search-ctrls a#new-search:hover {
  text-decoration: none;
}
#nsearch #search-ctrls > .unavailable .filter,
#nsearch #search-ctrls > .unavailable label {
  display: inline-block;
}
#nsearch #search-ctrls > .unavailable .filter {
  position: relative;
  top: -1px;
  margin-right: 4px;
}
#nsearch #cart {
  z-index: 10;
  border: 1px solid #CCC;
  position: fixed;
  left: 50%;
  margin-left: 250px;
  margin-top: 70px;
  right: 0px;
  background: #FFF;
}
#nsearch #cart form {
  margin: 0px;
  padding: 0px;
}
#nsearch #cart div.inner {
  border-bottom-color: #000;
  background: #FFF;
}
#nsearch #cart div.inner h4 {
  text-align: center;
  text-shadow: 0px 1px 0px #FFF;
  padding: 4px 10px;
  color: #333;
  border-bottom: 1px solid #DDD;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #AAA;
  background: #EEE;
}
#nsearch #cart ul {
  padding: 0px;
  margin: 0px;
}
#nsearch #cart ul li {
  list-style-type: none;
  margin: 0px;
  background: #FFF;
  padding: 4px 10px 8px 10px;
  border-top: 1px dashed #DDD;
  position: relative;
}
#nsearch #cart ul li.hide {
  display: none !important;
}
#nsearch #cart ul li h5 {
  font-size: 15px;
  font-weight: 500;
  color: #777;
  margin-bottom: 2px;
  margin-right: 20px;
  line-height: 23px;
}
#nsearch #cart ul li h5 span.domain-text {
  display: inline-block;
  max-width: 120px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: top;
}
#nsearch #cart ul li div.conditions {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  background: #EEE;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  line-height: 24px;
  font-weight: 600;
  text-indent: 2px;
  text-align: center;
  font-family: georgia;
  color: #FFF;
}
#nsearch #cart ul li div.conditions div.tip {
  z-index: 100;
  position: absolute;
  width: 160px;
  text-align: left;
  top: -10px;
  left: -190px;
  padding: 10px;
  background: #333;
  font-weight: 400;
  font-family: 'Helvetica Neue', Sans-Serif;
  font-size: 12px;
  line-height: 15px;
  display: none;
}
#nsearch #cart ul li div.conditions div.tip div.corner {
  display: block;
  background: url('/images/bg.tip.corner.png') no-repeat top left;
  width: 5px;
  height: 10px;
  position: absolute;
  top: 17px;
  right: -5px;
  z-index: 101;
}
#nsearch #cart ul li a.remove {
  display: none;
}
#nsearch #cart ul li span.price {
  display: inline-block;
  color: #AAA;
  margin-top: -2px;
}
#nsearch #cart ul li span.price span.currency {
  font-size: 10px;
  margin-left: 3px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #BBB;
}
#nsearch #cart ul li span.price > .per-year {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  color: #BBB;
}
#nsearch #cart ul li:first-child {
  border-top: 0px;
}
#nsearch #cart ul li:hover {
  background: #FFF;
}
#nsearch #cart ul li:hover h5 {
  color: #333;
}
#nsearch #cart ul li:hover div.conditions {
  background-color: #AAA;
  cursor: default;
}
#nsearch #cart ul li:hover div.conditions:hover div.tip {
  display: block;
}
#nsearch #cart ul li:hover a.remove {
  display: inline-block;
  color: #ff5c5c;
  cursor: pointer;
}
#nsearch #cart ul li:hover a.remove:hover {
  text-decoration: underline;
}
#nsearch #cart ul li.removing a.remove,
#nsearch #cart ul li.removing h5,
#nsearch #cart ul li.removing div.conditions {
  opacity: .6;
}
#nsearch #cart ul li .removing-indicator {
  display: none;
}
#nsearch #cart ul li.removing .removing-indicator {
  display: inline;
}
#nsearch #cart a.maximum {
  display: block;
  text-align: center;
  font-size: 9px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration: none;
  padding: 7px 0px;
  border-top: 1px solid #DDD;
  color: #666;
  background: #F5F5F5;
}
#nsearch #cart a.maximum:hover {
  text-decoration: underline;
  background: #FFF;
  color: #333;
}
#nsearch #cart a.maximum.hide {
  display: none !important;
}
#nsearch #cart div.total {
  border-top: 1px solid #DDD;
  background: #333;
  padding: 10px;
  font-size: 18px;
  position: relative;
  text-shadow: 0px 1px 0px #000;
}
#nsearch #cart div.total span.total-text {
  font-size: 12px;
  position: relative;
  margin-right: 4px;
  left: 0px;
  top: -1px;
  color: #CCC;
}
#nsearch #cart div.total span.currency {
  margin-left: 0px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: .5;
  text-shadow: 0px 0px 0px 0;
}
#nsearch #cart div.total .btn {
  position: absolute;
  right: 10px;
  top: 5px;
}
#nsearch #cart div.total span.value {
  color: #FFF;
}
#nsearch #results.hide-unavailable li[data-state='unavailable'] {
  display: none;
}
#nsearch #results > .preloader {
  text-align: left;
  font: 400 22px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999999;
}
#nsearch #results > .preloader > .loader-image {
  display: inline-block;
  width: 43px;
  height: 11px;
  background: url('../images/loading-dots.gif') no-repeat top left;
  position: relative;
  margin-right: 10px;
}
#nsearch #results ul {
  margin: 0px;
  padding: 0px;
}
#nsearch #results ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
#nsearch #results ul li div.result {
  position: relative;
  /*width: 600px;*/

  border: 1px solid #FFF;
  border-bottom: 1px dotted #DDD;
}
#nsearch #results ul li div.result div.inner {
  position: relative;
  height: 50px;
}
#nsearch #results ul li div.result div.status {
  position: absolute;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  background: #eeeeee url('/images/loading.eee.gif') no-repeat center center;
  top: 9px;
  left: 9px;
}
#nsearch #results ul li div.result h4.domain,
#nsearch #results ul li div.result p.purchase-message {
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  position: relative;
  color: #AAA;
  left: 52px;
}
#nsearch #results ul li div.result h4.domain span.result,
#nsearch #results ul li div.result p.purchase-message span.result {
  font-weight: 600;
}
#nsearch #results ul li div.result div.purchase-options {
  position: absolute;
  right: 15px;
  top: -5px;
  line-height: 50px;
  color: #AAA;
  text-align: right;
  font-size: 13px;
}
#nsearch #results ul li div.result div.purchase-options span.usually-price {
  color: #777;
  font-weight: 600;
  text-decoration: line-through;
}
#nsearch #results ul li div.result div.purchase-options span.price {
  font-weight: 400;
  font-size: 22px;
  color: #777;
  position: relative;
  top: 3px;
}
#nsearch #results ul li div.result h4.domain,
#nsearch #results ul li div.result p.purchase-message,
#nsearch #results ul li div.result div.purchase-options {
  pointer-events: none;
}
#nsearch #results ul li div.result span.domain-text {
  white-space: nowrap;
}
#nsearch #results ul li div.result[data-state='available'] {
  cursor: pointer;
  background: #FFF;
  border-bottom: 1px solid #DDD;
}
#nsearch #results ul li div.result[data-state='available'] div.status {
  background: #11b049 url('/images/icon.happy-face.png') no-repeat center center;
}
#nsearch #results ul li div.result[data-state='available'] h4.domain,
#nsearch #results ul li div.result[data-state='available'] p.purchase-message {
  color: #888;
}
#nsearch #results ul li div.result[data-state='available'] h4.domain span.result,
#nsearch #results ul li div.result[data-state='available'] p.purchase-message span.result {
  color: #666;
}
#nsearch #results ul li div.result[data-state='available'] p.purchase-message {
  display: none;
}
#nsearch #results ul li div.result[data-state='available'] button.add-to-cart {
  position: absolute;
  right: 15px;
  top: 15px;
  display: none;
}
.no-touch #nsearch #results ul li div.result[data-state='available']:hover {
  background-color: #1a82da;
  border-color: #0f4c7f;
}
.no-touch #nsearch #results ul li div.result[data-state='available']:hover div.status {
  background: #0f4c7f url('/images/icon.cart.fff.png') no-repeat center center;
}
.no-touch #nsearch #results ul li div.result[data-state='available']:hover p.purchase-message {
  display: block;
  color: #FFF;
}
.no-touch #nsearch #results ul li div.result[data-state='available']:hover p.purchase-message span.result {
  color: #FFF;
}
.no-touch #nsearch #results ul li div.result[data-state='available']:hover p.purchase-message span.price {
  color: #0f4c7f;
}
.no-touch #nsearch #results ul li div.result[data-state='available']:hover button.add-to-cart {
  display: block;
}
.no-touch #nsearch #results ul li div.result[data-state='available']:hover div.purchase-options,
.no-touch #nsearch #results ul li div.result[data-state='available']:hover h4.domain {
  display: none;
}
#nsearch #results ul li div.result[data-state='available'].adding,
.no-touch #nsearch #results ul li div.result[data-state='available'].adding:hover {
  border: 1px solid #FFF;
  border-bottom: 1px dotted #CCC;
  background: #FFF;
  color: #AAA;
}
#nsearch #results ul li div.result[data-state='available'].adding p.purchase-message,
.no-touch #nsearch #results ul li div.result[data-state='available'].adding:hover p.purchase-message,
#nsearch #results ul li div.result[data-state='available'].adding div.purchase-options,
.no-touch #nsearch #results ul li div.result[data-state='available'].adding:hover div.purchase-options {
  display: none;
}
#nsearch #results ul li div.result[data-state='available'].adding h4.domain,
.no-touch #nsearch #results ul li div.result[data-state='available'].adding:hover h4.domain {
  display: block;
}
#nsearch #results ul li div.result[data-state='available'].adding div.status,
.no-touch #nsearch #results ul li div.result[data-state='available'].adding:hover div.status {
  background: #eeeeee url('/images/loading.eee.gif') no-repeat center center;
}
#nsearch #results ul li div.result[data-state='unavailable'] div.status {
  background: #cccccc url('/images/icon.sad-face.png') no-repeat center center;
}
#nsearch #results ul li div.result[data-state='unavailable'] h4.domain {
  color: #AAA;
  font-size: 16px;
}
#nsearch #results ul li div.result[data-state='unavailable'] h4.domain span.result {
  color: #888;
}
#nsearch #results ul li div.result[data-state=down] div.status {
  background: #cccccc url('/images/icon.sad-face.png') no-repeat center center;
}
#nsearch #results ul li div.result[data-state=down] h4.domain .tld {
  font-weight: 600;
}
html.mozilla #nsearch #results ul li div.result[data-state=down] h4.domain {
  top: 0px !important;
}
#nsearch #results ul li div.result[data-state='old-search-link'] div.status {
  background: #ff4536 url('/images/icon.sad-face.png') no-repeat center center;
}
#nsearch #results ul li div.result[data-state='old-search-link'] h4.domain a {
  text-decoration: underline;
  color: #ff4536;
}
#nsearch #results ul li div.result[data-state='old-search-link'] h4.domain a:hover {
  text-decoration: none;
  color: #ff4536;
}
#nsearch #results ul li div.result[data-state='in-cart'] p.purchase-message,
#nsearch #results ul li div.result[data-state='in-cart'] button.add-to-cart {
  display: none;
}
#nsearch #results ul li div.result[data-state='in-cart'] div.status {
  background: #1a82da url('/images/icon.cart.fff.png') no-repeat center center;
}
#nsearch #results ul li div.result[data-state='in-cart'] h4.domain {
  color: #1a82da;
}
#nsearch #results ul li div.result.highlight {
  border: 1px solid #AAA;
}
form.big-form .control-group .help-inline {
  display: inline;
}
form.big-form .control-group .error-inline {
  display: inline;
}
form.big-form .control-group.error .help-inline {
  display: none;
}
form.big-form .control-group.error .error-inline {
  display: inline;
  color: #ff4536;
}
form.big-form .control-group p.help-block {
  display: none;
}
form.big-form .control-group.focused p.help-block {
  display: block;
}
.review-purchase {
  background-color: #eeeeee;
  padding: 20px 0px;
  border-bottom: 1px solid #d5d5d5;
}
.review-purchase .item {
  font: 500 18px/22px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.review-purchase .item small {
  font-size: 70%;
}
.review-purchase .amounts {
  margin-bottom: 20px;
}
.review-purchase .amounts .amount {
  margin-bottom: 10px;
}
.review-purchase .amounts .amount > .name {
  display: inline-block;
  width: 60px;
  color: #999999;
  font: 400 12px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.review-purchase .amounts .amount > .value {
  font: 500 17px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.review-purchase .amounts .amount > .value > .currency {
  display: inline-block;
  position: relative;
  font: 500 10px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999999;
}
#autotransfer .authorize .help-inline {
  position: relative;
  top: 3px;
}
table.basket-list thead th {
  color: #999999;
  font-weight: 400 !important;
}
table.basket-list tbody .referral {
  width: 400px;
  padding-top: 10px;
}
table.basket-list tbody td.purchase {
  padding-top: 15px;
}
table.basket-list tbody tr.saving td {
  padding: 12px 0px;
}
table.basket-list tbody tr.saving p.success {
  padding-top: 6px;
  color: #11b049;
  text-align: center;
  font: 500 18px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table.basket-list tbody td.voucher form {
  margin-left: 445px;
}
table.basket-list tbody tr.domain .tld {
  width: 600px;
}
table.basket-list tbody tr.domain h4 {
  margin-bottom: 5px;
  color: #1a82da;
}
table.basket-list tbody tr.domain p {
  color: #999999;
  margin: 0px;
}
table.basket-list tbody tr.domain td.price,
table.basket-list tbody tr.domain td.remove {
  vertical-align: middle;
}
table.basket-list tbody tr.domain button.remove {
  border: 0px;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  font: 500 14px/10px "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-indent: 1px;
  position: relative;
  top: 4px;
  color: #ff4536;
}
table.basket-list tbody tr.domain button.remove:hover {
  color: #FFF;
  background-color: #ff4536;
}
table.basket-list tbody tr.domain td.price {
  font: 400 14px/20px 'monaco', monospace;
  color: #555555;
}
table.basket-list tbody tr.domain td.price > .currency-code {
  font: 500 11px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999999;
}
table.basket-list tbody tr.total .text,
table.basket-list tbody tr.tax .text,
table.basket-list tbody tr.subtotal .text {
  color: #999999;
  text-align: right;
  padding-right: 10px;
}
table.basket-list tbody tr.total {
  font: 500 18px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table.basket-list tbody tr.total td {
  padding: 12px 0px;
}
.app-listing {
  border-bottom: 1px solid #EEE;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
.app-listing .app-icon {
  width: 140px;
  height: 140px;
  background-color: #EEE;
  float: left;
  margin-right: 20px;
  position: relative;
}
.app-listing .app-icon .image {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.app-listing .info {
  float: left;
  margin-right: 80px;
  width: 400px;
}
.app-listing .info h4 {
  margin: 10px 0px;
}
.app-listing .right {
  position: absolute;
  top: 10px;
  right: 0px;
}
#dm-app-install .app-icon {
  width: 140px;
  height: 140px;
  background-color: #EEE;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
}
#dm-app-install .app-icon .image {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
/*
jquery autocomplete plugin
https://github.com/agarzola/jQueryAutocompletePlugin)
*/
.ac_results {
  padding: 0px;
  background-color: white;
  border: 1px solid #eee;
  border-top: 0px;
  overflow: hidden;
  z-index: 99999;
  margin-top: -4px;
  width: 160px !important;
}
.ac_results ul {
  width: 100%;
  list-style-position: outside;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ac_results li {
  margin: 0px;
  padding: 4px 5px;
  cursor: default;
  display: block;
  font: 400 12px/16px "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow: hidden;
}
.ac_over {
  background-color: #1a82da;
  color: white;
}
form#dnsForm td {
  position: relative;
}
form#dnsForm label.error {
  position: absolute;
  left: 10px;
  background-color: #ff4536;
  font: 400 11px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0px 3px;
  color: #FFF;
  display: block;
}
#drop-zone {
  margin-top: 2rem;
}
#drop-zone h5 {
  margin-top: 1rem;
  margin-bottom: .25rem;
  text-align: center;
}
#drop-zone .images {
  list-style-position: outside;
  padding-left: 21px;
  list-style-type: "\f03e";
  font-family: FontAwesome;
  margin-top: .25rem;
}
#drop-zone li {
  padding-left: 5px;
  margin-top: 0;
}
#drop-zone .browse {
  display: block;
  font-size: 1.3rem;
  width: 99%;
  height: 3rem;
  padding-left: 1%;
  padding-top: .65rem;
  color: #FFF;
  cursor: pointer;
}
#drop-zone .upload {
  font-size: 1.3rem;
  color: white;
  border: 1px;
  background-color: #357FC1;
  text-align: left;
  width: 100%;
  height: 3rem;
  padding-left: .75rem;
  margin-top: 0;
  margin-left: 0;
  cursor: pointer;
}
#drop-zone .upload::after {
  content: none;
  opacity: .85;
  position: absolute;
  left: 22%;
  font-family: FontAwesome;
}
#drop-zone .browse::after {
  content: none;
  opacity: .85;
  left: 20%;
  padding-left: 63.2%;
  font-family: FontAwesome;
}
#drop-zone input[type="file"] {
  display: none;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.hide-text {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 28px;
  /* Make inputs at least the height of their button counterpart */

  /* Makes inputs behave like true block-level elements */

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.required:after,
.required-append:after,
.required-prepend:before {
  content: '*';
  font-weight: bold;
  color: #F30;
}
.optional:after,
.optional-append:after,
.optional-prepend:before {
  content: '(optional)';
  color: #CCC;
}
.no-wrap {
  white-space: nowrap;
}
input::-webkit-input-placeholder {
  color: #CCC;
  vertical-align: middle;
  padding-top: 3px;
}
.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.valid input,
input.valid,
.valid textarea,
textarea.valid {
  background-repeat: no-repeat;
  background-image: url("/img/icon-ok-green.png?1");
  background-position: right top;
}
.card-type {
  -webkit-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.card-type.off {
  opacity: .2;
}
.secure {
  background: #FFE;
  color: #860;
  padding: 20px;
  border: 1px solid #EEB;
  border-radius: 20px;
  margin-bottom: 20px;
}
td :last-child,
th :last-child {
  margin-bottom: 0;
}
.text-left,
.table th.text-left,
.table td.text-left {
  text-align: left;
}
.text-right,
.table th.text-right,
.table td.text-right {
  text-align: right;
}
.text-center,
.table th.text-center,
.table td.text-center {
  text-align: center;
}
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
  background-color: #f5f5f5;
}
.btn-text {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}
.modal > form {
  margin: 0;
}
abbr,
acronym {
  font-size: 85%;
}
.domain-search {
  position: relative;
  z-index: 5;
  margin: -18px 0 0;
  padding: 18px 46px 0 0;
}
.domain-search input[type="text"] {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  border: 3px solid #e4e4e4;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  line-height: 56px;
  font-size: 28px;
  padding: 1px 46px 1px 10px;
}
.domain-search button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #ff4536;
  border: 4px solid #ff4536;
  text-align: center;
}
.domain-search button[type="submit"]:hover {
  background-color: #1a82da;
  border-color: #0f4c7f;
}
.domain-search button[type="submit"]:active {
  border-color: #000000;
  background-color: #555555;
}
.domain-search button[type="submit"] .icon-search-big {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
}
.domain-search .icon-arrow-search {
  position: absolute;
  left: -40px;
  top: 25px;
}
.tld-search {
  width: 420px;
}
.wide-search form {
  padding: 70px 0 50px;
  width: 600px;
  margin: 0 auto;
}
.wide-search a {
  text-decoration: underline;
}
.wide-search .intro {
  font-size: 22px;
  line-height: 1.6;
  margin-left: -40px;
}
.sign-in {
  position: absolute;
  top: 52px;
  right: -80px;
}
.sign-in .dropdown-toggle {
  padding: 10px 18px;
  outline: 0;
}
.sign-in .dropdown-menu {
  border-top: 0;
  padding: 0;
  top: 28px;
}
.sign-in form {
  margin: 0;
}
.sign-in fieldset {
  padding: 10px;
}
.sign-in small {
  display: block;
  clear: both;
  overflow: auto;
  background: #F6F6F6;
  border-top: 1px solid #EEE;
  font-size: 11px;
  line-height: 100%;
}
.sign-in small a {
  color: #AAA;
  padding: 4px 10px;
  clear: none;
}
.sign-in input {
  overflow-x: auto;
}
.signed-in {
  position: absolute;
  right: -70px;
  top: 50px;
  font: 400 12px/15px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999999;
}
.signed-in form {
  display: inline;
  padding: 0;
  margin: 0;
}
.signed-in button {
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: #333333;
}
.signed-in button:hover {
  color: #1a82da;
  text-decoration: underline;
}
.installed-apps {
  list-style: none;
  margin: 0;
  overflow: auto;
}
.installed-apps li {
  display: inline;
}
.installed-apps li a {
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  padding: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 40px #eeeeee;
  -moz-box-shadow: inset 0 0 40px #eeeeee;
  box-shadow: inset 0 0 40px #eeeeee;
  -webkit-transition: box-shadow 0.15s linear;
  -moz-transition: box-shadow 0.15s linear;
  -ms-transition: box-shadow 0.15s linear;
  -o-transition: box-shadow 0.15s linear;
  transition: box-shadow 0.15s linear;
}
.installed-apps li a:hover {
  -webkit-box-shadow: inset 0 0 40px #ccddee;
  -moz-box-shadow: inset 0 0 40px #ccddee;
  box-shadow: inset 0 0 40px #ccddee;
}
.installed-apps li a img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-text {
  display: inline;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.ntld-search {
  margin: 0 0 30px;
  padding: 60px;
  background: #F6F6F6;
  color: #888;
}
.ntld-search,
.ntld-search input {
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
}
.ntld-search form {
  margin: 0;
}
.ntld-search input {
  height: auto;
  padding: 0 10px;
  border-radius: 10px;
  margin: 0;
  vertical-align: bottom;
}
.ntld-search button {
  margin: 0 0 0 40px;
  background: #F40;
  border: 0 solid #D30;
  border-width: 0 0 4px;
  border-radius: 100px;
  color: #FFF;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  padding: 15px;
  vertical-align: text-bottom;
}
.ntld-search button i {
  vertical-align: baseline;
}
.ntld-search button:hover {
  background: #28D;
  border-color: #06B;
}
.ntld-search button:active {
  border-width: 0 0 2px;
}
.ntld-header {
  padding: 20px 0;
}
.ntld-header h1 {
  font-size: 40px;
  line-height: 1.2;
}
.ntld-logo {
  width: 128px;
  float: left;
  margin: 5px 20px 20px 5px;
}
i.ntld-logo {
  display: inline-block;
  border-radius: 100%;
  background: #39E;
  color: #FFF;
  text-shadow: 0 3px 0 #27B;
  height: 108px;
  border-top: 10px solid #4AF;
  border-bottom: 10px solid #28D;
  font-size: 40px;
  line-height: 102px;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}
i.ntld-logo:before {
  content: '.';
  color: #FD0;
}
i.ntld-logo-6,
i.ntld-logo-7 {
  font-size: 28px;
  letter-spacing: -1px;
}
i.ntld-logo-8,
i.ntld-logo-9,
i.ntld-logo-10,
i.ntld-logo-11,
i.ntld-logo-12,
i.ntld-logo-13,
i.ntld-logo-14 {
  font-size: 24px;
  letter-spacing: -1px;
  font-weight: normal;
}
.ntld-subscribe {
  padding: 20px 0 10px;
  border-radius: 10px;
  margin: 20px 0;
  background: #F6F6F6;
}
.ntld-subscribe .control-group {
  margin-bottom: 10px;
}
.ntld-content dd {
  margin-bottom: 10px;
}
.ntld-table {
  margin-bottom: 40px;
}
.ntld-table td {
  text-align: center;
}
.ntld-table td a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1;
  color: #666;
}
.ntld-table td a:hover {
  color: #F40;
}
.ntld-nav .active a,
.ntld-nav .active a:hover {
  background: #1a82da;
}
.ntld-nav .active a:after {
  display: block;
  float: right;
  content: '〉';
  font-weight: bold;
}
.ntld-nav small {
  color: #CCC;
  font-size: 90%;
  padding: 0 0.5em;
}
.ntld-nav .active small {
  color: #83bef0;
}
.logo img.partner-logo-text {
  margin: 0 2px;
}
.search-results {
  margin-left: 0;
  list-style: none;
}
.search-results li {
  color: #AAA;
  position: relative;
  border: 1px solid transparent;
  border-bottom: 1px dotted #DDD;
  padding: 0 10px 0 57px;
}
.search-results li,
.search-results li h4,
.search-results li div {
  font-size: 16px;
  line-height: 50px;
}
.search-results li.available {
  cursor: pointer;
  color: #666;
}
.search-results li.taken,
.search-results li.error {
  color: #888;
}
.search-results li.in-cart {
  color: #1a82da;
}
.search-results li.timeout {
  cursor: pointer;
}
.search-results li.pinned {
  border: 1px solid #CCC;
}
.search-results li.pinned.available h4:after {
  font-weight: normal;
  color: #11b049;
  content: ' is available!';
}
.search-results h4 {
  font-weight: normal;
}
.search-results li.available h4,
.search-results li.taken h4,
.search-results li.in-cart h4,
.search-results li.error h4,
.search-results .add-to-cart {
  font-weight: bold;
}
.search-results h4,
.search-results .add-to-cart,
.search-results .price {
  pointer-events: none;
}
.search-results li.timeout h4:after {
  content: ' is taking a while...';
}
.no-touch .search-results li.timeout:hover h4:after {
  content: ' is taking a while... Try again?';
}
.search-results li.error h4:after {
  font-weight: normal;
  content: ' couldn\'t be checked.';
}
.search-results .add-to-cart {
  display: none;
}
.no-touch .search-results li.available:hover {
  background-color: #1a82da;
  border: 1px solid #0f4c7f;
  color: #FFF;
}
.no-touch .search-results li.available:hover h4 {
  display: none;
}
.no-touch .search-results li.available:hover .add-to-cart {
  display: block;
}
.search-results li:before {
  content: ' ';
  display: block;
  position: absolute;
  top: 9px;
  left: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eeeeee url('/images/loading.eee.gif') no-repeat 50% 50%;
}
.search-results li.available:before {
  background-color: #11b049;
  background-image: url('/images/icon.happy-face.png');
}
.no-touch .search-results li.available:hover:before {
  background-color: #0f4c7f;
  background-image: url('/images/icon.cart.fff.png');
}
.search-results li.taken:before,
.search-results li.error:before {
  background-color: #CCC;
  background-image: url('/images/icon.sad-face.png');
}
.search-results li.in-cart:before {
  background-color: #1a82da;
  background-image: url('/images/icon.cart.fff.png');
}
.search-results .price {
  position: absolute;
  top: 0;
  right: 10px;
  display: none;
  font-size: 22px;
  color: #777;
}
.search-results .price del,
.search-results .price ins {
  font-size: 13px;
  line-height: 50px;
  vertical-align: middle;
}
.search-results .price del {
  text-decoration: line-through;
  font-weight: bold;
}
.search-results .price ins {
  color: #AAA;
  text-decoration: none;
}
.search-results li.available .price {
  display: block;
}
.no-touch .search-results li.available:hover .price {
  visibility: hidden;
}
.search-results-padding {
  background: transparent;
  border: 0;
  padding: 0 0 0 58px;
  margin: 0;
  font-size: 16px;
  font-family: inherit;
  line-height: 52px;
  color: transparent;
}
ul.search-results-padding {
  list-style: none;
}
ul.search-results-padding li {
  line-height: inherit;
}
.selected-currency {
  display: inline-block;
}
.selected-currency:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 4px solid #333;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom: 0;
  margin-bottom: 2px;
  margin-left: 2px;
  opacity: .3;
}
footer .selected-currency:after {
  border-top-color: #ccc;
}
.kb-search {
  position: relative;
  padding: 0 30px;
  margin: 30px 0;
}
.kb-search input {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 46px;
  border: 3px solid #e4e4e4;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  line-height: 46px;
  font-size: 18px;
  padding: 1px 100px 1px 10px;
}
.kb-search button {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  height: 46px;
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 18px;
  line-height: 100%;
}
.jumbotron-checkout-complete {
  background: #4b4;
  padding: 40px;
}
.jumbotron-checkout-complete h1 {
  color: #fff;
  font-size: 3em;
}
.jumbotron-checkout-complete p {
  margin-top: 1em;
}
.jumbotron-checkout-complete .btn {
  padding: 9px 14px;
}
.template-preview-container {
  background: #f9f9f9;
  margin: 40px 0;
  padding: 40px 0;
}
.template-preview-title {
  font-weight: normal;
  margin-bottom: 40px;
  color: #666;
}
.template-preview {
  background: #fff;
  padding: 20px;
  margin: 0 -20px;
  box-shadow: 0 0 20px #eee;
}
.site-search {
  position: relative;
}
.site-search :-moz-placeholder {
  color: #999999;
}
.site-search ::-webkit-input-placeholder {
  color: #999999;
}
.site-search :-moz-placeholder {
  color: #999999;
}
.site-search ::-webkit-input-placeholder {
  color: #999999;
}
.site-search :-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.site-search ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.site-search :-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.site-search ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.site-search-input {
  display: block;
  width: 100%;
  border: 0;
  background: #555;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 8px;
  margin: -8px;
}
.site-search-input:focus {
  background: #666;
  background: rgba(255, 255, 255, 0.2);
}
input.site-search-input,
input.site-search-input:focus {
  color: #fff !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.site-search:after {
  content: ' ';
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -7px;
  background-image: url("/img/glyphicons-halflings-white.png");
  background-position: -48px 0;
  pointer-events: none;
}
/* Accordion styles for DNS zone rollback function at /dashboard/dns/DOMAIN.
 * This seems to be overriding styles in public/css/bootstrap.css
 */
/* Accordion Open/Close */
.accordion-body {
  display: none;
}
.accordion-group.selected .accordion-body {
  display: block;
}
.shrink-mult {
  display: none;
}
.accordion-group.selected .shrink-mult {
  display: inline;
}
.accordion-group.selected .expand-plus {
  display: none;
}
/* General Styling */
.accordion {
  margin-left: -20px;
}
.accordion-group {
  background: #f9f9f9;
  margin: 1rem;
}
.accordion-toggle {
  font-weight: bold;
}
.accordion-inner {
  border-top: none;
  padding-bottom: 0;
}
.accordion-inner .table-striped {
  color: #888;
}
.accordion-inner .table-striped td {
  border-color: transparent;
}
.accordion-inner .table-striped tr:nth-child(odd) td {
  background: white;
}
.accordion-footer {
  background: #DDD;
  font-weight: bold;
  line-height: 45px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
}
.accordion-footer .form-inline {
  margin-bottom: 0;
}
.accordion-footer .form-inline .btn {
  line-height: 30px;
}
.red-text {
  color: #ff4536;
}
.expand-plus,
.shrink-mult {
  float: right;
  font-size: 1.8em;
  margin-top: -3px;
}
.accordion-heading .accordion-toggle,
.accordion-heading .expand-plus {
  color: #333;
  text-decoration: none;
}
.accordion-heading .shrink-mult {
  color: #ff4536;
  text-decoration: none;
}
