/*!
 * WHMCS Twenty-One Theme
 * Global Stylesheet
 * Copyright (c) 2020 WHMCS Limited
 * https://www.whmcs.com/license/
 */

body {
  font-family: 'Open Sans', sans-serif;
}

html, body {
  height: 100%;
}

section#main-body {
  margin: 0;
  padding: 20px 0;
  min-height: 350px;
}

section#main-content {
  margin-bottom: 60px;
}

.main-content {
  margin-bottom: 60px;
  min-height: 300px;
}

/**
 * -------------------------
 * Password Strength Meter
 * -------------------------
 */
.password-strength-meter .progress {
  margin-bottom: 5px;
}

.password-strength-meter p {
  margin-bottom: 15px;
}

/**
 * -------------------------
 * @section Popups
 * -------------------------
 */
#popup-backdrop {
  background-color: #2E363F;
  padding: 15px;
  height: 100%;
}

.popup-header-padding {
  margin-top: 5px;
  margin-bottom: 5px;
}

/**
 * Helper Alerts
 */
.alert .fas.pull-left {
  margin: -3px 0 0 -3px;
}

.alert .alert-text {
  margin-left: 56px;
}

.card-sidebar .alert {
  padding: 10px 15px;
  margin-bottom: 5px;
}

.sidebar.sidebar-secondary {
  clear: left;
}

/**
 * JsonForm
 */
form[data-role="json-form"] .has-error input.form-control,
form[data-role="json-form"] .has-error textarea.form-control,
form[data-role="json-form"] .has-error select.form-control {
  background-color: #fff0f0;
  transition: 0.2s;
}

form[data-role="json-form"] .has-error .tooltip-inner {
  background-color: #9d2a0b;
}

form[data-role="json-form"] .has-error .tooltip.top .tooltip-arrow {
  border-top-color: #9d2a0b;
}

/**
 * Usage Billing
 */
.modal-metric-pricing .modal-header,
.modal-metric-pricing .modal-body,
.modal-metric-pricing .modal-footer {
  text-align: center !important;
  border: 0;
}

/**
 * Select Account
 */
.select-account {
  margin: 20px auto;
  padding: 0;
  border-top: 1px solid #ddd;
}

.select-account a {
  display: block;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
}

.select-account a.disabled {
  opacity: 0.5;
}

.select-account a:hover {
  background-color: #f6f6f6;
}

.continue-container {
  margin: 40px auto;
  padding: 20px;
  background-color: #f6f6f6;
  border: 1px solid #eee;
  max-width: 500px;
}

/**
 * Invites
 */
.invite-box {
  margin: 20px 0;
  padding: 20px;
  background-color: #f6f6f6;
  border: 1px solid #eee;
}

/**
 * -------------------------
 * @section Main Menu
 * -------------------------
 */
/**
 * -------------------------
 * Printing
 * -------------------------
 */
@media print {
  .sidebar,
  #main-menu,
  #top-nav,
  .header-lined {
    display: none;
  }
  a[href]:after {
    content: "" !important;
  }
}

/**
 * -------------------------
 * Admin Masquerade Notice
 * -------------------------
 */
.admin-masquerade-notice {
  margin: 25px 0 0 auto;
  padding: 4px 10px;
  max-width: 240px;
  font-family: Tahoma;
  font-size: 0.7em;
  text-align: right;
}

.admin-masquerade-notice a {
  text-decoration: underline;
}

a.admin-inline-edit {
  margin-left: 6px;
  font-weight: 400;
  color: #888;
}

a.admin-inline-edit:hover {
  color: #444;
  text-decoration: none;
}

/**
 * -------------------------
 * Licensing Addon
 * -------------------------
 */
.licensing-addon-latest-download h3 {
  margin-top: 0;
}

/**
 * -------------------------
 * @section Form Classes
 * -------------------------
 */
.input-inline {
  display: inline-block;
}

.input-inline-100 {
  width: 100px;
}

.select-inline {
  display: inline-block;
  width: auto;
}

.form-group .field-error-msg {
  display: none;
  font-size: 0.85em;
  color: #cc0000;
}

.form-group.has-error .field-error-msg {
  display: block;
}

#fullpage-overlay {
  display: table;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

#fullpage-overlay .outer-wrapper {
  position: relative;
  height: 100%;
}

#fullpage-overlay .inner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 30%;
  width: 50%;
  margin: -3% 0 0 -25%;
  text-align: center;
}

#fullpage-overlay .msg {
  display: inline-block;
  padding: 20px;
  max-width: 400px;
}

/*
 * We use a larger font-size than the bootstrap default, which requires an increase
 * in the top offset to maintain correct alignment in form control feedback.
 */
.has-feedback label ~ .form-control-feedback {
  top: 27px !important;
}

.has-error button {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/*
 * Language strings which are too long to fit into buttons should be "chopped off" inside the div
 * of that button, instead of "overflowing" outside of the button.  CORE-9272
 */
.btn {
  overflow: hidden;
}

.label {
  max-width: 100%;
  margin-bottom: 5px;
  border-radius: 4px;
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

/**
 * Custom Validation Warning
 */
.is-warning ~ .warning-feedback,
.is-warning ~ .warning-tooltip {
  display: block;
}

.form-control.is-warning {
  border-color: var(--warning);
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='1.0625em' height='1em' viewBox='0 0 17 16'%3e%3cpath fill='%23ffc107' d='M7.938 2.016a.146.146 0 0 0-.054.057L1.027 13.74a.176.176 0 0 0-.002.183c.016.03.037.05.054.06.015.01.034.017.066.017h13.713a.12.12 0 0 0 .066-.017.163.163 0 0 0 .055-.06.176.176 0 0 0-.003-.183L8.12 2.073a.146.146 0 0 0-.054-.057A.13.13 0 0 0 8.002 2a.13.13 0 0 0-.064.016zm1.044-.45a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566z'/%3e%3cpath d='M7.002 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 5.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-warning:focus {
  border-color: var(--warning);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.w-text-09 {
  font-size: 0.9em;
}

.width-fixed-20 {
  width: 20px;
}

.width-fixed-60 {
  width: 60px;
}

.w-hidden {
  display: none;
}

span.caret {
  display: none;
}

.card .bootstrap-switch, .mc-promo-manage .bootstrap-switch, .mc-promo-login .bootstrap-switch {
  word-wrap: initial;
}

.line-height-reduced {
  line-height: 0.8;
}

.iradio_square-blue {
  margin-right: 6px;
}

.cc-payment-form .control-label {
  text-align: right;
}

.primary-bg-color {
  background-color: #f1f1f1;
}

header.header {
  background-color: #fff;
}

header.header .topbar {
  margin: 0;
  padding: 2px 0;
  background-color: #404040;
  color: rgba(255, 255, 255, 0.65);
}

header.header .topbar .btn {
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
}

header.header .topbar .active-client {
  line-height: 1;
}

header.header .topbar .active-client .input-group-text {
  padding: .25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  background-color: transparent;
  border: 0;
}

header.header .topbar .active-client .btn {
  color: rgba(255, 255, 255, 0.65);
}

header.header .topbar .active-client .btn.btn-active-client span {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.65);
}

header.header .logo-img {
  max-width: 400px;
  max-height: 60px;
}

header.header .user-icon {
  font-size: 2em;
  color: #87939f;
}

header.header .btn {
  font-size: 14px;
}

header.header .btn.focus, header.header .btn:focus {
  box-shadow: none;
}

header.header .toolbar {
  flex-direction: row;
}

header.header .toolbar .nav-link {
  padding: .5rem 1rem;
  border-radius: .25rem;
  border: 1px solid #e5e5e5;
  color: #e5e5e5;
  position: relative;
  font-size: 0.9em;
}

header.header .toolbar .nav-link .badge {
  position: absolute;
  top: 2px;
  right: 5px;
  opacity: 0.8;
  font-size: 10px;
  padding: 3px 5px;
  border-radius: 50%;
}

header.header .toolbar .nav-link:hover {
  color: #666;
}

header.header .search {
  width: 325px;
  border: 1px solid #e5e5e5;
  border-radius: .25rem;
}

header.header .search .btn, header.header .search .form-control {
  border: 0;
}

header.header .search .btn {
  color: #a5a5a5;
}

header.header .search:focus-within {
  border-color: #a5a5a5;
}

header.header .main-navbar-wrapper {
  padding: 0;
}

header.header .main-navbar-wrapper .navbar-collapse {
  padding: .5rem 1rem;
}

header.header .navbar a {
  color: #444;
}

header.header .navbar-nav a {
  font-size: 15px;
}

header.header .dropdown-item.active, header.header .dropdown-item:active {
  background-color: #ccc;
}

.master-breadcrumb {
  background-color: #e9ecef;
}

.master-breadcrumb .breadcrumb {
  margin: 0;
  padding: 9px 0;
  font-size: 0.9rem;
}

.primary-content .card, .primary-content .mc-promo-manage, .primary-content .mc-promo-login {
  margin-bottom: 10px;
}

.primary-content .card.mw-540, .primary-content .mw-540.mc-promo-manage, .primary-content .mw-540.mc-promo-login {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.primary-content .card.mw-750, .primary-content .mw-750.mc-promo-manage, .primary-content .mw-750.mc-promo-login {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.primary-content .card-body, .primary-content .mc-promo-manage .content, .mc-promo-manage .primary-content .content, .primary-content .mc-promo-login .content, .mc-promo-login .primary-content .content {
  padding: 20px;
  overflow: auto;
}

@media (min-width: 768px) {
  .primary-content .card-body.extra-padding, .primary-content .mc-promo-manage .extra-padding.content, .mc-promo-manage .primary-content .extra-padding.content, .primary-content .mc-promo-login .extra-padding.content, .mc-promo-login .primary-content .extra-padding.content {
    padding: 1.8rem;
  }
}

@media (min-width: 1200px) {
  .primary-content .card-body.extra-padding, .primary-content .mc-promo-manage .extra-padding.content, .mc-promo-manage .primary-content .extra-padding.content, .primary-content .mc-promo-login .extra-padding.content, .mc-promo-login .primary-content .extra-padding.content {
    padding: 3rem;
  }
}

.primary-content .card-title, .primary-content .promo-container .header h3, .promo-container .header .primary-content h3, .primary-content .mc-promo-manage .panel-heading h3, .mc-promo-manage .panel-heading .primary-content h3, .primary-content .mc-promo-login .panel-heading h3, .mc-promo-login .panel-heading .primary-content h3 {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 22px;
}

footer.footer {
  margin: 0;
  padding: 50px 0 80px;
  background-color: #404040;
  color: #eee;
  font-size: 0.9rem;
}

footer.footer .nav-link {
  color: #eee;
}

footer.footer .btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  line-height: 1.75rem;
  padding: 0 10px;
}

footer.footer .btn-icon {
  padding: 0;
  width: 1.75rem;
  height: 1.75rem;
}

footer.footer .dropdown-item {
  font-size: 0.9em;
}

footer.footer .copyright {
  margin: 30px 0;
  font-size: 0.85rem;
  text-align: center;
}

footer.footer .notices {
  margin: 30px 0;
  font-size: 0.85rem;
  text-align: center;
}

.card .show-on-card-hover, .mc-promo-manage .show-on-card-hover, .mc-promo-login .show-on-card-hover {
  opacity: 0;
  transition: all 0.5s ease;
}

.card:hover .show-on-card-hover, .mc-promo-manage:hover .show-on-card-hover, .mc-promo-login:hover .show-on-card-hover {
  opacity: 1;
}

h1 .show-on-hover,
h2 .show-on-hover,
h3 .show-on-hover,
h4 .show-on-hover,
h5 .show-on-hover,
h6 .show-on-hover {
  opacity: 0;
  transition: all 0.5s ease;
}

h1:hover .show-on-hover,
h2:hover .show-on-hover,
h3:hover .show-on-hover,
h4:hover .show-on-hover,
h5:hover .show-on-hover,
h6:hover .show-on-hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .btn-return-to-admin {
    position: fixed !important;
    top: 425px;
    right: 0;
    padding: 5px 15px !important;
    background-color: #d7d7d7 !important;
    color: #777 !important;
    font-size: 0.9rem !important;
    border-radius: 0 0 3px 3px !important;
    text-decoration: none;
    transform: rotate(90deg);
    transform-origin: top right;
    z-index: 500;
  }
  .btn-return-to-admin:hover {
    background-color: #cdcdcd !important;
    color: #444 !important;
    text-decoration: none;
  }
}

.btn-return-to-admin .floating {
  position: fixed !important;
  top: 425px;
  right: 0;
  padding: 5px 15px !important;
  background-color: #d7d7d7 !important;
  color: #777 !important;
  font-size: 0.9rem !important;
  border-radius: 0 0 3px 3px !important;
  text-decoration: none;
  transform: rotate(90deg);
  transform-origin: top right;
  z-index: 500;
}

.btn-return-to-admin .floating:hover {
  background-color: #cdcdcd !important;
  color: #444 !important;
  text-decoration: none;
}

.form-control:focus {
  box-shadow: none;
}

.input-group .btn-reveal-pw {
  border-left: 0;
}

.input-group .btn-reveal-pw:hover, .input-group .btn-reveal-pw:active {
  background-color: #fff;
  color: #336699;
  border-color: #ccc;
}

.modal .modal-dialog {
  max-width: 700px;
}

.modal .modal-header {
  background-color: #eee;
}

.modal-localisation .modal-content {
  background-color: #3e3e3e;
}

.modal-localisation .modal-body {
  background: url("../img/worldmap.png");
  background-size: cover;
}

.modal-localisation .modal-footer {
  border: 0;
}

.modal-localisation .h5 {
  color: #fff;
}

.modal-localisation .item-selector .item {
  display: block;
  margin: 2px 0;
  padding: 2px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #eee;
}

.modal-localisation .item-selector .item:hover {
  background-color: #eee;
  color: #444;
}

.modal-localisation .item-selector .item.active {
  background-color: #ddd;
  border-color: #bbb;
  color: #444;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.network-issue-alert {
  padding: 9px 10px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  font-size: 0.9rem;
}

.form-check-inline {
  display: initial;
}

@media (max-width: 991.98px) {
  .licensing-verification h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 767.98px) {
  .licensing-verification h3 {
    font-size: 1em;
  }
}

@media (max-width: 991.98px) {
  .licensing-verification h2 {
    font-size: 1.7em;
  }
}

@media (max-width: 767.98px) {
  .licensing-verification h2 {
    font-size: 1.2em;
  }
}

.licensing-verification .secondary-input-submit {
  display: none;
}

@media (max-width: 767.98px) {
  .licensing-verification .input-group .input-group-append {
    display: none;
  }
  .licensing-verification .input-group input {
    border-radius: 0 6px 6px 0 !important;
  }
  .licensing-verification .secondary-input-submit {
    display: block;
    padding-top: 0.5em;
  }
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-default.disabled {
  border-color: #ccc;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff !important;
  border-color: #ccc !important;
}

.btn-group-xs > .btn, .btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.modal-header > .close {
  color: inherit;
}

/**
 * -------------------------
 * Colors
 * -------------------------
 */
.card-accent-gold {
  border-top: 3px solid #f0ad4e;
}

.card-accent-green {
  border-top: 3px solid #5cb85c;
}

.card-accent-red {
  border-top: 3px solid #d9534f;
}

.card-accent-blue {
  border-top: 3px solid #5bc0de;
}

.card-accent-orange {
  border-top: 3px solid #ff6600;
}

.card-accent-pink {
  border-top: 3px solid #e671b8;
}

.card-accent-purple {
  border-top: 3px solid #7b4f9d;
}

.card-accent-lime {
  border-top: 3px solid #8cbf26;
}

.card-accent-magenta {
  border-top: 3px solid #ff0097;
}

.card-accent-teal {
  border-top: 3px solid #00aba9;
}

.card-accent-turquoise {
  border-top: 3px solid #1abc9c;
}

.card-accent-emerald {
  border-top: 3px solid #2ecc71;
}

.card-accent-amethyst {
  border-top: 3px solid #9b59b6;
}

.card-accent-wet-asphalt {
  border-top: 3px solid #004258;
}

.card-accent-midnight-blue {
  border-top: 3px solid #2c3e50;
}

.card-accent-sun-flower {
  border-top: 3px solid #f1c40f;
}

.card-accent-pomegranate {
  border-top: 3px solid #c0392b;
}

.card-accent-silver {
  border-top: 3px solid #bdc3c7;
}

.card-accent-asbestos {
  border-top: 3px solid #7f8c8d;
}

.bg-color-gold {
  background-color: #f0ad4e;
}

.bg-color-green {
  background-color: #5cb85c;
}

.bg-color-red {
  background-color: #d9534f;
}

.bg-color-blue {
  background-color: #5bc0de;
}

.bg-color-orange {
  background-color: #ff6600;
}

.bg-color-pink {
  background-color: #e671b8;
}

.bg-color-purple {
  background-color: #7b4f9d;
}

.bg-color-lime {
  background-color: #8cbf26;
}

.bg-color-magenta {
  background-color: #ff0097;
}

.bg-color-teal {
  background-color: #00aba9;
}

.bg-color-turquoise {
  background-color: #1abc9c;
}

.bg-color-emerald {
  background-color: #2ecc71;
}

.bg-color-amethyst {
  background-color: #9b59b6;
}

.bg-color-wet-asphalt {
  background-color: #004258;
}

.bg-color-midnight-blue {
  background-color: #2c3e50;
}

.bg-color-sun-flower {
  background-color: #f1c40f;
}

.bg-color-pomegranate {
  background-color: #c0392b;
}

.bg-color-silver {
  background-color: #bdc3c7;
}

.bg-color-asbestos {
  background-color: #7f8c8d;
}

.label-default {
  background-color: #666;
}

.label-success {
  background-color: #5cb85c;
}

.label-info {
  background-color: #5bc0de;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-danger {
  background-color: #d9534f;
}

.status-pending {
  background-color: #d9534f;
}

.status-pending-transfer {
  background-color: #f0ad4e;
}

.status-active,
.status-open,
.status-completed {
  background-color: #5cb85c;
}

.status-suspended {
  background-color: #f0ad4e;
}

.status-customer-reply {
  background-color: #ff6600;
}

.status-fraud {
  background-color: #000;
}

.status-answered {
  background-color: #7b4f9d;
}

.status-expired,
.status-transferred-away {
  background-color: #004258;
}

.status-pending-registration,
.status-redemption,
.status-grace {
  background-color: #ff6600;
}

.status-terminated {
  background-color: #666;
}

.status-onhold {
  background-color: #336699;
}

.status-inprogress {
  background-color: #c0392b;
}

.status-closed {
  background-color: #87939f;
}

.status-paid {
  background-color: #5cb85c;
}

.status-unpaid {
  background-color: #d9534f;
}

.status-cancelled {
  background-color: #87939f;
}

.status-collections {
  background-color: #2c3e50;
}

.status-refunded {
  background-color: #f0ad4e;
}

.status-payment-pending {
  background-color: #336699;
}

.status-delivered {
  background-color: #336699;
}

.status-accepted {
  background-color: #5cb85c;
}

.status-lost,
.status-dead {
  background-color: #000;
}

.requestor-type-operator {
  background-color: #5bc0de;
}

.requestor-type-owner {
  background-color: #5cb85c;
}

.requestor-type-authorizeduser {
  background-color: #666;
}

.requestor-type-registereduser {
  background-color: #f0ad4e;
}

.requestor-type-subaccount {
  background-color: #666;
}

.requestor-type-guest {
  background-color: #87939f;
}

.responsive-tabs-sm-connector {
  display: none;
}

.responsive-tabs-sm .nav-item a {
  margin-right: 2px;
}

.responsive-tabs-sm .nav-item a:hover {
  background-color: #f7f7f7;
  border-bottom: 0;
}

@media (max-width: 767.98px) {
  .responsive-tabs-sm {
    border-left: 1px solid #ddd;
    background: #fff;
    width: 90%;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 0;
    margin-right: 0;
    border-radius: 4px 4px 4px 0;
  }
  .responsive-tabs-sm .nav-item {
    margin-left: 5px;
    margin-right: 0 !important;
    margin-bottom: 0;
    width: 100%;
    border-bottom: 1px solid #ddd !important;
  }
  .responsive-tabs-sm .nav-item a {
    padding: 7px 15px !important;
    width: 100%;
    border: 0;
    border-bottom: 0 !important;
    border-radius: 0 !important;
  }
  .responsive-tabs-sm .nav-item a.active {
    border: 0;
    background-color: #fff !important;
    font-weight: bold;
  }
  .responsive-tabs-sm .nav-item:first-child a {
    border-radius: 0 4px 0 0 !important;
  }
  .responsive-tabs-sm .nav-item:last-child {
    border-radius: 0 0 4px 0 !important;
  }
  .responsive-tabs-sm .nav-item:last-child a {
    border-radius: 0 0 4px 0 !important;
  }
  .responsive-tabs-sm-connector {
    display: block;
  }
  .responsive-tabs-sm-connector .channel {
    float: left;
    background: #fff;
    width: 6px;
    height: 5px;
    border-right: 1px solid #ddd;
  }
  .responsive-tabs-sm-connector .bottom-border {
    margin-left: 5px;
    height: 5px;
    border-bottom: 1px solid #ddd;
  }
  .responsive-tabs-sm-connector.store .channel {
    border-left: 1px solid #ddd;
  }
}

.pagination {
  font-size: 0.8em;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  color: white;
}

.sidebar .card-title, .sidebar .promo-container .header h3, .promo-container .header .sidebar h3, .sidebar .mc-promo-manage .panel-heading h3, .mc-promo-manage .panel-heading .sidebar h3, .sidebar .mc-promo-login .panel-heading h3, .mc-promo-login .panel-heading .sidebar h3 {
  font-size: 16px;
}

.sidebar .card-title .btn-sm, .sidebar .promo-container .header h3 .btn-sm, .promo-container .header .sidebar h3 .btn-sm, .sidebar .mc-promo-manage .panel-heading h3 .btn-sm, .mc-promo-manage .panel-heading .sidebar h3 .btn-sm, .sidebar .mc-promo-login .panel-heading h3 .btn-sm, .mc-promo-login .panel-heading .sidebar h3 .btn-sm, .sidebar .card-title .btn-group-sm > .btn, .sidebar .promo-container .header h3 .btn-group-sm > .btn, .promo-container .header .sidebar h3 .btn-group-sm > .btn, .sidebar .mc-promo-manage .panel-heading h3 .btn-group-sm > .btn, .mc-promo-manage .panel-heading .sidebar h3 .btn-group-sm > .btn, .sidebar .mc-promo-login .panel-heading h3 .btn-group-sm > .btn, .mc-promo-login .panel-heading .sidebar h3 .btn-group-sm > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.sidebar .card-collapsable > .card-header {
  cursor: pointer;
}

.sidebar .card-collapsable > .card-body-collapsed {
  display: none;
}

.sidebar .card-sidebar .card-minimise {
  cursor: pointer;
  transition: transform 200ms ease;
}

.sidebar .card-sidebar .card-minimise.minimised {
  transform: rotate(180deg);
}

.sidebar .card-sidebar .panel-title {
  font-size: 16px;
  margin: 0;
}

.sidebar .list-group {
  font-size: 0.9em;
}

.sidebar .list-group-item {
  padding: 7px 15px;
  border-color: #f5f5f5;
}

.sidebar .list-group-item .badge {
  padding: 5px 2px;
  width: 28px;
  text-align: center;
  background-color: #fff;
  color: #666;
}

.sidebar .list-group-item.active, .sidebar .list-group-item.active:hover, .sidebar .list-group-item.active:focus {
  background-color: #666;
  border-color: #666;
}

.sidebar .list-group-item > i.far.fa-circle {
  color: #666;
}

.sidebar .validation-status-label {
  font-size: initial;
}

.sidebar .validation-submit-div {
  margin-top: 1em;
}

.sidebar .validation-status-container {
  text-align: center;
}

.home-domain-search h2 {
  margin: 0;
}

.home-domain-search .tld-logos {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4em;
  color: #888;
  font-weight: 300;
}

.home-domain-search .tld-logos li {
  float: left;
  padding: 0 25px 0 0;
}

.home-domain-search .tld-logos img {
  width: 60px;
}

.home-domain-search .input-group-wrapper {
  margin: 15px 0;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.home-domain-search .input-group-wrapper .form-control {
  border: 0;
}

.home-domain-search .input-group-wrapper .form-control:focus {
  box-shadow: none;
}

.home-domain-search .input-group-wrapper .btn {
  margin: 0 2px !important;
  border-radius: .25rem !important;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .card-columns.home {
    -moz-column-count: 2;
         column-count: 2;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .card-columns.home {
    -moz-column-count: 2;
         column-count: 2;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .card-columns.home {
    -moz-column-count: 3;
         column-count: 3;
  }
}

@media (min-width: 1200px) {
  .card-columns.home {
    -moz-column-count: 3;
         column-count: 3;
  }
}

.action-icon-btns a {
  margin: 0 0 10px 0;
  padding: 10px 0 15px;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  color: #666;
  text-decoration: none;
  background-color: #fff;
  border-radius: .25rem;
}

.action-icon-btns a .ico-container {
  margin: 10px auto;
  line-height: 55px;
  font-size: 2.6em;
  text-align: center;
  transition: all 0.3s ease;
}

.action-icon-btns a .ico-container i {
  color: #c3cfd8;
}

.action-icon-btns a:hover {
  color: #444;
}

.action-icon-btns a:hover .ico-container {
  font-size: 3.4em;
}

.client-home-cards .card, .client-home-cards .mc-promo-manage, .client-home-cards .mc-promo-login {
  font-size: 0.9em;
}

.client-home-cards .card-header {
  background-color: #fff;
  border-bottom: 0;
  font-weight: bold;
}

.client-home-cards .card-header .btn {
  color: #fff;
  border: 0;
}

.client-home-cards .card-header .btn:hover {
  color: #000;
}

.client-home-cards .card-title, .client-home-cards .promo-container .header h3, .promo-container .header .client-home-cards h3, .client-home-cards .mc-promo-manage .panel-heading h3, .mc-promo-manage .panel-heading .client-home-cards h3, .client-home-cards .mc-promo-login .panel-heading h3, .mc-promo-login .panel-heading .client-home-cards h3 {
  font-size: 16px;
}

.client-home-cards .card-body, .client-home-cards .mc-promo-manage .content, .mc-promo-manage .client-home-cards .content, .client-home-cards .mc-promo-login .content, .mc-promo-login .client-home-cards .content {
  padding: 0;
  max-height: 170px;
  overflow: auto;
}

.client-home-cards .card-body p, .client-home-cards .mc-promo-manage .content p, .mc-promo-manage .client-home-cards .content p, .client-home-cards .mc-promo-login .content p, .mc-promo-login .client-home-cards .content p {
  padding: 10px 15px;
}

.client-home-cards .card-footer {
  border-top: 0;
}

.client-home-cards .list-group {
  max-height: 170px;
  overflow: auto;
  border-radius: 0;
  border-top: 1px solid #ddd !important;
  border-bottom: 1px solid #ddd !important;
}

.client-home-cards .list-group .list-group-item {
  padding: 4px 10px;
  border: 0;
  border-bottom: 1px solid #ddd;
}

.client-home-cards .list-group .list-group-item:last-child {
  border-bottom: 0;
}

.client-home-cards small {
  color: #888;
}

.promotions-slider-control .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231c3965' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.promotions-slider-control .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231c3965' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/**
 * -------------------------
 * Client Homepage Tiles
 * -------------------------
 */
.tiles .tile {
  display: block;
  position: relative;
  padding: 12px 20px;
  background-color: #f8f8f8;
  border-right: 1px solid #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tiles .tile .stat {
  margin-top: 20px;
  font-size: 40px;
  line-height: 1;
}

.tiles .tile .title {
  font-weight: bold;
  color: #888;
  text-transform: uppercase;
  font-size: 12px;
}

.tiles .tile .highlight {
  margin-top: 4px;
  height: 2px;
  border-radius: 2px;
}

.tiles .tile i {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 55px;
  line-height: 1;
  color: #ccc;
  transition: all 0.3s ease;
}

.tiles .tile:hover {
  background-color: #f2f2f2;
  cursor: pointer;
}

.tiles .tile:hover i {
  font-size: 70px;
  color: #aaa;
}

.tiles .row > div:last-child .tile {
  border: 0;
}

@media (max-width: 1199.98px) {
  .tiles div:nth-child(2) > .tile {
    border: 0;
  }
  .tiles div:nth-child(1) > .tile,
  .tiles div:nth-child(2) > .tile {
    border-bottom: 1px solid #ccc;
  }
}

.carousel-item.item {
  float: none;
}

.carousel-inner .carousel-item.item {
  float: left;
}

.twofa-setup .modal-body {
  min-height: 100px;
}

.twofa-setup .activation-msg {
  margin: 25px 0;
  padding: 15px;
  border: 1px dashed #ddd;
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
}

.twofa-setup .backup-code {
  margin: 20px auto;
  padding: 10px;
  background-color: #efefef;
  color: #444;
  text-align: center;
}

.twofa-module {
  margin: 10px 0;
  padding: 14px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.twofa-module .col-radio {
  float: left;
  width: 35px;
  margin-top: 12px;
}

.twofa-module .col-logo {
  float: left;
  width: 80px;
  line-height: 40px;
  text-align: center;
}

.twofa-module .col-description {
  margin-left: 136px;
}

.twofa-module img {
  max-width: 100%;
  max-height: 40px;
}

.twofa-module.active {
  border-color: #337ab7;
}

/**
 * -------------------------
 * @section Client Notifications
 * -------------------------
 */
.popover-user-notifications {
  border-radius: 0;
  padding: 5px 10px;
  border-color: #ddd;
  min-width: 310px;
  font-family: 'Open Sans', sans-serif;
}

.popover-user-notifications .popover-body {
  padding: 0;
}

.popover-user-notifications ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.popover-user-notifications ul li {
  padding: 5px 0;
  min-height: 66px;
  border-bottom: 1px solid #ddd;
}

.popover-user-notifications ul li:last-child {
  border: 0;
}

.popover-user-notifications ul li a {
  display: block;
  padding: 10px 15px 10px 12px;
  text-decoration: none;
  color: #555;
  font-size: 0.95em;
}

.popover-user-notifications ul li a:hover {
  background-color: #f6f6f6;
}

.popover-user-notifications ul li i.fas,
.popover-user-notifications ul li i.far {
  float: left;
  padding-top: 6px;
  font-size: 21px;
}

.popover-user-notifications ul li i.fas.fa-check-circle,
.popover-user-notifications ul li i.far.fa-check-circle {
  color: #5cb85c;
}

.popover-user-notifications ul li i.fas.fa-warning,
.popover-user-notifications ul li i.far.fa-warning {
  color: #ecc317;
}

.popover-user-notifications ul li i.fas.fa-exclamation-circle,
.popover-user-notifications ul li i.far.fa-exclamation-circle {
  color: #ec2d45;
}

.popover-user-notifications ul li .message {
  margin-left: 40px;
}

.popover-user-notifications ul li.none {
  padding: 12px 0;
  min-height: auto;
  text-align: center;
  font-weight: bold;
}

#google-recaptcha-domainchecker {
  width: 304px;
  height: 78px;
  margin-top: 15px;
  margin-bottom: 15px;
}

#default-captcha-domainchecker {
  margin-top: 15px;
}

#default-captcha-domainchecker #inputCaptcha {
  width: 100px;
  border-radius: 4px;
}

.domainchecker-homepage-captcha #google-recaptcha-domainchecker {
  margin-bottom: -46px;
}

@media (max-width: 991px) {
  #google-recaptcha-domainchecker {
    padding-left: 2.5%;
  }
  #default-captcha-domainchecker {
    margin-bottom: -25px;
  }
}

@media (max-width: 736px) {
  #google-recaptcha-domainchecker {
    transform: scale(0.935);
    transform-origin: 0 0;
    -webkit-transform: scale(0.935);
    -webkit-transform-origin: 0 0;
  }
}

@media (max-width: 384px) {
  #google-recaptcha-domainchecker {
    transform: scale(0.96);
    transform-origin: 0 0;
  }
}

@media (max-width: 360px) {
  #google-recaptcha-domainchecker {
    transform: scale(0.89);
    transform-origin: 0 0;
  }
}

@media (max-width: 320px) {
  #google-recaptcha-domainchecker {
    padding-left: 13.5%;
    transform: scale(0.83);
    transform-origin: 0 0;
    -webkit-transform: scale(0.785);
    -webkit-transform-origin: 0 0;
  }
}

.captchaimage {
  margin: 0;
  padding: 3px 0 4px;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  text-align: right;
}

.verification-banner {
  margin: 0;
  padding: 10px;
  font-weight: 300;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  color: #333;
}

.verification-banner .text {
  display: block;
  padding: 6px 0;
}

.verification-banner .btn {
  margin: 3px 0;
  padding: 3px 10px;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.verification-banner .btn.close {
  margin-left: 10px;
  background-color: transparent;
  color: rgba(55, 55, 55, 0.5);
  font-size: 22px;
  opacity: 1;
}

.verification-banner .btn.close:hover {
  color: rgba(55, 55, 55, 0.8);
}

.verification-banner .fas,
.verification-banner .fal,
.verification-banner .far {
  color: #666;
  float: left;
  padding: 2px 10px 0 0;
  font-size: 24px;
}

@media (min-width: 768px) {
  .verification-banner .text {
    padding-top: 9px;
    padding-bottom: 0;
  }
  .verification-banner .btn {
    margin: 0;
    padding: 9px 25px;
  }
  .verification-banner .button {
    float: right;
  }
  .verification-banner .fas,
  .verification-banner .fal,
  .verification-banner .far {
    font-size: 36px;
  }
}

.verification-banner.email-verification .btn.btn-action,
.verification-banner.email-verification .btn.btn-action:active,
.verification-banner.email-verification .btn.btn-action[disabled]:hover {
  background-color: #50525f;
  border-color: #50525f;
  color: #fff;
}

.verification-banner.user-validation i {
  margin-left: 0.11em;
}

/**
 * -------------------------
 * Markdown Editor
 * -------------------------
 */
.md-editor {
  border: 1px solid #ddd;
  border-radius: 3px;
}

.md-editor > .btn-toolbar {
  background-color: #fff !important;
}

.md-editor > textarea.markdown-editor,
.md-editor > .md-preview {
  padding: 15px !important;
  border-top: 1px solid #ddd !important;
  border-bottom: 1px solid #ddd !important;
  background-color: #fff !important;
}

div.md-editor.active {
  display: block;
  border: 1px solid #ddd;
  outline: 0;
  box-shadow: none;
}

.markdown-editor-status {
  padding: 2px 10px;
  font-size: 9pt;
  color: #959694;
  text-align: right;
}

.small-font {
  font-size: 0.9em;
}

/**
 * -------------------------
 * Markdown Content Formatting
 * -------------------------
 */
.md-preview h1, .markdown-content h1 {
  font-size: 1.6em;
  color: #333;
}

.md-preview h2, .markdown-content h2 {
  font-size: 1.4em;
  color: #333;
}

.md-preview h3, .markdown-content h3 {
  font-size: 1.2em;
  color: #333;
}

.md-preview h4, .markdown-content h4 {
  font-size: 1.1em;
  color: #333;
}

.md-preview pre, .markdown-content pre {
  padding: 15px;
  background-color: #444;
  color: #f8f8f8;
  border: 0;
}

.md-preview pre code, .markdown-content pre code {
  white-space: pre;
  word-break: normal;
  word-wrap: normal;
}

.md-preview blockquote, .markdown-content blockquote {
  font-size: 1em;
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}

.md-preview table, .markdown-content table {
  margin: 10px 0;
  background-color: #fff;
  border: 1px solid #ddd;
}

.md-preview table > thead > tr > th, .markdown-content table > thead > tr > th {
  padding: 4px 10px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  font-weight: bold;
  text-align: center;
}

.md-preview table > tbody > tr > td, .markdown-content table > tbody > tr > td {
  padding: 3px 8px;
  border: 1px solid #ddd;
}

.store-order-container {
  margin: 0;
  padding: 0;
}

.store-order-container h2 {
  margin-top: 0;
}

.store-order-container .btn {
  padding: 10px 30px;
  font-size: 1.15em;
  font-weight: 300;
}

.store-order-container .store-domain-tabs {
  margin-top: 20px;
}

.store-order-container .store-domain-tabs li a {
  margin-right: 10px;
  padding: 7px 15px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.store-order-container .store-domain-tabs li.active a {
  background-color: #fff;
  border-bottom: 1px solid transparent;
}

.store-order-container .store-domain-tab-content {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 0;
}

.store-order-container .store-domain-tab-content a {
  text-decoration: underline;
}

.store-order-container .store-domain-tab-content a:hover {
  text-decoration: none;
}

.store-order-container .payment-term h4 {
  margin-top: 25px;
}

@media (min-width: 768px) {
  .store-order-container .payment-term {
    float: right;
  }
  .store-order-container .payment-term h4 {
    margin-top: 0;
  }
}

.store-order-container .domain-validation {
  display: block;
  padding-top: 5px;
  font-size: 1.2em;
  font-weight: 300;
  color: #888;
}

.store-order-container .domain-validation.ok {
  color: #53a22d;
}

.store-promoted-product .icon {
  height: 200px;
  line-height: 200px;
  text-align: center;
  overflow: hidden;
}

.store-promoted-product .icon img {
  max-width: 100%;
  max-height: 100%;
}

.store-promoted-product ul.features {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  font-size: 1.1em;
  font-weight: 300;
}

.store-promoted-product ul.features li {
  float: left;
  width: 50%;
  margin-bottom: 5px;
}

.store-promoted-product ul.features li .fa:not(.fa-spinner) {
  font-size: 1.2em;
  color: #91c590;
  margin-left: 20px;
  margin-right: 10px;
}

.store-promoted-product .btn {
  margin-top: 10px;
  padding: 10px 30px;
  font-size: 1.2em;
  font-weight: 300;
}

/**
 * -------------------------
 * Promotional Content Formatting
 * -------------------------
 */
.promo-container {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  margin-bottom: 10px;
  background-color: #fff;
}

.promo-container .header {
  padding: 20px;
}

.promo-container .header h3 {
  padding: 0;
  margin: 0 !important;
}

.promo-banner {
  margin: 0;
  padding: 15px 10px 20px 10px;
  background-color: #fff;
  font-size: 1em;
  overflow: auto;
}

.promo-banner .content {
  margin-left: 185px;
}

@media (max-width: 767.98px) {
  .promo-banner .content {
    margin: 10px 0 0 0;
  }
}

.promo-banner .icon-left {
  text-align: center;
  width: 155px;
  float: left;
}

@media (max-width: 767.98px) {
  .promo-banner .icon-left {
    width: 90px;
    float: none;
  }
}

.promo-banner .icon-left img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767.98px) {
  .promo-banner form {
    text-align: center;
  }
}

.promo-banner .icon {
  float: left;
  margin: 0 20px 0 0;
}

.promo-banner h3 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 300;
}

.promo-banner h4 {
  font-size: 18px;
  font-weight: 300;
}

.promo-banner p {
  margin: 5px 0;
}

.promo-banner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92em;
}

.promo-banner ul li {
  margin-bottom: 4px;
}

@media (min-width: 1200px) {
  .promo-banner ul li {
    width: 50%;
  }
  .promo-banner ul li.left {
    float: left;
  }
  .promo-banner ul li.right {
    float: right;
  }
}

.promo-banner .fa:not(.fa-spinner) {
  font-size: 1.2em;
  color: #91c590;
  margin-left: 20px;
  margin-right: 10px;
}

.promo-banner a {
  color: #ff6600;
  text-decoration: underline;
}

.promo-banner .btn {
  margin: 6px 0 0 0;
  padding: 8px 30px;
  background-color: #ff6600;
  border: 0;
  color: #fff;
}

@media (max-width: 650px) {
  .promo-banner .icon {
    width: 100%;
    margin-bottom: 15px;
  }
}

.promo-banner-rounded {
  border-radius: 4px;
}

.promo-banner-slim {
  padding: 10px;
}

.promo-banner-slim .icon-left {
  width: 85px;
}

.promo-banner-slim .content {
  margin-left: 110px;
}

.promo-banner-slim h3 {
  font-size: 18px;
}

.promo-banner-slim h4 {
  font-size: 14px;
}

.promo-banner-slim .btn {
  margin: 0 20px 0 0;
  padding: 6px 20px;
}

.promo-banner.symantec {
  border-top: 3px solid #4da24c;
}

.promo-banner.symantec .btn {
  background-color: #4da24c;
}

.promo-banner.weebly {
  border-top: 3px solid #2990ea;
}

.promo-banner.weebly .btn {
  background-color: #2990ea;
}

.promo-banner.spamexperts {
  border-top: 3px solid #589ed7;
}

.promo-banner.spamexperts .btn {
  background-color: #589ed7;
}

.promo-banner-slim.weebly .icon-left {
  width: 160px;
}

.promo-banner-slim.weebly .content {
  margin-left: 185px;
}

.promo-banner.sitelock {
  border-top: 3px solid #f2952d;
}

.promo-banner.sitelock .btn {
  background-color: #f2952d;
}

.promo-banner.codeguard {
  border-top: 3px solid #a9cc5f;
}

.promo-banner.codeguard a {
  color: #a9cc5f;
}

.promo-banner.codeguard .btn {
  background-color: #a9cc5f;
}

.promo-banner.sitelockvpn {
  border-top: 3px solid #555;
}

.promo-banner.sitelockvpn .btn {
  background-color: #555;
}

.promo-banner.marketgoo {
  border-top: 3px solid #3090e0;
}

.promo-banner.marketgoo .btn {
  background-color: #3090e0;
}

.promo-banner.ox {
  border-top: 3px solid #666;
}

.promo-banner.ox a {
  color: #666;
}

.promo-banner.ox .btn {
  background-color: #666;
}

.promo-banner.sitebuilder {
  border-top: 3px solid #ff3377;
}

.promo-banner.sitebuilder a {
  color: #ff3377;
}

.promo-banner.sitebuilder .btn {
  background-color: #ff3377;
}

.mc-panel-promo {
  font-size: 0.95em;
}

.mc-panel-promo img {
  display: block;
  margin: 0 auto 6px;
  max-width: 90%;
  max-height: 87px;
}

/**
 * -------------------------
 * MarketConnect Service SSO
 * -------------------------
 */
.panel-mc-sso {
  padding: 0 10px 10px 10px;
}

.panel-mc-sso img {
  max-width: 100%;
  max-height: 120px;
}

.panel-mc-sso .row {
  margin-left: -5px;
  margin-right: -5px;
}

.panel-mc-sso .col-sm-6 {
  padding-left: 5px;
  padding-right: 5px;
}

.panel-mc-sso .form-control,
.panel-mc-sso .btn,
.panel-mc-sso small {
  margin-top: 5px;
}

.panel-mc-sso small {
  display: block;
}

.social-signin-btns {
  text-align: center;
}

.social-signin-btns .btn {
  margin-bottom: 5px;
}

.btn-social {
  position: relative;
  padding-left: 44px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-social i.fas,
.btn-social i.far {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding-right: 2px;
  width: 32px;
  line-height: 34px;
  font-size: 1.6em;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-facebook {
  color: #fff;
  background-color: #4267b2;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook {
  color: #fff;
  background-color: #30487b;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook {
  background-image: none;
}

.btn-facebook.disabled, .btn-facebook[disabled], fieldset[disabled] .btn-facebook, .btn-facebook.disabled:hover, .btn-facebook[disabled]:hover, fieldset[disabled] .btn-facebook:hover, .btn-facebook.disabled:focus, .btn-facebook[disabled]:focus, fieldset[disabled] .btn-facebook:focus, .btn-facebook.disabled:active, .btn-facebook[disabled]:active, fieldset[disabled] .btn-facebook:active, .btn-facebook.disabled.active, .btn-facebook[disabled].active, fieldset[disabled] .btn-facebook.active {
  background-color: #4267b2;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-google {
  color: #000;
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-google img {
  margin-bottom: 2px;
}

.btn-social.btn-google {
  padding-left: 41px;
}

.btn-google:hover, .btn-google:focus, .btn-google:active, .btn-google.active, .open .dropdown-toggle.btn-google {
  color: #000;
  border-color: rgba(0, 0, 0, 0.5);
}

.btn-google:active, .btn-google.active, .open .dropdown-toggle.btn-google {
  background-image: none;
}

.btn-google.disabled, .btn-google[disabled], fieldset[disabled] .btn-google, .btn-google.disabled:hover, .btn-google-plus[disabled]:hover, fieldset[disabled] .btn-google-plus:hover, .btn-google-plus.disabled:focus, .btn-google-plus[disabled]:focus, fieldset[disabled] .btn-google-plus:focus, .btn-google-plus.disabled:active, .btn-google-plus[disabled]:active, fieldset[disabled] .btn-google-plus:active, .btn-google-plus.disabled.active, .btn-google-plus[disabled].active, fieldset[disabled] .btn-google-plus.active {
  background-color: #eee;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-twitter {
  color: #fff;
  background-color: #2ba9e1;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
  color: #fff;
  background-color: #1c92c7;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
  background-image: none;
}

.btn-twitter.disabled, .btn-twitter[disabled], fieldset[disabled] .btn-twitter, .btn-twitter.disabled:hover, .btn-twitter[disabled]:hover, fieldset[disabled] .btn-twitter:hover, .btn-twitter.disabled:focus, .btn-twitter[disabled]:focus, fieldset[disabled] .btn-twitter:focus, .btn-twitter.disabled:active, .btn-twitter[disabled]:active, fieldset[disabled] .btn-twitter:active, .btn-twitter.disabled.active, .btn-twitter[disabled].active, fieldset[disabled] .btn-twitter.active {
  background-color: #2ba9e1;
  border-color: rgba(0, 0, 0, 0.2);
}

.providerPreLinking {
  min-height: 52px;
}

.providerLinkingFeedback {
  display: none;
}

/**
 * -------------------------
 * @section Twitter Feed
 * -------------------------
 */
div.home-twitter {
  margin-top: 20px;
  margin-bottom: 40px;
}

div.tweet > i {
  color: #2BABCF;
  float: left;
  margin-right: 15px;
}

div.tweet span {
  font-size: 12px;
  color: #ccc;
}

.upgrade .product-to-be-upgraded {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f8f8;
}

.upgrade .product-to-be-upgraded h4,
.upgrade .product-to-be-upgraded h5 {
  margin: 0;
}

.upgrade .products {
  margin-left: -5px;
  margin-right: -5px;
}

.upgrade .products .column {
  padding-left: 5px;
  padding-right: 5px;
}

.upgrade .products .product {
  margin: 20px 0;
  padding: 0;
  background-color: #fff;
}

.upgrade .products .product .current,
.upgrade .products .product .recommended {
  padding: 5px;
  background-color: #ffbc00;
  color: #f5f5f5;
  font-weight: bold;
  text-align: center;
}

.upgrade .products .product .recommended {
  background-color: #25ac2f;
}

.upgrade .products .product ul {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.upgrade .products .product .footer {
  border: 1px solid #eee;
  border-top: 0;
}

.upgrade .products .product .header {
  margin: 0;
  padding: 20px;
  background-color: #2b5580;
  color: #fff;
  min-height: 150px;
}

.upgrade .products .product .header p {
  font-size: 1.1em;
  font-weight: 300;
}

.upgrade .products .product ul {
  margin: 0;
  padding: 20px 25px;
  list-style: none;
}

.upgrade .products .product ul li {
  line-height: 25px;
  font-size: 0.9em;
  text-align: right;
  color: #aaa;
  border-bottom: 1px solid #eee;
}

.upgrade .products .product ul li:last-child {
  border: 0;
}

.upgrade .products .product ul li span {
  float: left;
  color: #444;
}

.upgrade .products .fas,
.upgrade .products .far {
  font-size: 1.3em;
}

.upgrade .products .fa-check {
  color: #23ad2e;
}

.upgrade .products .product .footer {
  margin: 0;
  padding: 20px;
}

.upgrade .products .product .footer select {
  margin-bottom: 10px;
}

.upgrade .products .product .btn {
  background-color: #2b5580;
  color: #fff;
}

.affiliate-stat {
  margin: 0;
  padding: 15px;
  font-size: 1.6em;
  text-align: center;
}

.affiliate-stat span {
  display: block;
  font-size: 2.4em;
}

.affiliate-stat i {
  float: left;
  padding: 10px;
  font-size: 4em;
}

@media (max-width: 1200px) {
  .affiliate-stat {
    font-size: 1.2em;
  }
  .affiliate-stat span {
    font-size: 2.1em;
  }
  .affiliate-stat i {
    font-size: 3.6em;
  }
}

@media (max-width: 992px) {
  .affiliate-stat {
    font-size: 1.0em;
  }
  .affiliate-stat span {
    font-size: 1.6em;
  }
  .affiliate-stat i {
    font-size: 3em;
  }
}

.announcements .announcement {
  margin-bottom: 4rem;
}

.announcements .announcement article {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f5f5f5;
  border-left: 4px solid #ccc;
}

.announcements .announcement article p {
  margin: 0;
}

.kb-category a {
  text-decoration: none;
}

.kb-category a:hover {
  background-color: #f5f5f5;
}

.kb-article-item:hover {
  background-color: #f5f5f5;
  text-decoration: none;
}

.kb-article-item small {
  display: block;
  padding-left: 25px;
  color: #87939f;
}

/**
 * -------------------------
 * @section Support Tickets
 * -------------------------
 */
.ticket-subject.unread {
  font-weight: bold;
}

.ticket-reply .rating,
.ticket-reply .rating-done {
  float: right;
  padding: 5px 10px;
  unicode-bidi: bidi-override;
  direction: rtl;
  font-size: 24px;
}

.ticket-reply .rating span.star,
.ticket-reply .rating-done span.star {
  font-family: "Font Awesome 5 Pro";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
}

.ticket-reply .rating-done .rated {
  display: inline-block;
  font-size: 12px;
}

.ticket-reply .rating span.star:hover {
  cursor: pointer;
}

.ticket-reply .rating span.star:before,
.ticket-reply .rating-done span.star:before {
  content: "\f005";
  padding-right: 0;
  color: #999;
}

.ticket-reply .rating span.star:hover:before,
.ticket-reply .rating span.star:hover ~ span.star:before,
.ticket-reply .rating-done span.star.active:before {
  content: "\f005";
  color: #F2DE88;
}

.md-editor .btn-toolbar .btn-group {
  margin-right: 6px;
}

.view-ticket .card-body, .view-ticket .mc-promo-manage .content, .mc-promo-manage .view-ticket .content, .view-ticket .mc-promo-login .content, .mc-promo-login .view-ticket .content {
  padding: 0;
  border-bottom: 1px solid #ddd;
}

.view-ticket .card-body:last-child, .view-ticket .mc-promo-manage .content:last-child, .mc-promo-manage .view-ticket .content:last-child, .view-ticket .mc-promo-login .content:last-child, .mc-promo-login .view-ticket .content:last-child {
  border-bottom: 0;
}

.view-ticket .posted-by {
  color: #888;
  font-size: 0.9rem;
  background-color: #f6f6f6;
  padding: 0.5rem 1rem;
}

.view-ticket .posted-by .posted-by-name {
  font-weight: bold;
}

.view-ticket .requestor-badge {
  font-size: 85%;
  padding: 5px 10px;
}

.view-ticket .message p:last-child {
  margin-bottom: 0;
}

.view-ticket .attachments {
  border-top: 1px dashed #ddd;
  font-size: 80%;
}

.view-ticket .attachment-list {
  list-style: none;
  margin: 10px 0 -10px 0;
  padding: 0;
}

.view-ticket .attachment-list li {
  display: inline-block;
  width: 190px;
  vertical-align: top;
}

.view-ticket .attachment-list li span {
  display: block;
  padding: 5px 5px 10px 5px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.view-ticket .attachment-list li figure {
  margin: 0 0 5px 0;
  background-color: #f6f6f6;
  line-height: 100px;
  text-align: center;
  font-size: 4em;
}

/**
 * -------------------------
 * @section Support Ticket Feedback
 * -------------------------
 */
.ticketfeedbackstaffcont {
  margin: 10px auto;
  padding: 15px;
  width: 90%;
  background-color: #efefef;
  border-radius: 6px;
}

.ticketfeedbackrating {
  padding: 0 100px;
}

.ticketfeedbackrating .rate {
  float: left;
  padding: 0 10px;
  min-width: 30px;
  text-align: center;
}

@media (min-width: 380px) {
  .btn-input-padded-responsive {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 500px) {
  .btn-input-padded-responsive {
    padding-left: 35px;
    padding-right: 35px;
  }
}

/**
 * -------------------------
 * @section Downloads
 * -------------------------
 */
.kb-search.margin-bottom {
  margin-bottom: 20px;
}

#registration {
  margin: 0;
  padding: 0 0 40px 0;
}

#registration .field-container {
  margin: 0 0 30px 0;
}

#registration label {
  font-weight: 300;
  color: #666;
  font-size: 13px;
}

#registration .info-text-sm {
  font-size: 0.85em;
  text-align: center;
}

#registration .sub-heading {
  height: 0;
  border-top: 1px solid #DDD;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

#registration .sub-heading span {
  display: inline-block;
  position: relative;
  padding: 0 17px;
  top: -11px;
  font-size: 16px;
  color: #058;
  background-color: #fff;
}

/**
 * Form fields
 */
#registration .prepend-icon {
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  font-weight: normal;
}

#registration .field,
#registration .form-control {
  position: relative;
  vertical-align: top;
  border: 1px solid #DDD;
  display: -moz-inline-stack;
  display: inline-block;
  color: #626262;
  outline: none;
  background: #fff;
  height: 36px;
  width: 100%;
  border-radius: 3px;
  font-size: 13px;
}

#registration .input-group-lg > .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px 0 0 6px;
}

#registration .form-control-qty {
  width: 70px;
  text-align: center;
}

#registration .form-control-static-inline {
  display: inline-block;
}

#registration .form-control:focus {
  border-color: #ddd;
  outline: 0;
  box-shadow: none;
}

#registration textarea.field {
  height: auto;
}

#registration .prepend-icon .field {
  -webkit-appearance: none;
  padding-left: 36px;
}

#registration .prepend-icon .field-icon i {
  position: relative;
  font-size: 14px;
}

#registration .prepend-icon .field-icon {
  top: 0;
  z-index: 4;
  width: 42px;
  height: 36px;
  color: inherit;
  line-height: 36px;
  position: absolute;
  text-align: center;
  transition: all 0.5s ease-out;
  pointer-events: none;
}

#registration .field-icon i {
  color: #bbb;
}

#registration .field[disabled],
#registration .field[readonly],
#registration .form-control[disabled],
#registration .form-control[readonly] {
  background-color: #f8f8f8;
  opacity: 1;
}

#registration .field-help-text {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #888;
  font-size: 12px;
}

/**
 * -------------------------
 * @section Credit Cards
 * -------------------------
 */
div.credit-card {
  margin: 0 auto 30px;
  max-width: 400px;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 8px;
}

div.credit-card div.card-type {
  float: right;
  padding: 10px 20px;
  font-size: 1.2em;
}

div.credit-card div.card-icon {
  float: left;
  padding: 7px 7px;
  font-size: 1.2em;
}

div.credit-card div.card-number {
  padding: 10px;
  background-color: #ccc;
  font-size: 1.6em;
  text-align: center;
  clear: both;
}

div.credit-card div.card-start {
  float: left;
  padding: 20px 0 50px 50px;
  font-size: 1.3em;
  text-align: right;
}

div.credit-card div.card-expiry {
  float: right;
  padding: 20px 50px 50px 0;
  height: 120px;
  font-size: 1.3em;
  text-align: right;
}

div.credit-card div.end {
  clear: both;
}

@media (max-width: 600px) {
  div.credit-card {
    max-width: 250px;
  }
  div.credit-card div.card-type {
    font-size: 1.0em;
  }
  div.credit-card div.card-icon {
    font-size: 1.0em;
  }
  div.credit-card div.card-number {
    padding: 6px 10px;
    font-size: 1.2em;
  }
  div.credit-card div.card-start {
    padding: 20px 0 30px 50px;
    font-size: 0.9em;
  }
  div.credit-card div.card-expiry {
    padding: 20px 50px 30px 0;
    height: 80px;
    font-size: 0.9em;
  }
}

.auth3d-area {
  border: 1px solid #fff;
}

.submit-3d {
  width: 80%;
  border: 1px solid #fff;
}

.invoice-summary-table {
  margin: 20px 0;
  max-height: 300px;
  overflow: auto;
}

.invoice-summary-table td {
  font-size: 0.8em;
}

.invoice-summary-table td.total-row {
  background-color: #efefef;
  font-weight: bold;
}

/* Card colors colorpicked from website logos */
div.credit-card .logo-visa {
  color: #1a1f71;
}

div.credit-card .logo-amex {
  color: #43abdf;
}

div.credit-card .logo-mastercard {
  color: #ed0b00;
}

div.credit-card .logo-discover {
  color: #000000;
}

div.two-column-grid,
div.three-column-grid {
  display: inline-grid;
  grid-template-columns: repeat(3, auto) minmax(10em, 30em) auto;
  font-weight: 300;
  font-size: 13px;
}

div.two-column-grid {
  grid-template-columns: repeat(2, auto) minmax(10em, 30em) auto;
}

div.two-column-grid > div,
div.three-column-grid > div {
  margin: 5px 0;
  padding-right: 5px;
}

div.two-column-grid > div > label,
div.three-column-grid > div > label {
  font-weight: normal;
}

#frmPayment .paymethod-info {
  margin: 5px 0;
  cursor: pointer;
}

#frmPayment .paymethod-info label {
  font-weight: normal;
  cursor: pointer;
}

.iframe-input-container {
  height: 34px;
}

/**
 * Credit Card Input
 */
.cc-number-field {
  background-image: url(../../../assets/img/payment/unknown.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.cc-number-field.visa {
  background-image: url(../../../assets/img/payment/visa.png);
}

.cc-number-field.mastercard {
  background-image: url(../../../assets/img/payment/mastercard.png);
}

.cc-number-field.amex {
  background-image: url(../../../assets/img/payment/amex.png);
}

.cc-number-field.dinersclub {
  background-image: url(../../../assets/img/payment/dinersclub.png);
}

.cc-number-field.discover {
  background-image: url(../../../assets/img/payment/discover.png);
}

.cc-number-field.unionpay {
  background-image: url(../../../assets/img/payment/unionpay.png);
}

.cc-number-field.jcb {
  background-image: url(../../../assets/img/payment/jcb.png);
}

.cc-number-field.maestro {
  background-image: url(../../../assets/img/payment/maestro.png);
}

.cc-number-field.forbrugsforeningen {
  background-image: url(../../../assets/img/payment/forbrugsforeningen.png);
}

.cc-number-field.dankort {
  background-image: url(../../../assets/img/payment/dankort.png);
}

/**
 * -------------------------
 * Mass Pay
 * -------------------------
 */
tr.masspay-invoice-detail td {
  font-size: 0.8em;
}

tr.masspay-total td {
  background-color: #efefef;
  font-weight: bold;
}

div.product-details div.product-icon {
  margin: 0;
  background-color: #efefef;
  border-radius: 10px;
  padding: 30px;
  line-height: 1em;
  font-size: 60px;
}

@media (max-width: 767.98px) {
  div.product-details div.product-icon {
    font-size: 30px;
  }
}

.product-status {
  padding: 0;
  border-radius: 10px;
}

.product-status-pending {
  background-color: #F89406;
}

.product-status-active {
  background-color: #46A546;
}

.product-status-suspended {
  background-color: #0768B8;
}

.product-status-terminated,
.product-status-cancelled {
  background-color: #666;
}

.product-status-fraud {
  background-color: #000;
}

.product-status-text {
  padding: 5px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

div.product-details-tab-container {
  margin: 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 0;
  background-color: #fff;
}

.module-client-area {
  padding: 15px 15px 0 15px;
}

.ssl-inactive {
  cursor: pointer;
}

#mc-promo-widgets {
  margin: 10px 0;
}

@media (min-width: 1200px) {
  #mc-promo-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1%;
         column-gap: 1%;
  }
}

.mc-promo-manage, .mc-promo-login {
  position: relative;
}

.mc-promo-manage .logo, .mc-promo-login .logo {
  width: 130px;
  height: 130px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 1em;
}

@media (max-width: 767.98px) {
  .mc-promo-manage .logo, .mc-promo-login .logo {
    width: 65px;
    height: 65px;
  }
}

.mc-promo-manage .logo img, .mc-promo-login .logo img {
  max-width: 130px;
  max-height: 130px;
  display: block;
  margin: 0 -50% 0 auto;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767.98px) {
  .mc-promo-manage .logo img, .mc-promo-login .logo img {
    max-width: 65px;
    max-height: 65px;
  }
}

.mc-promo-manage .logo + div, .mc-promo-login .logo + div {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media (max-width: 767.98px) {
  .mc-promo-manage .panel-heading h3, .mc-promo-login .panel-heading h3 {
    margin: 0 0 8px 0 !important;
    font-size: 18px !important;
  }
}

.featured-tlds-container {
  margin: 35px 0 15px;
}

.featured-tld {
  margin: 0 0 20px 0;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.featured-tld .img-container {
  padding: 20px 0;
  height: 115px;
  line-height: 75px;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 767px) {
  .featured-tld .img-container {
    height: 80px;
    line-height: 40px;
  }
}

.featured-tld .img-container img {
  max-width: 70%;
  max-height: 100%;
}

.featured-tld .price {
  padding: 5px;
  background-color: #f9f9f9;
  color: #555;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  border-radius: 0 0 4px 4px;
}

.featured-tld .price.blog {
  background-color: #a0d5cb;
  color: #fff;
}

.featured-tld .price.club {
  background-color: #053796;
  color: #fff;
}

.featured-tld .price.com {
  background-color: #3aa4da;
  color: #fff;
}

.featured-tld .price.couk {
  background-color: #1d3774;
  color: #fff;
}

.featured-tld .price.host {
  background-color: #ed4d42;
  color: #fff;
}

.featured-tld .price.live {
  background-color: #ff9e19;
  color: #fff;
}

.featured-tld .price.name {
  background-color: #44b03e;
  color: #fff;
}

.featured-tld .price.net {
  background-color: #efc00e;
  color: #fff;
}

.featured-tld .price.online {
  background-color: #38ce6a;
  color: #fff;
}

.featured-tld .price.rocks {
  background-color: #fd563c;
  color: #fff;
}

.featured-tld .price.shop {
  background-color: #ff5900;
  color: #fff;
}

.featured-tld .price.social {
  background-color: #ff9a00;
  color: #fff;
}

.featured-tld .price.store {
  background-color: #0eadb3;
  color: #fff;
}

.featured-tld .price.tech {
  background-color: #0db04b;
  color: #fff;
}

.featured-tld .price.tv {
  background-color: #ea3438;
  color: #fff;
}

.featured-tld .price.website {
  background-color: #2db9ea;
  color: #fff;
}

.tld-filters {
  margin: 0 0 25px 0;
}

.tld-filters a {
  display: inline-block;
  margin-bottom: 4px;
  padding: 5px 6px;
  font-size: 90%;
  font-weight: normal;
  border-radius: 2px;
}

.domain-pricing .tld-row {
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid #f5f5f5;
}

.domain-pricing .tld-row.highlighted {
  background: #f3f9fd;
}

.domain-pricing .tld-pricing-header .col-xs-2,
.domain-pricing .tld-pricing-header .col-sm-2 {
  height: 56px;
}

.domain-pricing .tld-pricing-header .col-xs-2,
.domain-pricing .tld-pricing-header .col-sm-2,
.domain-pricing .tld-pricing-header .col-xs-4,
.domain-pricing .tld-pricing-header .col-sm-4 {
  padding-top: 4px;
  padding-bottom: 4px;
  border-bottom: 6px solid #97b5d2;
  background-color: #efefef;
  border-radius: 4px 4px 0 0;
}

.domain-pricing .no-bg {
  background-color: transparent !important;
}

.domain-pricing .tld-pricing-header div:nth-child(odd) {
  border-color: #336699;
  background-color: #f5f5f5;
}

.domain-pricing .two-row-center {
  line-height: 28px;
  margin-top: 6px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .domain-pricing .two-row-center {
    border-right: 2px solid #c7d7e6;
  }
}

.domain-pricing .tld-row.no-tlds {
  display: none;
}

.tld-sale-group {
  padding: 1px 3px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.tld-sale-group-hot {
  background-color: #f9615a;
}

.tld-sale-group-sale {
  background-color: #f7d458;
}

.tld-sale-group-new {
  background-color: #2ad588;
}

.dataTables_wrapper table.table-list {
  margin: 10px 0 !important;
  width: 100% !important;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.dataTables_wrapper table.table-list thead th {
  border-bottom: 4px solid rgba(29, 57, 101, 0.2);
  font-weight: normal;
}

.dataTables_wrapper table.table-list thead th:first-child {
  border-radius: 4px 0 0 0;
}

.dataTables_wrapper table.table-list thead th:visible:last-child {
  border-radius: 4px 0 0 0;
}

.dataTables_wrapper table.table-list tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}

.dataTables_wrapper table.table-list tr:last-child td:visible:last-child {
  border-radius: 0 0 4px 0;
}

.dataTables_wrapper table.table-list thead th.sorting_asc,
.dataTables_wrapper table.table-list thead th.sorting_desc {
  background-color: #f6f6f6;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
}

.dataTables_wrapper .dataTables_filter label .form-control {
  background: url("../../../assets/img/search.png") #fff no-repeat 8px 5px;
  padding: 7px 10px 7px 45px !important;
  height: auto;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .dataTables_wrapper .dataTables_info {
    padding: 9px 10px 40px;
  }
  .dataTables_wrapper .dataTables_filter {
    float: right;
    margin-top: 30px;
    width: 100%;
  }
  .dataTables_wrapper .dataTables_filter label {
    display: block;
    margin: 5px;
    padding: 0;
  }
  .dataTables_wrapper .dataTables_filter label .form-control {
    margin: 0;
    width: 100%;
  }
}

.dataTables_wrapper .dataTables_paginate {
  float: right;
}

.pagination > li > a,
.pagination > li > span {
  color: #444;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover,
.page-item.active .page-link {
  background-color: #4f5360;
  border-color: #4f5360;
}

table.table-list thead th {
  padding: 8px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  color: #333;
  text-align: center;
}

table.table-list tbody td {
  padding: 10px 8px;
  vertical-align: middle;
  font-size: 0.9em;
}

table.table-list tbody td.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.table-list > tbody > tr > td a.border-left {
  border-left: 1px solid #eee;
  padding-left: 20px;
  display: block;
}

.table-list > tbody > tr > td {
  background-color: #fff;
}

.table-list > tbody > tr:hover {
  cursor: pointer;
}

.table-list > tbody > tr:hover > td {
  background-color: #f9f9f9;
}

table.dtr-inline .dtr-title:empty {
  display: none !important;
}

table.table-solid-bottom-border-light-gray {
  border-bottom: 1px solid #dee2e6;
}
