@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);
/**
* Base less stuff
*/
/*
* Variables / Colors
*/
/* Extra small screen / phone */
/* Small screen / tablet */
/* Medium screen / desktop */
/* Large screen / wide desktop */
/* So media queries don't overlap when required, provide a maximum */
/*
* Generics
*/
div.ccm-panel-detail {
  display: block !important;
}
.overlayIframe {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease forwards;
}
.overlayIframe.show {
  display: flex;
}
.iframe-container {
  position: relative;
  width: 80vw;
  height: 80vh;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease forwards;
}
.close-btn-iframe {
  position: absolute;
  top: 10px;
  right: 20px;
  background: #333;
  color: white;
  border: none;
  padding: 6px 10px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@keyframes fadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.9);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .iframe-container {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}
.pricingHeadlineDiv {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.pricingHeadline {
  position: relative;
  width: fit-content;
  font-size: 40px !important;
  line-height: 45px;
  font-weight: 600 !important;
  padding-bottom: 0 !important;
  padding-left: 0px;
}
.pricingTabsContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.pricingTabsContainer .currencySelector {
  position: relative;
}
.pricingTabsContainer .currencySelector:before {
  content: 'Choose Currency:';
  font-size: 10px;
  font-weight: 400;
  position: absolute;
  top: -20px;
  left: 0;
}
.pricingTabsContainer .tab {
  display: inline-flex;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 12px 20px;
  color: #022213;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.pricingTabsContainer .tab:hover {
  background: #F5F5F5;
}
.pricingTabsContainer .tab:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  /* space between icon and text */
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center center;
}
.pricingTabsContainer .tab.vps:before {
  background-image: url('/application/themes/webdock/img/products_menu/vps-cloud.svg');
}
.pricingTabsContainer .tab.wordpress:before {
  background-image: url('/application/themes/webdock/img/products_menu/wordpress.svg');
}
.pricingTabsContainer .tab.company:before {
  background-image: url('/application/themes/webdock/img/products_menu/buildings.svg');
}
.pricingTabsContainer .tab.lb:before {
  background-image: url('/application/themes/webdock/img/products_menu/load-balancer.svg');
}
.pricingTabsContainer .tab.waf:before {
  background-image: url('/application/themes/webdock/img/products_menu/firewall.svg');
}
.pricingTabsContainer .tab.custom:before {
  background-image: url('/application/themes/webdock/img/products_menu/custom.svg');
}
.pricingTabsContainer .tab.active {
  background: #F2FBF5 !important;
  border: 1px solid #01AF35 !important;
  color: #01AF35;
}
.pricingTabsContainer .tab.custom {
  background: transparent;
  border: 1px solid #022213;
}
.pricingTabsContainer .divide {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  margin: 0 8px;
}
.pricingTabsContainer .paymentOptionContainer {
  position: relative;
}
.pricingTabsContainer .paymentOptionContainer:before {
  content: 'Billing Period';
  font-size: 10px;
  font-weight: 400;
  position: absolute;
  top: -20px;
  left: 0;
}
.pricingTabsContainer .paymentOptionContainer .paymentOption {
  position: relative;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.06);
  width: fit-content;
  padding: 5px 6px;
}
.pricingTabsContainer .paymentOptionContainer .paymentOption .monthly {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #022213;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
}
.gap40 {
  gap: 40px;
  padding-top: 8px;
}
.currencySelector .select-wrapper input {
  border-radius: 6px;
  background: #fff;
  margin: 0;
  padding: 0 2px 0 12px;
  font-size: 15px;
  font-weight: 600;
}
.currencySelector .select-wrapper .caret {
  z-index: 2;
}
.priceTables .col {
  padding: 0 1.25rem !important;
}
.priceTable {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  padding: 24px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.priceTable .profileHeading {
  font-size: 24px;
  font-weight: 700;
}
.priceTable .profilePrice {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  padding: 8px 0;
}
.priceTable .profilePrice span.smallText {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  padding-left: 4px;
}
.priceTable .profilePricePrevious {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.priceTable .profilePricePrevious .previousPriceAndSave {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.priceTable .profilePricePrevious .previousPriceAndSave .previousPrice {
  font-size: 14px;
  font-weight: 300;
  text-decoration: line-through;
  color: grey;
}
.priceTable .priceDivider {
  width: 100%;
  height: 1px;
  background: #E8EFE8;
}
.profileSpecsContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 12px;
}
.profileSpecsContainer .profileSpecs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.profileSpecsContainer .profileSpecs img {
  width: auto;
  height: 20px;
  padding-right: 10px;
}
.profileSpecsContainer .profileSpecs img.featureImg {
  width: auto;
  height: 20px;
  padding-right: 10px;
}
.profileSpecsContainer .profileSpecs img.featureImgUnlocked {
  width: auto;
  height: 24px;
  padding-right: 20px;
  padding-left: 4px;
}
.profileSpecsContainer .profileSpecs img.featureImglocked {
  width: auto;
  height: 24px;
  padding-right: 20px;
  padding-left: 4px;
}
.profileSpecsContainer .profileSpecs span {
  font-size: 14px;
  font-weight: 600;
  padding-right: 8px;
  line-height: 1.4;
}
.profileSpecsContainer .profileSpecs span.featureText {
  font-size: 14px;
  font-weight: 400;
  padding-right: 8px;
  line-height: 1.4;
}
.profileSpecsContainer .profileSpecs span.featureTextUnlocked {
  font-size: 13px;
  font-weight: 600;
  padding-right: 8px;
  line-height: 1.4;
}
.profileSpecsContainer .profileSpecs span.featureTextlocked {
  font-size: 13px;
  font-weight: 600;
  padding-right: 8px;
  line-height: 1.4;
}
.profileSpecsContainer .profileSpecs span.featureText-2 {
  font-size: 15px;
  font-weight: 400;
  padding-right: 8px;
  font-style: italic;
  color: #A6A6A6;
  line-height: 1.4;
}
.profileSpecsContainer .profileSpecs span.featureTextNone {
  font-size: 15px;
  font-weight: 400;
  padding-right: 8px;
  font-style: italic;
  color: #A6A6A6;
  line-height: 1.4;
}
.addToCartBtn {
  width: 100%;
  text-align: center;
  padding: 6px 12px;
  background: #01FF48;
  border-radius: 4px;
  border: none;
  color: #023313;
  font-size: 15px;
  font-weight: 700;
}
.loader {
  vertical-align: -2px;
  width: 22px;
  height: 22px;
  border: 4px solid #000;
  border-bottom-color: #01ff48;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: spinnerrotation 1s linear infinite;
}
@keyframes spinnerrotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* HTML: <div class="loader"></div> */
.chart-background-blur {
  width: 98.5%;
  height: 97%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
}
.chart-background-blur .gatekeeperbtn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.chart-background-blur .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
}
.chart-background-blur .container a {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 4px 8px rgba(0, 0, 0, 0.2) !important;
}
.italic-font-style {
  font-style: italic;
  opacity: 0.5;
}
/* Refer a friend - Start */
.floating-referral {
  position: absolute;
  top: 0;
  right: 170px;
}
.floating-referral-cart-visible {
  position: absolute;
  top: 0;
  right: 230px;
}
.floating-referral li,
.floating-referral-cart-visible li {
  padding: 18px 15px;
}
.floating-referral li a:hover,
.floating-referral-cart-visible li a:hover {
  background: #01FF48;
}
.btn-referral-menu {
  background: #01FF48;
  border-radius: 4px;
  padding: 5px 10px;
  gap: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.btn-referral-menu img {
  width: 24px;
  height: auto;
}
.btn-referral-menu span {
  font-size: 13px;
  font-weight: 600;
  color: #022213;
}
.row.flexbox {
  display: flex;
  flex-wrap: wrap;
}
.row.flexbox .col {
  display: flex;
  flex-direction: column;
}
.row.flexbox .col .card,
.row.flexbox .col .card-panel,
.row.flexbox .col .referral-card {
  flex: 1;
}
.row .col .green-box {
  background: #E8EFE8;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  gap: 16px;
  position: relative;
  height: 100%;
}
.row .col .green-box .earnings-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}
.row .col .green-box .earnings-container h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.row .col .green-box .earnings-container .earnings-clicks {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}
.row .col .green-box .earnings-container .earnings-clicks img {
  width: 90px;
  height: auto;
}
.row .col .green-box .earnings-container .earnings-clicks span {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
.earnings-small-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.lbwaf-small-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.earnings-small-text span {
  font-weight: 600;
  color: #01af35;
}
.earnings-large-text {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2;
}
.row .col .green-box h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.row .col .green-box .referral-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.btn-referral {
  background: #01FF48;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  padding: 8px;
  border: none;
  outline: none;
  border-radius: 6px;
  height: 3rem;
  width: 3rem;
}
.btn-referral img {
  width: 24px;
  height: auto;
}
.row.refer.flex {
  display: flex;
  align-items: center;
}
.row.last-row {
  margin-bottom: 0px;
}
.refer .input-field {
  margin-top: 0;
}
.refer .input-field.with-toast {
  position: relative;
  width: fit-content;
}
.link-copied {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #323232;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 9999;
}
.link-copied.show {
  visibility: visible;
  opacity: 1;
}
.referral-code,
.referral-code-earnings {
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  padding: 16px 12px !important;
  height: auto !important;
  margin: 0 !important;
  width: -webkit-fill-available !important;
  font-family: "Raleway", sans-serif;
}
.referral-code-earnings {
  direction: rtl;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px !important;
}
.referral-card {
  background: #E8EFE8;
  padding: 12px 16px 16px 16px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.referral-card img {
  width: 24px;
  height: auto;
}
.referral-card .headline {
  font-size: 14px;
  font-weight: 600;
}
.referral-card .headline.highlight {
  position: relative;
  width: fit-content;
}
.referral-card .headline.highlight:after {
  content: '';
  width: 100%;
  display: inline;
  position: absolute;
  height: 2px;
  background: #01ff48;
  left: 0;
  bottom: -1px;
}
.referral-card .text {
  font-size: 14px;
  line-height: 1.4;
}
.refer-back-arrow {
  width: 24px;
  height: auto;
  position: absolute;
  left: 10px;
  top: 6px;
  cursor: pointer;
}
.refer-table-container.scrollable {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: auto;
  padding-bottom: 16px;
  padding-right: 10px;
}
.refer-table-container.scrollable::-webkit-scrollbar {
  width: 8px;
  /* width of vertical scrollbar */
}
.refer-table-container.scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* light background for the track */
  border-radius: 4px;
}
.refer-table-container.scrollable::-webkit-scrollbar-thumb {
  background-color: #888;
  /* scrollbar color */
  border-radius: 4px;
  border: 2px solid transparent;
  /* add padding around thumb */
  background-clip: content-box;
}
.refer-table-container.scrollable::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* darker on hover */
}
.refer-table-container.scrollable {
  scrollbar-width: thin;
  /* options: auto, thin, none */
  scrollbar-color: #888 #f1f1f1;
  /* thumb color, track color */
}
.refer-table-container {
  position: relative;
}
.pricetable.refer-table {
  background-color: transparent;
  margin-top: 6px;
}
.pricetable.refer-table thead th {
  padding: 0 5px 5px 5px;
}
.pricetable.refer-table thead th.heading-timestamp {
  width: 33%;
}
.pricetable.refer-table thead th.heading-friend {
  width: 40%;
}
.pricetable.refer-table thead th.heading-price {
  width: 27%;
  text-align: right;
}
.user-dashboard .pricetable.refer-table thead tr {
  border-bottom: 1px solid #cccccc;
}
.user-dashboard .pricetable.refer-table tbody tr {
  border-bottom: 1px solid #cccccc;
}
.user-dashboard .pricetable.refer-table tbody tr td.refer-table-timestamp {
  width: 33%;
}
.user-dashboard .pricetable.refer-table tbody tr td.refer-table-friend {
  width: 40%;
}
.user-dashboard .pricetable.refer-table tbody tr td.refer-table-price {
  width: 27%;
  text-align: right;
}
.user-dashboard .pricetable.refer-table > tbody > tr:nth-child(odd) {
  background-color: transparent;
  border-bottom: 1px solid #cccccc;
}
.user-dashboard .pricetable.refer-table > tfoot {
  border-top: none;
  background-color: transparent;
}
.user-dashboard .pricetable.refer-table > tfoot > tr {
  background-color: transparent;
  border-bottom: 1px solid #000;
}
.user-dashboard .pricetable.refer-table > tfoot > tr > td.refer-total-price {
  text-align: right;
}
.faq-container ul {
  border: none;
  box-shadow: none;
}
.faq-container ul li {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  margin-bottom: 16px;
}
.faq-container ul li .collapsible-body {
  background: #E8EFE8;
  padding: 1.5rem 1rem;
}
.faq-container ul li.active {
  border: 0px solid rgba(0, 0, 0, 0.4);
}
.faq-container ul li.active .collapsible-body {
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 0px 0px 6px 6px;
}
.collapsible-header i {
  width: 2rem;
  font-size: 1.6rem;
  display: inline-block;
  text-align: center;
}
.faq-container ul li .collapsible-header {
  display: flex;
  justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
  padding: 1rem;
  background-color: transparent;
  border-bottom: 0px solid #ddd !important;
  font-size: 16px;
  font-weight: 600;
}
.faq-container ul li .collapsible-header .caret {
  color: #999;
  margin-right: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-container ul li.active {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.faq-container ul li.active .collapsible-header {
  background-color: #E8EFE8;
  border-radius: 6px 6px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(0, 0, 0, 0.4);
  border-right: 1px solid rgba(0, 0, 0, 0.4);
}
.faq-container ul li.active .collapsible-header .caret {
  color: black;
  transform: rotate(-180deg);
  transform-origin: 0.6em 0.5em;
  line-height: 1;
}
.refer-table-container,
.earnings-container {
  transition: transform 0.5s ease, opacity 0.5s ease;
  position: relative;
}
/* Hidden state */
.hidden {
  display: none;
}
.slide-out-left {
  transform: translateX(100%);
  opacity: 0;
}
/* Animate in from right */
.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
  display: block;
}
.active-slide-in {
  transform: translateX(0);
  opacity: 1;
}
.in-active-slide-in {
  display: none !important;
}
.upstreamPortContainer {
  padding-left: 1.25rem !important;
}
.upstreamServerContainer {
  padding-right: 1.25rem !important;
}
.upstreamServerContainer .row .col .input-field {
  margin-top: 0;
}
.upstreamPortContainer .row .input-field {
  margin-top: 0;
}
.loadbalancers .select-wrapper input.select-dropdown,
.wafs .select-wrapper input.select-dropdown {
  margin: 0 !important;
  height: 2rem !important;
  padding-left: 8px !important;
  color: #444;
}
.select-wrapper {
  position: relative;
}
.select-wrapper span.caret {
  background-image: url("/application/themes/webdock/img/hwicons2023/arrow-down-black.svg");
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
  color: initial;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  /*height: 10px;*/
  margin: auto 0;
  font-size: 10px;
  line-height: 10px;
}
@media screen and (max-width: 1200px) {
  .row.flexbox .col {
    padding: .75rem .75rem;
  }
  .referral-code {
    direction: rtl;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .floating-referral {
    right: 10px;
  }
  .floating-referral-cart-visible {
    right: 50px;
  }
}
@media screen and (max-width: 992px) {
  .row.refer .col {
    padding: .75rem .75rem;
  }
  .addUpstreamBtn {
    order: 1;
  }
  .addUpstreamBtn .input-field {
    margin-top: 0 !important;
  }
  .upstreamPortContainer {
    margin-top: 32px;
    padding-left: 0.75rem !important;
  }
  .upstreamServerContainer {
    padding-right: 0.75rem !important;
  }
  .lbwaf_BasicSettings {
    order: 1;
  }
  .lbwaf_Information {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .input-field label[for="domain"] {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .row .col .green-box .earnings-container {
    justify-content: center;
  }
  .row .col .green-box .earnings-container .col {
    text-align: center;
  }
  .row .col .green-box .earnings-container .earnings-clicks {
    justify-content: center;
  }
  .row .col .green-box .earnings-container .earnings-clicks span {
    font-size: 48px;
  }
  .row .col .green-box .earnings-container .earnings-clicks img {
    width: 75px;
  }
  .earnings-large-text {
    font-size: 40px;
  }
  .refer-table-container.scrollable {
    width: 100%;
    overflow-x: auto;
  }
  .pricetable.refer-table {
    min-width: 400px;
    /* or however wide your table needs to be */
  }
  .pricetable.refer-table thead th.heading-timestamp {
    width: 20%;
  }
  .pricetable.refer-table thead th.heading-friend {
    width: 20%;
  }
  .pricetable.refer-table thead th.heading-price {
    width: 60%;
    text-align: left;
  }
  .user-dashboard .pricetable.refer-table tbody tr td.refer-table-timestamp {
    width: 20%;
  }
  .user-dashboard .pricetable.refer-table tbody tr td.refer-table-friend {
    width: 20%;
  }
  .user-dashboard .pricetable.refer-table tbody tr td.refer-table-price {
    width: 60%;
    text-align: left;
  }
  .user-dashboard .pricetable.refer-table > tfoot > tr > td.refer-total-price {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .floating-referral {
    display: none;
  }
  .floating-referral-cart-visible {
    display: none;
  }
}
/* Refer a friend - End */
/* Loadbalancer and WAF - Start */
.price-info-box {
  box-sizing: border-box;
  background: #FBFBFB;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}
.price-info-box .headline {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  padding: 8px 0 0 0;
}
.price-info-box .price-container {
  border-bottom: 1px solid #eee;
  padding: 0 0 8px 0;
  box-sizing: border-box;
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  align-items: flex-start;
}
.price-info-box .price-container p {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 !important;
}
table.loadbalancer-table tbody tr td a.iframe-link {
  margin-right: 16px;
}
/* Loadbalancer and WAF - End */
/*
* Tiril styling start (LIGHT)
*/
#paymentChooseText {
  text-align: center;
}
.pricingOffer,
.pricingOfferVPS {
  position: relative;
}
.pricingOfferEpyc,
.pricingOfferXeon {
  position: relative;
  max-width: fit-content;
}
.pricingOffer a::after {
  content: '50% Off';
  background: #01FF48;
  color: #022213;
  font-size: 10px;
  font-weight: 600;
  padding: 4px;
  border-radius: 4px;
  top: 8px;
  right: -6px;
  position: absolute;
  line-height: 1;
  z-index: -1;
  letter-spacing: 0.15px;
  font-family: 'Poppins', sans-serif;
}
.pricingOfferVPSspan {
  background: #022213;
  color: #01FF48;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 4px 4px 4px;
  border-radius: 4px;
  top: -12px;
  right: -48px;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.15px;
  font-family: 'Poppins', sans-serif;
}
.pricingOfferEpycspan,
.pricingOfferXeonspan {
  background: #022213;
  color: #01FF48;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 4px 4px 4px;
  border-radius: 4px;
  top: -12px;
  right: -48px;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.15px;
  font-family: 'Poppins', sans-serif;
}
.pricingOfferVPSspanEnterprise {
  background: #022213;
  color: #01FF48;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 4px 4px 4px;
  border-radius: 4px;
  top: 2px;
  right: -55px;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.15px;
  font-family: 'Poppins', sans-serif;
}
.validateCardText {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  text-align: center;
  font-style: italic;
}
.account-type-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 16px;
  margin-bottom: 24px;
}
.account-type-container .account-type-btn {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.02), 0px 2px 4px rgba(0, 0, 0, 0.08) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  position: relative;
  height: auto !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 !important;
  transition: border 0.3s ease;
}
.account-type-container .account-type-btn.active {
  border: 2px solid #01FF48;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 4px 6px rgba(0, 0, 0, 0.12) !important;
}
.account-type-radio-button {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.account-type-radio-button.checked::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #01FF48;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.account-type-container .account-type-btn div {
  font-weight: 600;
}
.account-type-container .top-up-btn {
  border: 1px solid #01FF48;
  padding: 12px 8px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  position: relative;
}
.account-type-container .top-up-btn span {
  position: absolute;
  background: #01FF48;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 24px;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  top: -14px;
}
/** Saved Credit Card **/
.SavedCard .saved-card-wrapper {
  width: 260px;
  height: auto;
  min-width: 0;
  min-height: 0;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #4092b5), color-stop(90%, #3580aa));
  background: -webkit-linear-gradient(left, #4092b5 60%, #3580aa 90%);
  background: -o-linear-gradient(left, #4092b5 60%, #3580aa 90%);
  background: linear-gradient(to right, #4092b5 60%, #3580aa 90%);
  border-radius: 8px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0px;
  margin: 0 auto 24px auto;
}
.SavedCard .currentlySaved {
  text-align: center;
}
.SavedCard .currentlySaved span {
  font-weight: 600;
}
.SavedCard .saved-card-wrapper .card-logo {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-column-end: 5;
  margin: 16px 16px 0 0;
}
.SavedCard .saved-card-wrapper .card-chip {
  grid-row-start: 2;
  grid-column-start: 1;
  grid-row-end: 3;
  grid-column-end: 5;
  max-height: 30px;
  margin: 0 0 8px 16px;
  justify-self: left;
}
.SavedCard .saved-card-wrapper::after {
  content: " ";
  position: absolute;
  bottom: 10px;
  right: 15px;
}
.SavedCard .saved-card-wrapper .credit-card-last4First {
  font-size: 24px;
  grid-row-start: 3;
  grid-column-start: 1;
  grid-row-end: 4;
  grid-column-end: 2;
  margin: 0 0 8px 16px;
}
.SavedCard .saved-card-wrapper .credit-card-last4Second {
  font-size: 24px;
  grid-row-start: 3;
  grid-column-start: 2;
  grid-row-end: 4;
  grid-column-end: 3;
  margin: 0 0px 0 8px;
}
.SavedCard .saved-card-wrapper .credit-card-last4Third {
  font-size: 24px;
  grid-row-start: 3;
  grid-column-start: 3;
  grid-row-end: 4;
  grid-column-end: 4;
}
.SavedCard .saved-card-wrapper .credit-card-last4Fourth {
  font-size: 24px;
  grid-row-start: 3;
  grid-column-start: 4;
  grid-row-end: 4;
  grid-column-end: 5;
  margin: 0 16px 8px 0;
}
.SavedCard .saved-card-wrapper .cardholder-name {
  grid-row-start: 4;
  grid-column-start: 1;
  grid-row-end: 5;
  grid-column-end: 3;
  margin: 0 0 10px 16px;
  justify-self: left;
  font-size: 13px;
  width: max-content;
}
.SavedCard .saved-card-wrapper .card-exp {
  grid-row-start: 4;
  grid-column-start: 3;
  grid-row-end: 5;
  grid-column-end: 5;
  justify-self: right;
  margin: 0 16px 10px 0;
  font-size: 13px;
}
.SavedCard a {
  font-size: 14px;
  font-weight: 600;
}
.SavedCard.visa .saved-card-wrapper {
  /*background: #4862e2;*/
}
.SavedCard.visa .saved-card-wrapper .card-logo {
  justify-self: right;
  height: 16px;
  width: 50px;
  background-image: url('/application/themes/webdock/img/cardlogos/visa.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.SavedCard.mastercard .saved-card-wrapper .card-logo {
  justify-self: right;
  height: 25px;
  width: 40px;
  background-image: url('/application/themes/webdock/img/cardlogos/mastercard.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.SavedCard.amex .saved-card-wrapper .card-logo {
  justify-self: right;
  height: 14px;
  width: 50px;
  background-image: url('/application/themes/webdock/img/cardlogos/amex.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.SavedCard.discover .saved-card-wrapper .card-logo {
  justify-self: right;
  height: 14px;
  width: 50px;
  background-image: url('/application/themes/webdock/img/cardlogos/discover.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.SavedCard.diners .saved-card-wrapper .card-logo {
  justify-self: right;
  height: 24px;
  width: 30px;
  background-image: url('/application/themes/webdock/img/cardlogos/diners.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.SavedCard.jcb .saved-card-wrapper .card-logo {
  justify-self: right;
  height: 15px;
  width: 30px;
  background-image: url('/application/themes/webdock/img/cardlogos/jcb.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.SavedCard.unionpay .saved-card-wrapper .card-logo {
  justify-self: right;
  height: 30px;
  width: 50px;
  background-image: url('/application/themes/webdock/img/cardlogos/unionpay.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
/** Cart **/
.floating-cart {
  position: absolute;
  top: 0;
  right: 170px;
}
.create-server-button {
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #022213 !important;
  background: #01FF48;
  border-radius: 4px !important;
  border: 2px solid #01FF48;
  padding: 10px 60px;
  width: fit-content;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  text-transform: uppercase;
}
/* Cart */
.cart-container .cart-container-li .cart {
  position: absolute;
  border: none;
  border-bottom: 2px solid #ccc;
  background: #fff;
  right: 0;
  transform: translate(32px, 0);
  top: 64px;
  box-shadow: 0 0 10px -3px #ced5d5;
  max-width: 360px;
  min-width: 360px;
  border-radius: 10px;
  z-index: 10;
}
.cart-container .cart-container-li .cart.public {
  transform: translate(0, 0);
}
.cart-container .cart-container-li .cart::before {
  width: 32px;
  height: 20px;
  background: #fff;
  position: absolute;
  right: 0;
  top: -16px;
  transform: translate(-44px, 0);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
}
.cart-container .cart-container-li .cart.public::before {
  transform: translate(-18px, 0);
}
.cart-container li {
  padding: 22px 0;
}
.cart-container li a {
  position: relative;
}
.cart-container li a span.dot {
  width: 12px;
  height: 12px;
  border-radius: 24px;
  background: #01FF48;
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(2px, 13px);
}
.close-cart {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.close-cart i {
  font-size: 24px;
  margin-right: 0 !important;
  width: auto;
  height: auto;
  display: block;
  color: #000;
  line-height: 1 !important;
}
.cart-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  position: relative;
}
.cart-content .headline {
  width: 100%;
  line-height: 1.2;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  border-bottom: 1px solid #01FF48;
}
.cart-content .headline-container {
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  min-height: auto;
  border-bottom: 1px solid #01FF48;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cart-content .headline-container .headline {
  width: 100%;
  line-height: 1.2;
}
.cart-content .headline-container .profile-price {
  background: #01FF48;
  padding: 4px 8px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1;
  width: fit-content;
}
.cart-content .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #01FF48;
}
.cart-content .content .profile-info {
  padding: 0 16px 16px 16px;
}
.cart-content .content .profile-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #000;
}
.cart-content .content .profile-info p {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  color: #000;
}
.cart-content .content .profile-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  color: #000;
  width: 100%;
  line-height: 1;
  padding: 16px 16px 0 16px;
  border-top: 1px solid #01FF48;
}
.cart-content .content .profile-price span.monthly {
  font-size: 14px;
  font-weight: 600;
}
.cart-content .content .profile-price span.price {
  font-size: 15px;
  font-weight: 700;
}
.cart-content .continue-bt {
  padding: 16px;
  min-height: auto;
  display: flex;
}
.cart-content .continue-bt a {
  width: 100%;
  justify-content: center;
  padding: 5px 20px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  background: #01FF48;
  border-radius: 4px;
  border: 2px solid #01FF48;
  height: fit-content;
  transition: all 0.3s ease-out;
  text-align: center;
}
.cart-content .continue-bt a:hover {
  background: #fff;
  border: 2px solid #01FF48;
  transition: all 0.3s ease-out;
}
.clear-cart-btn-container {
  margin-right: 16px;
  margin-left: 16px;
}
.clear-cart-btn {
  text-transform: none !important;
  width: 100%;
  margin: 0 0 16px !important;
  background-color: transparent !important;
  border: 2px solid #01ff48;
  height: fit-content;
  letter-spacing: 0 !important;
}
.clear-cart-btn:hover {
  background-color: #01ff48 !important;
}
.cart-mobile-view {
  display: none;
}
@media screen and (max-width: 1200px) {
  .nav-desktop-right li {
    display: none;
  }
  .floating-cart {
    right: 10px;
  }
  .cart-container .cart-container-li .cart {
    transform: translate(4px, 0);
  }
  .cart-container .cart-container-li .cart::before {
    transform: translate(-16px, 0);
  }
}
/** LOGIN / SIGNUP **/
.page-template-login,
.page-template-signup {
  background: none;
  background-color: #e8efe8 !important;
}
.page-template-signup .form-card-inner h1 {
  color: #022213;
  margin: 0;
}
.page-template-signup .form-card-inner strong {
  color: #01af35;
}
.dropdown-button {
  position: relative;
}
.authentication-type-google form .smmargin-top {
  margin-right: -.75rem;
  margin-left: -.75rem;
}
.authentication-type-google form .xlmargin-top {
  margin-right: -.75rem;
  margin-left: -.75rem;
}
.authentication-type-google form .smmargin-top .teal-text strong {
  color: #000;
  font-size: 16px;
}
.authentication-type-google form .xlmargin-top .teal-text strong {
  color: #000;
  font-size: 16px;
}
.authentication-type-google form .row sup {
  color: red;
}
/** DASHBOARD STYLING **/
.card-container {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 90px 32px 32px;
  margin-bottom: 40px;
  transition: padding 0.3s ease;
}
.card-container-servers {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 32px 0 0 0;
  margin-bottom: 40px;
  margin-top: 32px;
  transition: padding 0.3s ease;
}
.card-container-manage-servers {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 80px 32px 32px;
  margin-top: 32px;
  margin-bottom: 40px;
  transition: padding 0.3s ease;
}
.card-container-server-activity {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 0;
  margin-bottom: 40px;
  transition: padding 0.3s ease;
}
.card-container-server-activity .card-panel {
  border-radius: 10px !important;
}
.card-container-server-activity .card-panel .card-content {
  padding-top: 0 !important;
}
.card-container-events {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 32px 0 0 0;
  margin-bottom: 40px;
  margin-top: 16px;
  transition: padding 0.3s ease;
}
.card-container-all-events {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 80px 32px 32px;
  margin-bottom: 40px;
  transition: padding 0.3s ease;
}
.user-dashboard .server-btn-manage {
  position: absolute;
  right: 0;
  top: 0;
}
.card-container-shellusers {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 70px 32px 32px;
  margin-bottom: 40px;
  transition: padding 0.3s ease;
}
div.card-container > div.card-panel {
  padding: 0;
  margin: 0;
}
.card-header-container {
  background: #022213;
  border-radius: 6px 6px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
.card-header-container-has-button {
  padding: 12px 24px;
}
.card-content:not(:has(> table)) {
  padding-top: 10px;
}
.card-header-headline {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.card-header-headline h6 {
  font-size: 18px;
  color: #fff;
  margin: 0;
  font-weight: 600;
}
.card-container-profile {
  box-sizing: border-box;
  background: #FBFBFB !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px !important;
  position: relative;
  margin: 0 !important;
}
.card-container-profile-summary {
  box-sizing: border-box;
  background: #FBFBFB !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px !important;
  position: relative;
  margin: 0 !important;
  padding: 0 20px;
}
.monitoring .card-panel .card-content .row,
.existingSnapshots .card-panel .card-content .row,
.existingCronJobs .card-panel .card-content .row,
.serverScripts .card-panel .card-content .row,
.existingShellUsers .card-panel .card-content .row,
.manageAddOns .card-panel .card-content .row {
  margin-left: auto;
  margin-right: auto;
}
.card-container-shellusers .card-content .row .col .card.header-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 0;
}
.tab-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 24px;
}
.tab-container .tab {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: 14px;
  padding-bottom: 4px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.tab-container .tab a {
  color: #000;
}
.tab-container .tab.active {
  font-weight: 700;
  border-bottom: 2px solid #01FF48;
}
.tab-container .tab img {
  width: 24px;
  height: 24px;
}
.tab-container .tab:not(.active)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #01FF48;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.tab-container .tab:not(.active):hover::after {
  transform: scaleX(1);
}
.tab-container-2 {
  display: flex;
  flex-direction: row;
}
.tab-container-2 .tab {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  padding: 10px 16px;
}
.tab-container-2 .tab a {
  color: #000;
}
.tab-container-2 .tab.active {
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.04), 0px -4px 8px rgba(0, 0, 0, 0.06) !important;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: -1px;
}
.tab-container-2 .tab.active-not-first {
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.04), 0px -4px 8px rgba(0, 0, 0, 0.06) !important;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: -1px;
}
.tab-container-2 .tab img {
  width: 24px;
  height: 24px;
}
.location-tile {
  border-radius: 12px !important;
}
.createserver h3,
.createserver h3 strong {
  color: #022213;
}
.page-template-contact {
  font-family: 'Raleway', sans-serif;
}
.page-template-contact .side-by-side-cards h1 {
  color: #022213;
}
.page-template-contact .form-card-inner {
  font-family: 'Raleway', sans-serif;
}
.page-template-contact .side-by-side-cards strong {
  color: #01af35;
}
.dropdown-content li > a,
.dropdown-content li > span {
  color: #01af35;
}
.user-dashboard .card .card-content .card-title {
  color: #022213;
}
.user-dashboard blockquote,
.modal-content blockquote {
  border-left: 5px solid #01ff48;
}
.user-dashboard .green-text {
  color: #01af35 !important;
}
.user-dashboard .title-wrapper h2,
.user-dashboard .card-content h2 {
  font-weight: 500;
  color: #022213 !important;
}
.user-dashboard a.btn .fa-download {
  color: #022213;
}
.form-card-inner input[type="checkbox"] + label:before,
.user-dashboard input[type="checkbox"] + label:before {
  border: 2px solid #01af35;
}
.form-card-inner input[type="checkbox"]:checked + label:before,
.user-dashboard input[type="checkbox"]:checked + label:before {
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #01af35;
  border-bottom: 2px solid #01af35;
}
.user-dashboard .input-field .prefix.active {
  color: #01af35;
}
.user-dashboard .input-field .prefix {
  color: #022213;
}
.page-template-shellusers input#password {
  margin-bottom: 0;
}
#passwordHelp {
  margin-left: 3rem;
}
input:not([type]):focus:not([readonly]),
input[type=text]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=date]:focus:not([readonly]),
input[type=datetime]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border-color: #01ff48 !important;
  border-bottom: 1px solid #01ff48;
  box-shadow: 0 1px 0 0 #01ff48;
}
input:not([type]):focus:not([readonly]) + label,
input[type=text]:focus:not([readonly]) + label,
input[type=password]:focus:not([readonly]) + label,
input[type=email]:focus:not([readonly]) + label,
input[type=url]:focus:not([readonly]) + label,
input[type=time]:focus:not([readonly]) + label,
input[type=date]:focus:not([readonly]) + label,
input[type=datetime]:focus:not([readonly]) + label,
input[type=datetime-local]:focus:not([readonly]) + label,
input[type=tel]:focus:not([readonly]) + label,
input[type=number]:focus:not([readonly]) + label,
input[type=search]:focus:not([readonly]) + label,
textarea.materialize-textarea:focus:not([readonly]) + label {
  color: #01af35;
  font-weight: 600;
}
.input-field label {
  color: #696969;
}
.input-field label:not(.label-icon).active {
  color: #01af35;
  font-weight: 600;
}
.input-field input:valid {
  border-bottom: 1px solid #3fb87f;
  box-shadow: 0 1px 0 0 #3fb87f;
}
.input-field [type="radio"]:not(:checked) + label:before,
.input-field [type="radio"]:not(:checked) + label:after {
  border: 2px solid #01af35;
}
.input-field [type="radio"]:not(:checked) + label:after {
  transform: scale(0);
}
.input-field [type="radio"]:checked + label:before {
  border: 2px solid #01af35;
}
.input-field [type="radio"]:checked + label:after {
  transform: scale(0.5);
  background-color: #01af35;
}
.input-field [type="radio"] + label:before,
.input-field [type="radio"] + label:after {
  width: 20px;
  height: 20px;
}
a {
  color: #01af35;
}
nav.loggedin .nav-desktop.left a {
  color: #fff;
}
.user-dashboard .btn {
  font-weight: 700;
  color: #022213;
}
.user-dashboard .btn .material-icons {
  color: #022213 !important;
}
.user-dashboard .card-header-change .create-top-btn {
  height: auto !important;
  line-height: 1 !important;
  padding: 8px 32px !important;
  font-size: 14px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 4px !important;
}
.user-dashboard .card-header-change .create-top-btn i {
  font-size: 14px !important;
}
div.tap-target-wave > div > a {
  height: auto !important;
  line-height: 1 !important;
  padding: 8px 24px !important;
  font-size: 14px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 4px !important;
}
.smalltext,
.small-text,
.text-small,
.card .card-content a {
  color: #01af35;
}
/** NAVBAR PRODUCTS DROPDOWN START **/
.products-dropdown .header-wrapper {
  display: flex;
  grid-gap: 8px;
  align-items: center;
}
.products-dropdown .header-wrapper .menu-label {
  border-radius: 50px;
  font-size: 10px;
  font-weight: 400;
  padding: 2px 12px;
  height: fit-content;
  line-height: 2;
  display: flex;
  align-items: center;
}
.products-bottom-bar {
  background-color: #F7F7F7;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 0px 0px 10px 10px;
  grid-gap: 12px;
}
.products-bottom-bar h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 !important;
}
.products-bottom-bar p {
  padding-bottom: 0 !important;
  padding-top: 5px;
  margin: 0 !important;
}
.products-bottom-bar .menu-btn {
  background: #01FF48;
  border: 2px solid #01FF48;
  color: #000;
  border-radius: 4px;
  font-size: 14px;
  padding: 5px 20px;
  height: fit-content;
}
.products-bottom-bar .menu-btn.secondary-btn {
  background: transparent;
}
.products-bottom-bar .menu-btn:hover {
  background-color: white;
  color: black;
}
.products-bottom-bar .menu-btn.secondary-btn:hover {
  background: #01FF48;
}
.products-bottom-bar p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #989898;
}
.hover-underline-animation::after {
  background-color: #01FF48 !important;
}
.hover-underline-animation-submenu {
  display: inline-block;
  position: relative;
  color: #01FF48;
}
.hover-underline-animation-submenu::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: -5px;
  left: 0;
  background-color: #01FF48;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation-submenu:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.hover-underline-animation-submenu:hover .h4 {
  color: #01FF48;
}
.dropdown-content li:hover {
  background: #5897fb;
}
.dropdown-content li:hover span {
  color: #fff;
}
.products-dropdown .inner-dropdown {
  overflow: hidden;
}
.products-dropdown + div,
.products-dropdown a,
.products-dropdown p {
  font-family: 'Raleway', sans-serif;
}
.products-dropdown .submenuheader {
  font-weight: 600 !important;
  color: #0B2114 !important;
  font-size: 18px !important;
}
.products-dropdown p {
  color: #686666 !important;
  font-weight: 300;
  font-size: 14px !important;
}
.dropdown-menu.products-dropdown {
  width: 440px !important;
  transition: width .5s ease !important;
  padding: 0 !important;
}
.products-dropdown .qbxmedia {
  width: 440px;
  position: relative;
}
.products-dropdown .media i img {
  width: 46px;
  height: 46px;
}
.products-dropdown .qbxmedia .media {
  margin-bottom: 0;
  padding-bottom: 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.products-dropdown .media i img {
  padding: 8px;
  max-width: none;
}
.products-dropdown .submenu .media-body .submenu-header,
.products-dropdown .submenu .media-body p {
  padding-right: 21px;
}
.submenu .submenu-body p {
  padding-bottom: 5px;
}
.submenu.hovered .submenu-body.hover-underline-animation::after {
  transform: scaleX(1);
}
.products-dropdown .inner-submenu-sub a:not(:first-child) {
  padding-top: 20px;
}
.products-dropdown .inner-submenu-sub a p {
  padding-bottom: 5px;
}
.products-dropdown .submenu-sub {
  position: absolute;
  right: -100%;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 16px;
  padding-right: 55px;
}
.products-dropdown .submenu-sub a:hover .submenuheader,
.products-dropdown .submenu:hover .submenu-body .submenuheader {
  color: #00FF00 !important;
}
.products-dropdown.show-subitems {
  width: 840px !important;
}
.submenu.has-subitems::after {
  content: '';
  background-image: url(/application/themes/webdock/img/products_menu/arrow-right.svg);
  width: 11px;
  height: 20px;
  display: block;
  position: absolute;
  right: 18px;
  background-repeat: no-repeat;
}
.inner-submenu-sub {
  height: 100%;
  position: relative;
}
.inner-submenu-sub:before {
  content: '';
  width: 2.5px;
  background: #01FF48;
  height: 100%;
  position: absolute;
  left: -20px;
}
.qbxmedia .submenu-sub .submenuheader {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #494949;
}
.products-dropdown .submenu:not(:first-child) {
  padding-top: 10px !important;
}
@media screen and (min-width: 992px) {
  .has-subitems .submenu-sub {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  /* Show only the hovered element's submenu-sub */
  .has-subitems.hovered .submenu-sub {
    opacity: 1;
    visibility: visible;
  }
}
.submenu.has-subitems.products-heading {
  display: none;
}
@media screen and (max-width: 991px) {
  .cart-mobile-view {
    display: block;
  }
  li.dropdown {
    width: 100%;
  }
  .menu_sec li.dropdown .submenuheader,
  .menu_sec li a {
    font-family: 'Raleway', sans-serif;
    font-weight: 600 !important;
    color: #0B2114 !important;
    font-size: 16px !important;
  }
  .menu_sec li.dropdown .submenu-sub .submenuheader {
    font-weight: 400 !important;
    font-size: 14px !important;
  }
  .products-dropdown .inner-submenu-sub a:not(:first-child) {
    padding-top: 8px;
  }
  .menu_sec a img {
    width: 46px !important;
    height: 46px !important;
    max-width: none !important;
    padding: 8px !important;
  }
  .navbar-collapse .logsign {
    flex-direction: row;
  }
  .navbar-collapse .logsign li a {
    border: 2px solid #01FF48 !important;
    color: #000 !important;
  }
  .navbar-collapse .logsign li.slct a.ligin-user {
    background: #01FF48 !important;
    border: 2px solid #01FF48 !important;
    color: #000 !important;
  }
  .products-dropdown .qbxmedia .media:hover,
  .qbxmedia .media:hover {
    background: none !important;
  }
  .products-bottom-bar {
    display: none !important;
  }
  .products-dropdown .submenu {
    flex-direction: column;
  }
  .submenu-body {
    width: 100% !important;
  }
  .show-subitems .submenu.has-subitems.hovered .submenu-sub {
    margin-top: 10px;
    opacity: 1;
  }
  .products-dropdown .submenu-sub {
    position: static !important;
    padding: 0px;
    padding-left: 46px;
    opacity: 0;
  }
  .products-dropdown .qbxmedia {
    width: 100%;
  }
  .products-dropdown .inner-submenu-sub:before {
    content: none;
  }
  .submenu-sub {
    max-height: 0;
    /* Start at height 0 for closed state */
    overflow: hidden;
    /* Hide overflowing content */
    transition: 0.5s ease-in-out;
    /* Smooth transition */
  }
  /* When active, set max-height to a large enough value to fit content */
  .submenu.hovered .submenu-sub {
    max-height: 500px;
    /* Adjust based on expected content height */
  }
  .submenu.has-subitems .header-wrapper::after {
    content: '';
    background-image: url(/application/themes/webdock/img/products_menu/arrow-right.svg);
    width: 11px;
    height: 20px;
    display: block;
    position: absolute;
    right: 18px;
    background-repeat: no-repeat;
  }
  .submenu.has-subitems .header-wrapper::after {
    transform: rotate(90deg);
    transition: transform .3s ease;
  }
  .show-subitems .submenu.has-subitems.hovered .header-wrapper::after {
    transform: rotate(270deg);
  }
  .submenu.has-subitems::after {
    content: none;
  }
  .qbxmedia .media.padtop {
    padding-top: 10px !important;
    padding-right: 0 !important;
  }
  .submenu.has-subitems.products-heading {
    padding: 10px 0px 12px 20px;
    flex-direction: row;
    align-items: center;
    display: flex;
  }
  .submenu.has-subitems.products-heading i {
    margin-right: 9px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .submenu.has-subitems.products-heading .submenuheader {
    margin-top: 4px;
    line-height: 26px;
  }
  .submenu.has-subitems.products-heading.show-products .header-wrapper::after {
    transform: rotate(270deg) !important;
  }
  .submenu.has-subitems.products-heading .header-wrapper::after {
    transform: rotate(90deg) !important;
  }
  .products-dropdown .qbxmedia {
    max-height: 0;
    /* Start at height 0 for closed state */
    overflow: hidden;
    /* Hide overflowing content */
    transition: 0.5s ease-in-out;
    /* Smooth transition */
  }
  /* When active, set max-height to a large enough value to fit content */
  .products-dropdown .qbxmedia.show-products {
    max-height: 500px;
    /* Adjust based on expected content height */
  }
}
/** NAVBAR PRODUCTS DROPDOWN END **/
.createCustomProfile-trigger {
  background-color: #022213 !important;
  border-radius: 0px 0px 8px 8px;
  padding: 1.4em 1em !important;
  position: relative !important;
  overflow: hidden;
}
.createCustomProfile-trigger .product-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media screen and (max-width: 991px) {
  .createCustomProfile-trigger .product-content {
    justify-content: center;
  }
}
.createCustomProfile-trigger .product-content .btn {
  color: #022213 !important;
}
.createCustomProfile-trigger .product-content i {
  position: absolute;
  font-size: 100px;
  z-index: -1;
  color: rgba(0, 255, 73, 0.16);
  left: -13px;
  bottom: -3px;
}
.createCustomProfile-trigger .product-content div {
  color: #01ff48;
  font-weight: 600;
  font-size: 16px;
}
.createCustomProfile-trigger .product-content div span {
  font-weight: 700;
}
body.server-admin {
  background: none;
  background-color: #e8efe8 !important;
}
body.server-admin footer.main_footer:before {
  background: url(/static/common/images/curvebg2-gray.png) no-repeat 0 0;
  background-size: 100% 100%;
}
nav {
  box-shadow: none !important;
}
.remodal-wrapper .remodal {
  padding: 0 !important;
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
}
.remodal-close:before {
  font-size: 32px;
}
.remodal-close {
  color: white;
  top: 2px;
  right: 2px;
}
.modal-title {
  background-color: #022213;
  color: white;
  border-radius: 8px 8px 0px 0px;
  padding: 16px 24px;
  text-align: left;
}
.modal-content {
  padding: 26px;
}
.remodal .btn {
  box-shadow: none;
  transition: 0.4s ease;
}
#chooseButtons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .remodal-wrapper {
    margin: 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .main_footer::before {
    top: -8px !important;
  }
  .form-card-inner .account-type-container {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-row-gap: 16px !important;
  }
  .card-panel.has-tabs {
    padding: 16px;
  }
  .card-container-manage-servers {
    padding: 80px 24px 24px;
  }
}
#events_tray .tray_content {
  border-radius: 10px 10px 0px 0px !important;
}
#events_tray .tray_header {
  background: #022213;
  border-radius: 10px 10px 0px 0px;
}
#events_tray .tray_header span,
#events_tray .tray_header a {
  color: white !important;
}
#events_tray .progress {
  background-color: #97c49c;
  border-radius: 20px;
  height: 5px;
}
#events_tray .progress .determinate {
  background-color: #01af35;
}
.nav-wrapper {
  font-family: 'Raleway', sans-serif;
}
.nav-container {
  max-width: none;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.nav-icon {
  width: 25px;
  vertical-align: middle;
}
.left .nav-icon {
  margin-right: 5px;
}
#help_menu,
#profile_menu,
#create_menu,
#manage_menu,
#cart_menu {
  border-radius: 10px;
  overflow: visible;
  margin-top: -3px;
  margin-left: 0;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  width: auto !important;
  padding-bottom: 15px;
  max-width: 440px;
}
#help_menu::before,
#profile_menu::before,
#create_menu::before,
#manage_menu::before,
#cart_menu::before {
  width: 32px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -16px;
  transform: translate(50px, 0);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}
#help_menu img,
#profile_menu img,
#create_menu img,
#manage_menu img,
#cart_menu img {
  width: 32px;
}
#help_menu li,
#profile_menu li,
#create_menu li,
#manage_menu li,
#cart_menu li {
  display: flex;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  min-height: 45px;
  padding: 12px 20px;
  background: transparent;
}
#help_menu li.divider,
#profile_menu li.divider,
#create_menu li.divider,
#manage_menu li.divider,
#cart_menu li.divider {
  margin-bottom: 16px;
  margin-top: 8px;
  min-height: 0;
  padding: 0 !important;
}
#help_menu li a,
#profile_menu li a,
#create_menu li a,
#manage_menu li a,
#cart_menu li a {
  padding: 0;
  min-width: 230px;
  margin-left: 0;
  vertical-align: middle;
  color: #686666;
  display: inline-flex;
  align-items: flex-start;
}
#help_menu li a div,
#profile_menu li a div,
#create_menu li a div,
#manage_menu li a div,
#cart_menu li a div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
#help_menu li a div h4,
#profile_menu li a div h4,
#create_menu li a div h4,
#manage_menu li a div h4,
#cart_menu li a div h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0B2114;
  margin: 0;
  line-height: 1;
}
#help_menu li a div p,
#profile_menu li a div p,
#create_menu li a div p,
#manage_menu li a div p,
#cart_menu li a div p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #686666;
  padding-bottom: 0;
}
#help_menu li a:hover,
#profile_menu li a:hover,
#create_menu li a:hover,
#manage_menu li a:hover,
#cart_menu li a:hover {
  background-color: transparent !important;
}
#help_menu li img,
#profile_menu li img,
#create_menu li img,
#manage_menu li img,
#cart_menu li img {
  margin-right: 10px;
}
#help_menu li:not(:first-child),
#profile_menu li:not(:first-child),
#create_menu li:not(:first-child),
#manage_menu li:not(:first-child),
#cart_menu li:not(:first-child) {
  padding-top: 10px;
}
#help_menu li:first-child,
#profile_menu li:first-child,
#create_menu li:first-child,
#manage_menu li:first-child,
#cart_menu li:first-child {
  padding-top: 20px;
}
#help_menu h6,
#profile_menu h6,
#create_menu h6,
#manage_menu h6,
#cart_menu h6 {
  color: #0B2114;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 20px 5px;
  margin: 0;
}
.create-bottom-bar {
  background-color: #F7F7F7 !important;
  padding: 30px !important;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center !important;
  border-radius: 0px 0px 10px 10px;
  grid-gap: 12px;
}
.create-bottom-bar:hover {
  background-color: #F7F7F7 !important;
}
.create-bottom-bar h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 !important;
  color: #0B2114;
}
.create-bottom-bar p {
  color: #686666 !important;
  font-weight: 300;
  font-size: 14px !important;
  margin: 0;
  line-height: 20px;
  padding-top: 5px;
}
.create-bottom-bar .menu-btn {
  background: #01FF48;
  border: 2px solid #01FF48;
  color: #000 !important;
  border-radius: 4px;
  font-size: 14px;
  padding: 5px 20px !important;
  height: fit-content;
  min-width: fit-content !important;
  text-transform: capitalize;
  font-weight: 600;
}
.create-bottom-bar .menu-btn.secondary-btn {
  background: transparent;
}
#create_menu,
#profile_menu {
  padding-bottom: 0;
}
#help_menu::before,
#profile_menu::before,
#cart_menu::before {
  width: 32px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: auto;
  right: 0;
  top: -16px;
  transform: translate(-12px, 0);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}
#help_menu {
  padding: 16px;
  max-width: 630px;
}
#help_menu div {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
#help_menu div li {
  padding: 0 10px;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  width: 100%;
  min-height: 1px;
}
#help_menu div li div {
  margin-bottom: 13px;
  display: flex;
  align-items: flex-start;
}
#help_menu div li div a {
  padding: 0;
  background: none !important;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  text-transform: capitalize;
  display: inline-flex;
}
#help_menu div li div a img {
  width: 24px;
  height: 24px;
}
#help_menu div li div a div {
  gap: 0;
}
#help_menu div li div a div h4 {
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: #333;
  margin: 0px;
}
#help_menu div li div a div p {
  color: #666;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  margin: 0px;
}
#cart_menu {
  max-width: 360px;
  padding: 0;
}
#cart_menu li {
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  min-height: auto;
}
#cart_menu li:last-child {
  padding: 16px;
  min-height: auto;
  border-top: 1px solid #01FF48;
}
#cart_menu li:last-child a {
  width: 100%;
  justify-content: center;
  padding: 5px 20px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  background: #01FF48;
  border-radius: 4px;
  border: 2px solid #01FF48;
  height: fit-content;
  transition: all 0.3s ease-out;
  text-align: center;
}
#cart_menu li:last-child a:hover {
  background: #fff;
  border: 2px solid #01FF48;
  transition: all 0.3s ease-out;
}
#cart_menu li:first-child {
  border-bottom: 2px solid #01FF48;
  line-height: 1;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  min-height: auto;
  border-bottom: 1px solid #01FF48;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
#cart_menu li:first-child .headline {
  width: 100%;
  line-height: 1.2;
  color: #000;
}
#cart_menu li:first-child .profile-price {
  background: #01FF48;
  padding: 4px 8px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1;
  width: fit-content;
}
#cart_menu li:not(:first-child) {
  padding-top: 16px;
}
#cart_menu li.cart-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#cart_menu li.cart-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #000;
}
#cart_menu li.cart-info p {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  color: #000;
}
#cart_menu li.cart-info span.cart-price {
  background: #01FF48;
  padding: 4px 8px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1;
}
#cart_menu li.price-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #01FF48;
}
#cart_menu li.price-info span.monthly {
  font-size: 14px;
  font-weight: 600;
  height: auto;
  line-height: 1;
  padding: 0;
  color: #000;
}
#cart_menu li.price-info span.price {
  font-size: 15px;
  font-weight: 700;
  height: auto;
  line-height: 1;
  padding: 0;
  color: #000;
}
/*.nav-desktop-right li:first-child a:after{
	content: '';
	width: 12px;
  height: 12px;
  border-radius: 24px;
  background: #01FF48;
  display: inline-block;
	display: inline-block;
  top: 11px;
  position: relative;
  right: 11px;
}*/
.cart-dot {
  width: 12px;
  height: 12px !important;
  border-radius: 24px;
  background: #01FF48;
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(2px, 17px);
}
.section .card-panel .header-card {
  border-radius: 10px;
  box-shadow: none;
}
.section .card-panel .header-card .card-action {
  border-radius: 0px 0px 10px 10px;
}
.section .card-panel .header-card .card-image .gradient {
  border-radius: 8px 8px 0px 0px;
  background: #022213;
}
.card {
  border-radius: 10px;
  /*box-shadow: none; */
}
.card-content {
  font-family: 'Raleway', sans-serif;
}
.user-dashboard {
  font-family: 'Raleway', sans-serif;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .user-dashboard {
    padding-top: 0px;
  }
}
.user-dashboard .user-dashboard-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 90px 32px 32px;
  margin-bottom: 40px;
  transition: padding 0.3s ease;
}
.user-dashboard .user-dashboard-wrapper .user-dashboard-header-container {
  background: #022213;
  border-radius: 10px 10px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
.user-dashboard .user-dashboard-wrapper .user-dashboard-header-container .user-dashboard-headline {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.user-dashboard .user-dashboard-wrapper .user-dashboard-header-container .user-dashboard-headline h2 {
  font-weight: 600;
  font-size: 20px;
  color: #fff !important;
  margin: 0;
}
.user-dashboard h1,
.user-dashboard h2,
.user-dashboard h3,
.user-dashboard h4,
.user-dashboard h5 {
  margin-top: 0px;
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
}
.user-dashboard h2 {
  color: #022213 !important;
  font-weight: 500;
  font-size: 2.56rem;
}
.user-dashboard p,
.user-dashboard a,
.user-dashboard td,
.user-dashboard th {
  font-family: 'Raleway', sans-serif !important;
}
@media screen and (max-width: 599px) {
  .user-dashboard h2 {
    font-size: 2.3rem;
  }
  .user-dashboard .btn {
    font-size: 0.9rem;
  }
}
.user-dashboard .card-content .row {
  display: flex;
  flex-wrap: wrap;
}
.user-dashboard .card-content .row .col {
  margin-left: 0;
}
.user-dashboard .card-content .row .col.flex-end {
  display: flex;
  align-items: flex-end;
  padding-bottom: 16px;
  justify-content: flex-end;
}
.user-dashboard .card-content .row .col.flex-end-topbottom {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0px;
  padding-top: 16px;
  justify-content: flex-end;
}
.user-dashboard .card-content .row .col.flex-end-bottom {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0px;
  justify-content: flex-end;
}
.user-dashboard .flex-end-submit {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  justify-content: flex-start;
  margin-top: 0 !important;
}
.user-dashboard .section > .row > .col > div {
  height: 100%;
}
.user-dashboard .card-content #server-card,
.user-dashboard .card-content #server-info-card,
.user-dashboard .card-content #credentials-card {
  height: fit-content;
}
.user-dashboard .header-card {
  border-radius: 20px;
  box-shadow: none;
}
.user-dashboard .card .card-action {
  border-radius: 0px 0px 10px 10px;
}
.user-dashboard .card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating) {
  color: #01af35;
}
.user-dashboard .card-title {
  font-family: 'Raleway', sans-serif !important;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
}
.user-dashboard .card .card-image .card-title {
  position: relative;
  padding: 16px 24px;
  line-height: 110%;
}
.user-dashboard .card-content strong {
  font-weight: 600;
}
.user-dashboard .card-image .gradient {
  border-radius: 10px 10px 0px 0px;
  background: #022213;
}
.user-dashboard span.card-title {
  font-size: 1.3rem;
  font-weight: 400;
}
.user-dashboard #credentials-card .card-content .card {
  box-shadow: none;
  background-color: #f4f4f4;
  border-radius: 10px;
}
.user-dashboard #credentials-card .usercol {
  width: 150px;
}
.user-dashboard .card-content .chip.keychip {
  background-color: #f4f4f4;
  border-radius: 10px;
}
.user-dashboard .card-action .trigger-modal.pull-right {
  margin-right: 0 !important;
}
.user-dashboard .input-field .trigger-modal i {
  padding-left: 16px;
  padding-top: 8px;
}
.user-dashboard .all-servers .btn.btn-small {
  width: 40px;
  height: 40px;
  border-radius: 60% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-dashboard .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.424rem;
}
.user-dashboard .title-wrapper a {
  color: #747474;
}
.user-dashboard .title-wrapper h2 {
  margin-bottom: 0;
}
.user-dashboard .card-panel {
  border-radius: 6px;
  box-shadow: none !important;
}
.user-dashboard .card-panel.has-tabs {
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px;
}
.user-dashboard .has-tabs-border-radius {
  border-radius: 0 12px 12px 12px !important;
}
.user-dashboard .has-tabs-border-radius-not-first {
  border-radius: 12px !important;
}
.user-dashboard .section {
  margin-bottom: 40px;
}
.user-dashboard .all-servers .card-panel,
.user-dashboard .all-events .card-panel,
.user-dashboard .api-events .card-panel {
  margin-top: 0;
}
.user-dashboard #resource_utilization_summary .progress {
  height: 20px;
}
.user-dashboard tbody tr td:last-child {
  min-width: auto;
}
.user-dashboard th {
  color: #4c4c4c;
}
.user-dashboard thead tr th {
  font-weight: 600;
}
.user-dashboard table.striped > tbody > tr:nth-child(odd),
.user-dashboard table.bordered > tbody > tr,
.user-dashboard thead,
.user-dashboard table.bordered > thead > tr,
.user-dashboard table.bordered > tbody > tr {
  border-bottom: none;
}
.user-dashboard .events-table tbody tr td:last-child,
.user-dashboard #events-table tbody tr td:last-child {
  min-width: 20px;
}
.user-dashboard #server_context_menu.dropdown-button {
  background-color: #E5F3F3 !important;
  box-shadow: none;
}
.user-dashboard #server_context_menu.dropdown-button i {
  color: #00a1a1;
}
.user-dashboard #server-info-card .card-action,
.user-dashboard #credentials-card .card-action {
  border-radius: 0px 0px 10px 10px;
}
.user-dashboard .tile-grid-item.disabled {
  border-right: 7px solid rgba(1, 255, 72, 0.33) !important;
}
.user-dashboard .tile-grid-item.disabled .tile-grid-item__icon img {
  opacity: 0.33 !important;
}
.user-dashboard .tile-grid-item.disabled .tile-grid-item__text h4 {
  color: rgba(255, 255, 255, 0.33) !important;
  font-style: italic !important;
}
.user-dashboard .tile-grid-item.disabled .tile-grid-item__text span {
  color: rgba(255, 255, 255, 0.33) !important;
  font-style: italic !important;
}
.user-dashboard #server-context-menu .tile-grid-item {
  background-color: #022213;
  border-right: 7px solid #01ff48;
  box-shadow: none;
  flex-direction: column;
  border-radius: 10px;
  position: relative;
}
.user-dashboard #server-context-menu .tile-grid-item:hover .tile-grid-item__text h4:after {
  transform: scaleX(1);
}
.user-dashboard #server-context-menu .tile-grid-item .tile-grid-item__icon {
  align-self: flex-start;
  border-radius: 60%;
  width: 40px;
  height: 40px;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin-right: 0;
}
.user-dashboard #server-context-menu .tile-grid-item .tile-grid-item__icon img {
  width: 24px;
  height: 24px;
}
.user-dashboard #server-context-menu .tile-grid-item .tile-grid-item__icon img.manage-php {
  width: 32px;
  height: 32px;
}
.user-dashboard #server-context-menu .tile-grid-item .tile-grid-item__icon i {
  margin-bottom: 0;
  color: #01ff48;
}
.user-dashboard #server-context-menu .tile-grid-item .tile-grid-item__text {
  align-self: flex-start;
  position: relative;
  transition: color 0.3s ease-in-out;
}
.user-dashboard #server-context-menu .tile-grid-item .tile-grid-item__text span {
  color: white;
}
.user-dashboard #server-context-menu ul {
  display: grid;
  flex-wrap: wrap;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
}
.user-dashboard #server-context-menu ul li {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
}
.user-dashboard #server-context-menu ul li a {
  height: 100%;
}
.user-dashboard #server-context-menu ul li a i,
.user-dashboard #server-context-menu ul li a i::before {
  font-size: 18px;
}
.user-dashboard #server-context-menu ul li a i.largeicon,
.user-dashboard #server-context-menu ul li a i.largeicon::before {
  font-size: 26px;
}
.user-dashboard #server-context-menu svg {
  width: 18px;
}
.user-dashboard #server-context-menu h6 {
  font-weight: 400;
  font-size: 28px;
  color: #022213;
}
.user-dashboard #server-context-menu .tile-grid {
  margin-bottom: 4rem;
}
.user-dashboard #server-card .card-action a.activator {
  font-size: 16px;
}
.user-dashboard #server-card .card-action a.activator img {
  height: 15px;
}
.user-dashboard .pie-height {
  display: none;
}
.user-dashboard .progress-wrapper {
  background-color: #f4f4f4;
  padding: 24px;
  border-radius: 10px;
}
.user-dashboard .progress {
  background-color: #97c49c;
  border-radius: 20px;
  height: 5px;
  align-items: flex-end;
  justify-content: flex-end;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  color: white;
  margin-bottom: 0;
}
.user-dashboard .progress .determinate {
  background-color: #01af35;
  display: flex;
  align-items: center;
}
.user-dashboard .progress-header {
  display: flex;
  grid-gap: 15px;
}
.user-dashboard .progress-title {
  font-size: 12px;
  color: #616060;
}
.user-dashboard .progress-title.used::before,
.user-dashboard .progress-title.allowed::before {
  content: " ";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 60%;
  margin-right: 5px;
}
.user-dashboard .progress-title.used::before {
  background-color: #01af35;
}
.user-dashboard .progress-title.allowed::before {
  background-color: #97c49c;
}
.user-dashboard .network-utilization-warning:not(.hidden),
.user-dashboard .disk-utilization-warning:not(.hidden),
.user-dashboard .memory-utilization-warning:not(.hidden) {
  display: block;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.user-dashboard .network-utilization-warning:not(.hidden) i,
.user-dashboard .disk-utilization-warning:not(.hidden) i,
.user-dashboard .memory-utilization-warning:not(.hidden) i {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.user-dashboard .network-utilization-warning:not(.hidden) i::before,
.user-dashboard .disk-utilization-warning:not(.hidden) i::before,
.user-dashboard .memory-utilization-warning:not(.hidden) i::before {
  font-size: 12px;
}
.user-dashboard .botguard-icon {
  content: url("/application/themes/webdock/img/botguard-base_green.svg");
  width: 18px;
}
.user-dashboard .disabled .botguard-icon {
  content: url("/application/themes/webdock/img/botguard-disable.svg");
}
.user-dashboard .simple-breadcrumbs a {
  font-size: 18px;
  color: gray;
  font-weight: 500;
}
.user-dashboard .dash-breadcrumbs {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  color: gray;
}
.user-dashboard .dash-breadcrumbs p {
  margin: 0;
}
.user-dashboard .dash-breadcrumbs img {
  width: 20px;
  margin-right: 5px;
}
.user-dashboard .dash-breadcrumbs a {
  color: gray;
  display: flex;
  align-items: center;
}
.user-dashboard .dash-breadcrumbs a.current-page {
  font-weight: 600;
}
.user-dashboard .dash-breadcrumbs i.fa {
  font-size: 14px;
}
.user-dashboard .dash-breadcrumbs i.fa::before {
  font-size: 14px;
  color: gray;
}
/*
* Tiril styling end
*/
/*
* Typography
*/
body {
  font-family: 'Raleway', sans-serif;
  color: #000000;
  text-rendering: optimizeLegibility;
  font-feature-settings: "pnum";
  font-variant-numeric: proportional-nums;
  /*background-color: #fafafa; */
  /* Only antialiased on retina */
  /* material footer */
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
/* Set Roboto on other controls */
.btn {
  font-family: "Raleway", sans-serif;
}
table tr td,
table tr th {
  font-family: "Raleway", sans-serif;
}
input {
  font-family: "Raleway", sans-serif;
}
/*.passrow {
	font-family: "Roboto", sans-serif;
}*/
sup {
  font-family: "Roboto", sans-serif;
}
strong {
  font-weight: bold;
}
blockquote.article {
  font-size: 22px;
  text-align: center;
  background: #f9f9f9;
  border-left: none;
  margin: .5em 10px;
  padding: 10px 20px;
  line-height: 1.4;
}
blockquote.article:before {
  content: "\201C";
  display: inline;
  height: 0;
  line-height: 0;
  left: -10px;
  position: relative;
  top: 30px;
  color: #ccc;
  font-size: 3em;
}
[type="checkbox"] + label {
  color: #000000;
}
[type="radio"] + label {
  color: #000000;
}
tr.clickable {
  cursor: pointer;
}
nav {
  line-height: inherit;
}
.is-docs nav.loggedin .brand-logo,
.is-docs nav.loggedin .nav-wrapper .nav-desktop i {
  line-height: 22.5px;
}
nav.public {
  background-color: #ffffff;
}
nav.public a {
  color: #787878;
}
nav.public ul li.diaggradient a {
  color: #ffffff;
  padding: 0px 30px;
}
nav.public .brand-logo {
  padding: 0px 20px;
  margin-top: 10px;
}
nav.public .header-nav-logo {
  height: 30px;
  width: auto;
}
nav.public .dropdown-content a {
  color: #000000;
}
nav.public .dropdown-content li:hover,
nav.public .dropdown-content li.active,
nav.public .dropdown-content li.selected {
  background-color: #00a1a1;
}
nav .nav-wrapper i.dropdown-arrow-mobile {
  height: 48px;
  line-height: 48px;
}
.side-nav .dropdown-content li.divider {
  margin: 0px;
}
nav.loggedin {
  height: 68px;
  background-color: #022213;
}
nav.loggedin a {
  color: #686666;
}
a.tablelink {
  color: #000000;
  font-weight: 500;
}
a.tablelink:hover {
  text-decoration: underline;
  color: #039be5;
}
nav .nav-wrapper i {
  display: inline;
  vertical-align: middle;
  margin-right: 5px;
}
.nav-desktop li span {
  height: 64px;
  line-height: 64px;
  font-size: 1.125rem;
}
.nav-desktop-right {
  /*margin-right: 120px; */
}
i {
  display: inline;
  vertical-align: middle;
}
.loggedin #help_menu {
  /*width: auto!important;*/
}
.side-nav li > a > i.material-icons {
  margin: 0 18px 0 0;
}
.side-nav li > a {
  padding: 0 18px;
}
.header-nav-logo {
  width: auto;
  height: 68px;
}
nav .brand-logo {
  position: inherit;
  float: left;
}
.side-nav {
  max-width: 200px;
  display: flex;
  flex-direction: column;
}
.side-nav li {
  width: 100%;
}
.side-nav li > a.padtop {
  padding-top: 10px;
}
.side-nav li > a.padtop img {
  margin-left: -6px;
}
.side-nav li.mobile-last-li {
  margin-top: auto;
  /* Push it to the bottom */
}
.side-nav li.mobile-last-li a {
  border-top: 1px solid #e0e0e0;
}
main {
  flex: 1 0 auto;
}
#bigfooter {
  background-color: #2c2c2c;
}
.page-footer {
  padding-top: 0px;
  background-color: #ffffff;
  color: #787878;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.page-footer .footer-copyright {
  background-color: #ffffff;
  color: #787878;
}
.page-footer a {
  color: #787878;
}
.footer-heart {
  height: 20px;
  margin-bottom: -5px;
}
.footer-logo {
  width: 80%;
}
@media screen and (max-width: 991px) {
  .footer-logo {
    display: block;
    margin: 0px auto;
  }
}
.footer-nav {
  margin: 0px;
}
@media screen and (min-width: 992px) {
  .footer-nav {
    padding-top: 10px;
  }
}
.footer-nav li {
  line-height: 18px;
}
@media screen and (min-width: 992px) {
  .footer-nav li {
    float: left;
    margin-right: 20px;
  }
}
.footer-nav li a {
  color: #ffffff;
  font-size: 14px;
}
.footer-nav li a:hover {
  text-decoration: underline;
}
.footer-contact {
  display: block;
  border: 1px solid white;
  padding: 30px;
  line-height: 16px;
  background-color: transparent;
}
.footer-contact:hover {
  background-color: #787878;
  transition: background-color 200ms linear;
}
.tap-target-wrapper {
  position: fixed !important;
}
.tap-target-content {
  color: #ffffff;
}
/* Make Fontawesome play ball */
.fa,
.fa::before {
  font-size: 24px;
}
.cicon,
.cicon::before {
  font-size: 30px;
}
/* Modal stuff */
.modal-title {
  font-size: 20px;
  font-weight: 600;
}
.modal-content {
  text-align: left;
}
.modal-buttons {
  text-align: center;
}
blockquote.redline {
  border-left: 5px solid #f44336;
}
blockquote.yellowline {
  border-left: 5px solid #ffeb3b;
}
#page-wrapper {
  padding-top: 20px;
}
#actingas {
  margin-left: 15px;
}
h2 {
  color: #787878;
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.6rem;
  }
}
h2 a {
  color: #787878;
}
h2 div.small-text {
  line-height: 2rem;
}
@media screen and (max-width: 991px) {
  h3 {
    font-size: 1.9rem;
  }
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.3rem;
}
.raleway {
  font-family: 'Raleway', sans-serif;
}
/*
* Generics
*/
.black {
  color: #000000;
}
.white {
  color: #ffffff;
}
.tealtxt {
  color: #00a1a1;
}
.greytxt {
  color: #787878 !important;
}
.dark-green-text,
.dark-green-text a {
  color: #008970 !important;
}
.pointer {
  cursor: pointer;
}
.whitebg {
  background-color: #fffeff;
}
.palebluebg {
  background-color: #f2fafa;
}
.greybg {
  background-color: #eeeeee;
}
.darkgreybg {
  background-color: #787878 !important;
}
.disabled {
  color: #bdbdbd !important;
  cursor: default !important;
  pointer-events: none !important;
}
.disabled-radio-bt {
  border: 1px solid #bdbdbd !important;
}
.disabled-img {
  opacity: 0.5;
}
.disabled-server-button {
  background-color: #DFDFDF !important;
  color: #9f9f9f !important;
  cursor: default !important;
  pointer-events: none !important;
}
.disabled-select-border {
  border-bottom: 1px solid #bdbdbd !important;
  box-shadow: 0 1px 0 0 #bdbdbd !important;
}
.hugetext,
.hugetext::before {
  font-size: 4.5rem;
}
.largetext,
.card-title.largetext {
  font-weight: 300;
  font-size: 2rem;
}
.mediumtext {
  font-size: 1.3rem;
}
.smalltext,
.small-text,
.text-small {
  font-size: 1rem;
}
.smalltext.fa:before,
.small-text.fa:before,
.text-small.fa:before {
  font-size: 1rem;
}
.text-xs {
  font-size: 0.8rem !important;
}
.underline {
  text-decoration: underline;
}
.promotext {
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 2rem;
  height: 67px;
}
.nopadding {
  padding: 0px !important;
}
.nopaddingtop {
  padding-top: 0px !important;
}
.nopaddingbottom {
  padding-bottom: 0px !important;
}
.pull-margin-up {
  margin-top: -15px !important;
}
.nomargin {
  margin: 0px !important;
}
.nomargintop {
  margin-top: 0px !important;
}
.nomarginbottom {
  margin-bottom: 0px !important;
}
.break-word {
  word-break: break-word;
}
.noverflow {
  overflow: visible !important;
}
.posrel {
  position: relative;
}
.fullheight {
  height: 100%;
}
.marginauto {
  margin: 0px auto;
}
.smmargin-top {
  margin-top: 15px;
}
.margin-top {
  margin-top: 20px;
}
.mmargin-top {
  margin-top: 30px;
}
.xsmargin-bottom {
  margin-bottom: 5px;
}
.margin-bottom {
  margin-bottom: 20px;
}
.mmargin-bottom {
  margin-bottom: 30px;
}
.xlmargin {
  margin-top: 40px;
  margin-bottom: 40px;
}
.xlmargin-top {
  margin-top: 40px;
}
.xlmargin-bottom {
  margin-bottom: 40px;
}
.margin-right {
  margin-right: 10px;
}
.xlmargin-right {
  margin-right: 15px;
}
.smpadding-bottom {
  padding-bottom: 5px;
}
.padding-top {
  padding-top: 20px;
}
.padout {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .padout {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.full-width {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
ul.browser-default {
  padding-left: 1.2rem;
}
ul.browser-default li {
  padding-bottom: 25px;
}
.center-text {
  text-align: center;
}
.center-block {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
}
.spacer {
  display: block;
  height: 1px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.mspacer {
  display: block;
  height: 1px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.xlspacer {
  display: block;
  height: 1px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.red-outline {
  outline: 3px solid #f44336 !important;
}
.gradient {
  background-color: #022213 !important;
}
.gradienttext {
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-left {
  text-align: left;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
.hidden {
  display: none;
}
.monospace {
  font-family: monospace;
}
.login-form .row .col {
  border-right: 0px solid #01FF48;
  padding: 0;
}
.login-logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.login-header {
  background: #022213;
  border-radius: 6px 6px 0px 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
.login-header .card-header-headline {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.login-header .card-header-headline .headline h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.btn-oauth-login {
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 12px 16px 12px 42px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  text-align: center;
}
.btn-oauth-login:hover {
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
}
.btn-oauth-login:active {
  background-color: #eeeeee;
}
.btn-oauth-login:focus {
  outline: none;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
}
.btn-oauth-login:disabled {
  filter: grayscale(100%);
  background-color: #ebebeb;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.btn-oauth-login.google-login {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 14px;
}
.btn-oauth-login.github-login {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMThweCIgaGVpZ2h0PSIxOHB4IiB2aWV3Qm94PSIwIDAgMTggMTgiIHZlcnNpb249IjEuMSI+CjxnIGlkPSJzdXJmYWNlMSI+CjxwYXRoIHN0eWxlPSIgc3Ryb2tlOm5vbmU7ZmlsbC1ydWxlOmV2ZW5vZGQ7ZmlsbDpyZ2IoMTAuNTg4MjM1JSwxMi4xNTY4NjMlLDEzLjcyNTQ5JSk7ZmlsbC1vcGFjaXR5OjE7IiBkPSJNIDkgMCBDIDQuMDI3MzQ0IDAgMCA0LjAyNzM0NCAwIDkgQyAwIDEyLjk4NDM3NSAyLjU3ODEyNSAxNi4zNDc2NTYgNi4xNTIzNDQgMTcuNTM5MDYyIEMgNi42MDU0NjkgMTcuNjE3MTg4IDYuNzczNDM4IDE3LjM0NzY1NiA2Ljc3MzQzOCAxNy4xMDkzNzUgQyA2Ljc3MzQzOCAxNi44OTg0MzggNi43NjE3MTkgMTYuMTg3NSA2Ljc2MTcxOSAxNS40MzM1OTQgQyA0LjUgMTUuODUxNTYyIDMuOTE0MDYyIDE0Ljg4MjgxMiAzLjczNDM3NSAxNC4zNzg5MDYgQyAzLjYzMjgxMiAxNC4xMTcxODggMy4xOTUzMTIgMTMuMzIwMzEyIDIuODEyNSAxMy4xMDU0NjkgQyAyLjQ5NjA5NCAxMi45Mzc1IDIuMDQ2ODc1IDEyLjUxOTUzMSAyLjgwMDc4MSAxMi41MTE3MTkgQyAzLjUxMTcxOSAxMi41IDQuMDE1NjI1IDEzLjE2NDA2MiA0LjE4MzU5NCAxMy40MzM1OTQgQyA0Ljk5NjA5NCAxNC43OTI5NjkgNi4yODkwNjIgMTQuNDEwMTU2IDYuODA0Njg4IDE0LjE3NTc4MSBDIDYuODg2NzE5IDEzLjU4OTg0NCA3LjEyMTA5NCAxMy4xOTUzMTIgNy4zNzg5MDYgMTIuOTcyNjU2IEMgNS4zNzg5MDYgMTIuNzQ2MDk0IDMuMjg1MTU2IDExLjk2ODc1IDMuMjg1MTU2IDguNTI3MzQ0IEMgMy4yODUxNTYgNy41NDY4NzUgMy42MzI4MTIgNi43MzgyODEgNC4yMDcwMzEgNi4xMDkzNzUgQyA0LjExNzE4OCA1Ljg4MjgxMiAzLjgwMDc4MSA0Ljk2MDkzOCA0LjI5Njg3NSAzLjcyMjY1NiBDIDQuMjk2ODc1IDMuNzIyNjU2IDUuMDUwNzgxIDMuNDg4MjgxIDYuNzczNDM4IDQuNjQ0NTMxIEMgNy40OTIxODggNC40NDUzMTIgOC4yNTc4MTIgNC4zNDM3NSA5LjAyMzQzOCA0LjM0Mzc1IEMgOS43ODkwNjIgNC4zNDM3NSAxMC41NTA3ODEgNC40NDUzMTIgMTEuMjczNDM4IDQuNjQ0NTMxIEMgMTIuOTkyMTg4IDMuNDc2NTYyIDEzLjc0NjA5NCAzLjcyMjY1NiAxMy43NDYwOTQgMy43MjI2NTYgQyAxNC4yNDIxODggNC45NjA5MzggMTMuOTI1NzgxIDUuODgyODEyIDEzLjgzNTkzOCA2LjEwOTM3NSBDIDE0LjQxMDE1NiA2LjczODI4MSAxNC43NjE3MTkgNy41MzkwNjIgMTQuNzYxNzE5IDguNTI3MzQ0IEMgMTQuNzYxNzE5IDExLjk4MDQ2OSAxMi42NTYyNSAxMi43NDYwOTQgMTAuNjUyMzQ0IDEyLjk3MjY1NiBDIDEwLjk4MDQ2OSAxMy4yNTM5MDYgMTEuMjYxNzE5IDEzLjc5Mjk2OSAxMS4yNjE3MTkgMTQuNjM2NzE5IEMgMTEuMjYxNzE5IDE1LjgzOTg0NCAxMS4yNSAxNi44MDg1OTQgMTEuMjUgMTcuMTA5Mzc1IEMgMTEuMjUgMTcuMzQ3NjU2IDExLjQxNzk2OSAxNy42Mjg5MDYgMTEuODY3MTg4IDE3LjUzOTA2MiBDIDE1LjQyMTg3NSAxNi4zNDc2NTYgMTggMTIuOTcyNjU2IDE4IDkgQyAxOCA0LjAyNzM0NCAxMy45NzI2NTYgMCA5IDAgWiBNIDkgMCAiLz4KPC9nPgo8L3N2Zz4K);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 14px;
}
/* Frontpage */
.video-hero {
  background-image: url(/application/themes/webdock/img/video_poster.jpg);
  height: 400px;
  margin-top: -20px;
}
@media screen and (max-width: 1199px) {
  .video-hero {
    margin-top: -20px;
    height: 340px;
  }
}
.hero-cover {
  opacity: 0.9;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.video-hero-content {
  position: relative;
  color: #eeeeee;
}
.video-hero-content h1 {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 599px) {
  .video-hero-content h1 {
    font-size: 3rem;
    text-align: center;
  }
}
@media screen and (min-width: 600px) and (max-width: 991px) {
  .video-hero-content h1 {
    font-size: 3.2rem;
  }
}
.video-hero-content h5 {
  line-height: 1.9rem;
}
@media screen and (max-width: 599px) {
  .video-hero-content h5 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-align: center;
  }
}
.hero-logo {
  height: 100px;
  margin-left: -20px;
}
.front-video {
  max-width: 100%;
}
.front-vid-bg-wrap {
  position: relative;
  padding-top: 25px;
  padding-bottom: 85%;
  height: 0;
  margin-top: 25px;
}
#dev-video {
  box-sizing: border-box;
  background: url(/application/themes/webdock/img/video/developers.svg) center center no-repeat;
  background-size: contain;
  padding: 6.9% 12.5% 16.5% 8.8%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#designer-video {
  box-sizing: border-box;
  background: url(/application/themes/webdock/img/video/designers.svg) center center no-repeat;
  background-size: contain;
  padding: 6.7% 11.2% 31.5% 5.4%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#agency-video {
  box-sizing: border-box;
  background: url(/application/themes/webdock/img/video/agencies.svg) center center no-repeat;
  background-size: contain;
  padding: 1.1% 7.2% 27.5% 6.4%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#webshop-video {
  box-sizing: border-box;
  background: url(/application/themes/webdock/img/video/agencies.svg) center center no-repeat;
  background-size: contain;
  padding: 1.1% 7.2% 27.5% 6.4%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vid-fullscreen {
  position: absolute;
  top: 66%;
  right: 13%;
}
.vid-fullscreen.designers {
  top: 59%;
  right: 12%;
}
.vid-fullscreen.agency {
  top: 59%;
  right: 8%;
}
.featurecol h4 {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #000000;
}
.featurecol p {
  font-size: 0.85rem;
  line-height: 1rem;
}
.featurecol .card-content {
  padding-top: 10px;
}
.front-icon {
  height: 80px;
  padding-bottom: 20px;
}
.partner-logo {
  max-height: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
.pricetable {
  background-color: #ffffff;
  margin-top: 2px;
}
table.pricetable tr td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.reveal-text {
  display: none;
}
.reveal-below.revealed .notrevealed {
  display: none;
}
.reveal-below .isrevealed {
  display: none;
}
.reveal-below.revealed .isrevealed {
  display: inline-block;
}
/**
 * Set default positioning as a fallback for if the plugin fails
 */
.jquery-background-video-wrapper {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.jquery-background-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.provisioning-background-video-wrapper {
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  max-width: 100%;
  z-index: -1;
  /*opacity: 0.95; */
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.loading-ellipses:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 900ms infinite;
  animation: ellipsis steps(4, end) 900ms infinite;
  content: "\2026";
  /* ascii code for the ellipsis character */
  width: 0px;
}
@keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
/**
 * Fade in videos
 * Note the .js class - so non js users still
 * see the video
 */
.js .video-bg video {
  opacity: 0;
}
.js .video-bg video.is-playing {
  opacity: 1;
}
/* Signup */
#ccards {
  width: 500px;
}
/* Fixes and tweaks to Materialize*/
.preloader-wrapper.xsmall {
  width: 17px;
  height: 17px;
}
@media only screen and (min-width: 601px) {
  .container {
    width: 96%;
  }
  .nav-container {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .btn {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 991px) {
  td .btn.pull-right {
    float: none;
  }
}
span.card-panel {
  display: block;
}
.btn-floating.btn-large.halfway-fab {
  bottom: -17px;
}
.btn.tallbutton {
  height: 48px;
  line-height: 48px;
}
.section {
  padding: 0px;
}
.section.padding-top {
  padding-top: 20px;
}
.floating-action {
  margin: 15px 15px 0 0;
}
.card .card-content {
  padding: 22px;
}
.card .card-content.has-action {
  padding-bottom: 60px;
}
.teal-text.text-lighten-1,
.teal-text {
  color: #01af35 !important;
}
.card {
  display: block;
  z-index: auto;
}
.card-title {
  font-family: 'Raleway', sans-serif;
}
.card.xsmini {
  height: auto;
  min-height: 170px;
}
.card.medimini {
  height: auto;
  min-height: 240px;
}
.card.mini {
  height: auto;
  min-height: 335px;
}
.card.small {
  height: auto;
  min-height: 326px;
}
.card.minmedium {
  min-height: 400px;
}
.card.minxmedium {
  min-height: 425px;
}
.card.minlarge {
  min-height: 510px;
}
.card.profile {
  height: 435px;
}
@media screen and (max-width: 991px) {
  .card.profile .card-content {
    text-align: center;
  }
}
.card.minxxxlarge {
  min-height: 645px;
}
.card.minxxlarge {
  min-height: 620px;
}
.card.minxlarge {
  min-height: 587px;
}
/*.card.minlarge .card-action, .card.minxlarge .card-action { */
.card .card-action {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.card-content.scrollable {
  max-height: 410px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 60px;
}
.card-content.scrollable.large {
  max-height: 440px;
}
.card-content.scrollable.noheader {
  max-height: 473px;
}
.card-panel.grey.lighten-5 {
  padding: 0px;
  background-color: transparent !important;
  box-shadow: none;
}
.suggest-password {
  margin-top: 10px;
  overflow: hidden;
}
.prefix ~ label {
  width: auto !important;
}
.type-icon {
  width: 36px;
}
/* Site logos */
.domain-logo {
  webkit-box-shadow: 0 4px 18px 0 rgba(189, 208, 223, 0.3);
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 4px 18px 0 rgba(189, 208, 223, 0.3);
  height: 34px;
  margin: -1px 5px 0 0;
  width: 34px;
  display: inline-block;
  vertical-align: middle;
}
.domain-logo .site-img {
  border-radius: 100%;
  height: auto;
  margin-left: 4px;
  margin-top: 4px;
  /* text-align: center; */
  /* vertical-align: middle; */
  width: 26px;
  height: 26px;
  background-size: cover;
  display: inline-block;
}
.card-site-img {
  width: 75px;
  height: 75px;
  max-width: 100%;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1;
  cursor: pointer;
  webkit-box-shadow: 0 4px 18px 0 rgba(189, 208, 223, 0.3);
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 4px 18px 0 rgba(189, 208, 223, 0.3);
  padding: 5px;
}
/* Server context menu */
.server-menu-warning {
  padding: 20px;
  color: #f44336;
  max-width: 324px;
  text-align: center;
  white-space: normal;
}
#server-context-menu ul {
  margin: 0px;
}
#server-context-menu ul li {
  float: left;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 147px;
}
#server-context-menu ul.hasbottomspacer li {
  margin-bottom: 25px;
}
#server-context-menu ul li a {
  color: #00a1a1;
  display: block;
}
#server-context-menu ul li a:hover {
  color: #787878;
}
#server-context-menu ul li a i {
  display: block;
  margin-bottom: 5px;
}
#server-context-menu ul li a i,
#server-context-menu ul li a i::before {
  font-size: 34px;
}
#server-context-menu h6 {
  margin-top: 0px;
  margin-bottom: 20px;
}
#server-context-menu .tooltiptext {
  min-height: 47px;
  font-weight: bold;
}
/* Main server info screen */
#alias-domain-list {
  display: none;
  max-height: 65px;
  overflow-y: auto;
}
/* Colors */
.card.green,
.card-panel.green {
  background-color: #022213 !important;
  border-right: 7px solid #01ff48;
}
.card-panel.green div {
  color: #01ff48 !important;
}
.card.green .card-content {
  color: #01ff48 !important;
}
.btn:not(.teal):not(.grey):not(.red):not(.white),
.btn.primary,
button[type="submit"] {
  background-color: #01ff48;
  color: #022213;
  border-radius: 5px;
  box-shadow: none;
  font-weight: 700;
}
.add_choose-btn {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  height: auto !important;
  line-height: 1 !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
}
.lbwaf-submit-btn {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  font-size: 14px !important;
}
.btn i {
  font-size: 1rem;
}
.btn.disabled,
.btn:not(.teal):not(.grey):not(.red):not(.white):hover,
.btn.primary:hover,
button[type="submit"]:not(.red):not(.searchbtn):hover {
  background: #02d33e;
}
.card.blue,
.card-panel.blue {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#008686+0,189898+50,38a6a6+100 */
  background-color: #022213 !important;
  border-right: 7px solid #01ff48;
}
.card-panel.blue div {
  color: #01ff48 !important;
}
.card.blue .card-content {
  color: #01ff48 !important;
}
.card.red,
.card-panel.red,
.btn.red {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#df0000+0,df0000+50,fe2828+100 */
  background: #d34646;
}
.btn.red {
  color: #fff;
}
.card-panel.black {
  background: #022213;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 32px;
  margin-top: 24px;
}
.card-panel.black .white-text div strong {
  color: #01ff48;
}
.btn.red:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b50000+0,df0000+50,fe2828+100 */
  background: #d04545 !important;
}
.btn.white {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
  /* IE6-9 */
  color: #47ad5a;
}
.btn.white:hover {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
  /* IE6-9 */
  color: #47ad5a;
}
.btn-small {
  height: 26px;
  line-height: 26px;
  padding: 0 1rem;
  font-size: 16px;
}
.btn-small i,
.btn-small i::before {
  font-size: 16px;
}
.btn-outlined {
  box-shadow: none;
  border: 1.5px solid #022213;
  border-radius: 5px;
  font-weight: 700;
  color: #022213;
  background-color: white;
  height: 36px;
  line-height: 36px;
  padding: 0 2rem;
  text-transform: uppercase;
}
.btn-outlined:hover,
.btn-outlined:focus {
  background-color: #022213;
  color: #fff;
}
.table-filter .btn:not(.teal):not(.grey):not(.red):not(.white) {
  background: #022213 !important;
  color: #01ff48;
}
.table-filter .btn.tooltipped {
  background-color: #b4deb7 !important;
  box-shadow: none;
  border-radius: 10px 10px 0px 0px !important;
}
.table-filter .btn.tooltipped.teal i {
  color: #022213;
}
.table-filter .fa,
.fa::before {
  font-size: 20px;
}
.progress {
  min-width: 100px;
  background-color: #01FF48;
}
.progress .indeterminate {
  background-color: #01af35;
}
.chip.keychip,
.chip.memberchip {
  border-radius: 0px;
  width: 100%;
  height: auto;
}
.chip.keychip a,
.chip.keychip a:hover {
  color: #000000;
}
.closeicon,
.editicon {
  cursor: pointer;
  float: right;
  font-size: 16px;
  line-height: 32px;
  padding-left: 8px;
  color: #000000;
}
/* error stuff */
.error-output {
  min-height: 200px;
  max-width: 100%;
  word-break: break-all;
  padding: 10px;
  border: 1px dashed #000;
}
.error-output.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  height: 285px;
}
.error-output.wp-output {
  height: 245px;
  background-color: #fafafa;
}
.error-signup {
  margin-right: 32px;
  margin-left: 32px;
  margin-top: 24px;
}
table.striped > tbody > tr:nth-child(odd) {
  background-color: #fafafa;
}
table.striped > tbody > tr:nth-child(odd):hover {
  background-color: #f2f2f2;
}
@media screen and (max-width: 599px) {
  td .material-icons {
    max-width: 25px;
  }
}
/* Profile Card */
.header-card .card-image .gradient {
  width: 100%;
  height: auto;
  max-height: 60px;
}
.header-card .card-content p {
  /* font-size: 1.2rem; */
  margin: 10px 0 12px 0;
}
.header-card .card-profile-image {
  width: 100px;
  position: absolute;
  top: 22px;
  z-index: 1;
  right: 20px;
  cursor: pointer;
}
.header-card .btn-move-up {
  position: relative;
  top: -40px;
  right: -18px;
  margin-right: 10px !important;
}
.cf-profile {
  width: 195px;
}
.aliaspattern {
  width: 40% !important;
  margin-left: 5px !important;
}
#credentials-card .card {
  margin-top: 0px;
}
#credentials-card .card-content {
  padding: 15px;
}
#credentials-card .card-content.scrollable {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 60px;
}
#credentials-card h6 {
  margin-top: 0px;
}
/* Password rows */
.passrow {
  width: 100%;
  display: table;
}
@media screen and (max-width: 599px) {
  .passrow {
    display: block;
  }
}
.passrow:after {
  content: "";
  display: table;
  clear: both;
}
.usercol {
  width: 135px;
  float: left;
}
@media screen and (max-width: 599px) {
  .usercol {
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .usercol.nowrap {
    float: left;
    width: 90px;
  }
}
#server-info-card .usercol {
  width: 100px;
}
.passcol {
  -webkit-user-select: all;
  /* Chrome all / Safari all */
  -moz-user-select: all;
  /* Firefox all */
  -ms-user-select: all;
  /* IE 10+ */
  user-select: all;
  /* Likely future */
  float: left;
}
@media screen and (max-width: 599px) {
  .passcol {
    float: none;
  }
}
.passcol-noselect {
  float: left;
}
@media screen and (max-width: 599px) {
  .passcol-noselect {
    float: none;
  }
}
.selectable {
  -webkit-user-select: all;
  /* Chrome all / Safari all */
  -moz-user-select: all;
  /* Firefox all */
  -ms-user-select: all;
  /* IE 10+ */
  user-select: all;
  /* Likely future */
}
.pie-height {
  max-height: 150px;
}
/* Provision */
@media screen and (max-width: 991px) {
  #create-server-form .card-content {
    text-align: center;
  }
  #create-server-form h5 {
    padding-top: 40px;
  }
  #create-server-form h5 .text-xs {
    display: block;
  }
}
.image-card ul {
  margin: 0px;
}
.group-select {
  cursor: pointer;
  user-select: none;
  outline: 3px solid  transparent;
  -webkit-transition: outline 300ms ease-out;
  -moz-transition: outline 300ms ease-out;
  -o-transition: outline 300ms ease-out;
  transition: outline 300ms ease-out;
}
.card.group-select.selected {
  outline: 3px solid #01ff48;
  -webkit-transition: outline 300ms ease-in;
  -moz-transition: outline 300ms ease-in;
  -o-transition: outline 300ms ease-in;
  transition: outline 300ms ease-in;
}
.card-footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-weight: 800;
  z-index: 998;
  background-color: #022213;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.selected .card-footer {
  background-color: #01ff48;
  color: #022213 !important;
}
.dark-green-text,
.dark-green-text a {
  color: #01af35 !important;
}
.profile-price {
  color: #008970;
  font-size: 38px;
  line-height: 20px;
  font-weight: 800;
  padding-top: 25px;
}
.card-content ul li {
  color: #787878;
  /*margin-bottom: 5px;*/
}
.card-content ul li sup {
  color: #000000;
}
.white-text ul li {
  color: #ffffff;
}
.select-fontawesome {
  font-family: 'FontAwesome', 'icomoon', 'Raleway';
  font-size: 30px;
  width: auto;
}
/* Select2 - Start */
.select2-dropdown,
.select2-container--open {
  z-index: 2000;
}
.select2-field {
  position: relative;
}
.select2-field label {
  margin-bottom: 16px;
  display: block;
}
.select2-container--default .select2-selection--single {
  border: 0px solid #aaa !important;
  border-bottom: 1px solid #9e9e9e !important;
  border-radius: 0 !important;
}
.select2-container .select2-selection--single {
  height: 30px !important;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-left: 1px solid #9e9e9e !important;
  border-right: 1px solid #9e9e9e !important;
  border-top: 1px solid #9e9e9e !important;
  border-radius: 0 0 4px 4px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 24px !important;
  height: 24px !important;
  top: 0 !important;
  right: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url(/application/themes/webdock/img/hwicons2023/arrow-down-black.svg);
  background-repeat: no-repeat;
  height: 24px !important;
  width: 24px !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: -8px !important;
  border-color: transparent !important;
  border-style: none !important;
  border-width: 0 !important;
  margin-left: 0 !important;
  margin-top: 2px !important;
  transition: transform 0.3s ease;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
/* Select2 - End */
/* New products component */
@-webkit-keyframes load-show-scale {
  0% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes load-show-scale {
  0% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@media all and (min-width: 62.0625em) {
  .create-server-fields {
    display: flex;
    flex-flow: nowrap row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.create-server-fields .label-input {
  position: relative;
}
@media all and (min-width: 62.0625em) {
  .create-server-fields .label-input {
    flex: 1;
    margin-right: 1.5em;
  }
}
.create-server-fields .label-input input {
  background: #fbfcff;
  border: 1px solid #dae2ed;
  padding: 3.6em 1.2em 1.6em;
  font-size: 1em !important;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
}
.create-server-fields .label-input label {
  position: absolute;
  top: 0.55em;
  right: auto;
  bottom: auto;
  left: 0.9em;
  margin: auto;
  font-size: 1.3em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.create-server-fields .create-server-btn {
  padding: 1.325em 1.4em;
  line-height: 0;
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  text-transform: inherit;
  background: #01ff48 !important;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  width: 100%;
}
@media all and (min-width: 38.875em) {
  .create-server-fields .create-server-btn {
    width: inherit;
  }
}
.create-server-fields .create-server-btn:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 40px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}
.product-component {
  width: 100%;
  margin: -1em 0 2em;
  background: #fff;
}
@media all and (min-width: 62.0625em) {
  .product-component {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
  }
}
.product-component .product-row {
  position: relative;
  width: 100%;
  border: 1px solid #eee;
  margin-bottom: 2em;
  padding: 1em;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: none;
  transition: transform 160ms ease;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 0;
    box-shadow: none;
    padding: 1.5em 1em;
  }
}
@media all and (min-width: 75em) {
  .product-component .product-row {
    padding: 1em;
  }
}
.product-component .product-row.active {
  background: #fff;
  border: 2px solid #000;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.active {
    padding: 0;
    transform: scale(1.01);
    transition: transform 160ms ease;
  }
}
@media all and (min-width: 75em) {
  .product-component .product-row.active {
    padding: 1em;
  }
}
.product-component .product-row.active:hover {
  background: #fff;
}
.product-component .product-row.active .product-cell {
  color: #01af35;
}
.product-component .product-row.active .product-cell .product-price {
  color: #01af35;
}
.product-component .product-row.active .product-row__content {
  /*padding-bottom: 1em */
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.active .product-row__content {
    padding: 0;
  }
}
.product-component .product-row.active .product-row__details {
  display: block;
  border-top: 1px solid #eee;
  padding: 1em 0 0;
  box-sizing: border-box;
}
@media all and (min-width: 38.875em) {
  .product-component .product-row.active .product-row__details {
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-start;
    align-items: center;
  }
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.active .product-row__details {
    padding: 0 1em 1em;
  }
}
.product-component .product-row.active .product-row__text {
  display: block;
  padding: 1em 0;
  box-sizing: border-box;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.active .product-row__text {
    padding: 0 1em 1em;
  }
}
.product-component .product-row.active .product-row__text p {
  margin: 0;
  font-size: 0.9em;
  color: #0f0c0c;
  text-align: center;
}
.product-component .product-row.active .product-row__selection {
  position: relative;
  display: block;
  height: 2.2em;
  margin-top: 0.2em;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.active .product-row__selection {
    height: 3.2em;
  }
}
@media all and (min-width: 75em) {
  .product-component .product-row.active .product-row__selection {
    height: 2.2em;
  }
}
.product-component .product-row.active .product-row__selection span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1em;
  margin: auto;
  background: #000;
  color: #fff;
  width: calc(100% + 2.15em);
  height: 3.3em;
  padding: 1em;
  margin: 0;
  text-align: center;
  font-weight: 600;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.active .product-row__selection span {
    width: calc(100% + 0.15em);
    left: -0.1em;
  }
}
@media all and (min-width: 75em) {
  .product-component .product-row.active .product-row__selection span {
    width: calc(100% + 2.2em);
    left: -1.1em;
  }
}
.product-component .product-row.show-ribbon {
  position: relative;
  margin-bottom: 4em;
}
.product-component .product-row.show-ribbon.product-row__ribbon {
  bottom: 3.1em;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.show-ribbon {
    overflow: hidden;
    margin-bottom: 0;
  }
}
.product-component .product-row.show-ribbon .product-row__ribbon {
  display: block;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -2.3em;
  left: 0;
  margin: auto;
  width: 100%;
  background: rgba(15, 12, 12, 0.6);
  padding: 0.5em;
}
.product-component .product-row.show-ribbon .product-row__ribbon.popular {
  background-color: #01FF48;
}
.product-component .product-row.show-ribbon .product-row__ribbon.popular p {
  color: #000;
}
.product-component .product-row.show-ribbon .product-row__ribbon.ipv6only {
  background-color: #ffa500;
}
.product-component .product-row.show-ribbon .product-row__ribbon.special {
  background-color: #ffeb3b;
}
.product-component .product-row.show-ribbon .product-row__ribbon.special p {
  color: #000;
}
.product-component .product-row.show-ribbon .product-row__ribbon.noaddons {
  background-color: #787878;
}
.product-component .product-row.show-ribbon .product-row__ribbon.custom-profile-ribbon {
  background-color: #00a1a1;
}
.product-component .product-row.show-ribbon .product-row__ribbon.foundOffer {
  background-color: #01FF48;
}
.product-component .product-row.show-ribbon .product-row__ribbon.foundOffer p {
  color: #000 !important;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.show-ribbon .product-row__ribbon {
    width: 9em;
    top: 0.9em;
    right: -2.8em;
    bottom: auto;
    left: auto;
    transform: rotate(45deg);
    padding: 0.4em;
  }
}
@media all and (min-width: 75em) {
  .product-component .product-row.show-ribbon .product-row__ribbon {
    padding: 0.5em;
    top: 1em;
    right: -2.5em;
  }
}
.product-component .product-row.show-ribbon .product-row__ribbon.agreement-letter__ribbon--new {
  background: rgba(63, 184, 127, 0.8);
}
@media all and (max-width: 62.0625em) {
  .product-component .product-row.active.show-ribbon .product-row__ribbon {
    left: -2px;
    right: -2px;
    width: auto;
  }
}
.product-component .product-row.show-ribbon .product-row__ribbon p {
  margin: 0;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 0.85em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row.show-ribbon .product-row__ribbon p {
    font-size: 0.7em;
  }
}
.product-component .product-row:hover {
  background: rgba(0, 137, 112, 0.02);
}
.product-component .product-row:hover .product-cell {
  color: #01af35;
  cursor: pointer;
}
.product-component .product-row .product-row__ribbon {
  display: none;
}
.product-component .product-row .product-row__content {
  width: 100%;
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row .product-row__content {
    display: inline-grid;
    grid-template-columns: repeat(7, 1fr);
  }
}
.product-component .product-row .product-row__details,
.product-component .product-row .product-row__text,
.product-component .product-row .product-row__selection {
  display: none;
}
.product-component .product-row-header {
  display: none;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row-header {
    display: inline-grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
  }
}
@media all and (min-width: 75em) {
  .product-component .product-row-header {
    padding: 0.2em 1em;
  }
}
.product-component .product-row-header .product-cell p {
  font-size: 0.9em;
  color: #656565;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-row-header .product-cell:first-child {
    min-width: 10em;
  }
}
@media all and (min-width: 75em) {
  .product-component .product-row-header .product-cell:first-child {
    margin: 0 0.3em 0 -0.3em;
  }
}
.product-component .product-cell {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  font-weight: bold;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell {
    width: inherit;
    padding: 1em;
    box-sizing: border-box;
  }
}
.product-component .product-cell:first-child {
  width: 100%;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell:first-child {
    width: inherit;
    min-width: 10em;
  }
}
.product-component .product-cell:nth-child(2) {
  order: -1;
  /*width: 100%*/
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell:nth-child(2) {
    width: inherit;
    order: inherit;
    min-width: 240px;
  }
}
.product-component .product-cell:last-child {
  width: 100%;
  text-align: right;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell:last-child {
    width: inherit;
  }
}
.product-component .product-cell:last-child .product-content {
  width: 100%;
  text-align: right;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell:last-child .product-content {
    width: inherit;
    text-align: left;
  }
}
@media all and (max-width: 62.0625em) {
  .product-component .product-row.active .product-cell.hide-mobile-active {
    display: none;
  }
}
.product-component .product-cell p {
  margin-top: 0;
  margin-bottom: 0;
}
.product-component .product-cell p.product-name {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell p.product-name {
    font-size: 1em;
    margin: 0;
  }
}
.product-component .product-cell p.product-price {
  position: absolute;
  top: 0.65em;
  right: 1em;
  bottom: auto;
  left: auto;
  margin: auto;
  font-size: 1.5em;
  font-weight: bold;
  color: #01af35;
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell p.product-price {
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
    font-size: 1em;
    color: #000;
  }
}
@media all and (min-width: 62.0625em) {
  .product-component .product-cell .product-mobile-text {
    display: none;
  }
}
.product-component .detail-item {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
}
.product-component .detail-item:nth-child(0) {
  -webkit-animation: load-show-scale 300ms 0ms both;
  animation: load-show-scale 300ms 0ms both;
}
.product-component .detail-item:nth-child(1) {
  -webkit-animation: load-show-scale 300ms 50ms both;
  animation: load-show-scale 300ms 50ms both;
}
.product-component .detail-item:nth-child(2) {
  -webkit-animation: load-show-scale 300ms 100ms both;
  animation: load-show-scale 300ms 100ms both;
}
.product-component .detail-item:nth-child(3) {
  -webkit-animation: load-show-scale 300ms 150ms both;
  animation: load-show-scale 300ms 150ms both;
}
.product-component .detail-item:nth-child(4) {
  -webkit-animation: load-show-scale 300ms 200ms both;
  animation: load-show-scale 300ms 200ms both;
}
.product-component .detail-item:nth-child(5) {
  -webkit-animation: load-show-scale 300ms 250ms both;
  animation: load-show-scale 300ms 250ms both;
}
.product-component .detail-item:nth-child(6) {
  -webkit-animation: load-show-scale 300ms 300ms both;
  animation: load-show-scale 300ms 300ms both;
}
@media all and (min-width: 38.875em) {
  .product-component .detail-item {
    min-width: 48%;
    margin-right: 1%;
  }
  .product-component .detail-item:nth-child(2n) {
    margin: 1em 0 0 1%;
  }
}
@media all and (min-width: 62.0625em) {
  .product-component .detail-item {
    min-width: 32%;
    margin-right: 1%;
    margin-top: 1em;
  }
  .product-component .detail-item:nth-child(2n) {
    margin: 1em 1% 0 0;
  }
  .product-component .detail-item:nth-child(3n) {
    margin: 0 0 0 1%;
  }
}
.product-component .detail-item img {
  width: 2.7em;
  margin-right: 1em;
}
.product-component .detail-item img.card-list-item__icon--smallest {
  width: 2em;
}
.product-component .detail-item i {
  margin-right: 0.7em;
  color: #9e9e9e;
}
.product-component .detail-item span {
  color: #9e9e9e;
}
.product-component .detail-item span strong {
  color: #0f0c0c;
}
.product-score {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  /*margin: -0.5em 0 1em */
  margin: 0em 0 1em;
}
@media all and (min-width: 62.0625em) {
  .product-score {
    margin: -0.3em 0 0;
  }
}
.product-score .product-speedometer {
  width: 2.5em;
  margin-top: -0.5em;
}
.product-score .product-speedometer .product-speedometer__maxspeed {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 2.0px;
}
.product-score .product-speedometer .product-speedometer__speed {
  stroke: #01FF48;
  fill: none;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 2.6px;
}
.product-score .product-speedometer .product-speedometer__arrow {
  fill: #01FF48;
}
.product-score .product-score__text {
  margin-left: 1em;
  line-height: 100%;
}
.product-score .product-score__text .product-score__text__mobile {
  display: block;
  font-size: 0.75em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (min-width: 62.0625em) {
  .product-score .product-score__text .product-score__text__mobile {
    display: none;
  }
}
/* Provision wait */
.provision-name {
  font-size: 1.6rem !important;
  color: #787878;
}
@media screen and (max-width: 599px) {
  .provision-name {
    font-size: 1rem !important;
  }
}
.provision-tip {
  display: none;
}
#particles-js canvas {
  width: 100%;
  max-width: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  /*z-index: -1;*/
  max-height: 100vh;
}
/* Manage SSL */
.le-logos img {
  max-width: 180px;
}
/* Code editor */
#editor {
  margin: 0;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 599px) {
  #editor {
    height: 200px;
  }
}
/* Table */
tfoot {
  border-top: 2px solid #d0d0d0;
  font-weight: bold;
  background-color: white;
}
/* Invoice styles */
.invoice {
  min-height: 800px;
  position: relative;
  padding-bottom: 70px;
}
.invoice-logo img {
  max-width: 300px;
  float: right;
}
.invoice-desc-col {
  width: 88%;
}
.invoice-footer {
  position: absolute;
  overflow: hidden;
  width: 100%;
  bottom: 0;
}
.invoice-totals-container {
  margin-top: 20px;
}
.invoice-totals {
  width: 300px;
  max-width: 100%;
  float: right;
}
@media screen and (max-width: 599px) {
  .invoice-totals {
    margin-right: 0px;
  }
}
.invoice-totals .pull-right {
  margin-right: 32px;
}
.invoice-total-line {
  border-bottom: 3px solid #000000;
}
.balance-date-col {
  width: 175px;
}
/* DPA Styles */
.dpa ol li,
.dpa ul li {
  padding-bottom: 15px;
}
.dpa .signature {
  max-width: 150px;
}
@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
  .invoice-totals .pull-right {
    margin-right: 20px;
  }
  #page-wrapper {
    padding: 0px;
  }
  .container {
    width: 100%;
    margin: 0px;
    max-width: none;
  }
  h3 {
    font-size: 1.6rem;
  }
  .spacer {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  tr td,
  th {
    padding: 5px;
  }
  body.grey.lighten-5 {
    background-color: #fff !important;
    font-size: 12px;
  }
  .card-panel {
    margin: 0px;
    box-shadow: none;
  }
  .new-print-page {
    display: block;
    position: relative;
    height: 1px;
    width: 100%;
    content: ' ';
    page-break-before: always;
    page-break-inside: avoid;
    -webkit-region-break-inside: avoid;
  }
  .row .col {
    float: none;
  }
}
.printspacer {
  display: block;
  height: 1px;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}
/* Docs sidenav */
.docs-sidenav.fixed {
  position: fixed;
}
.docs-sidenav li {
  padding: 2px 0;
}
.docs-sidenav a {
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: .4;
  display: inline-block;
  color: #000000;
}
.docs-sidenav a:hover {
  border-bottom: 1px solid #3fb87f;
}
.docs-sidenav a.active {
  font-weight: 500;
  padding-left: 18px;
  border-left: 2px solid #3fb87f;
}
.docs-sidenav a.nav-selected {
  font-weight: 700;
  color: #008970;
}
.docs-sidenav a.nav-selected:hover {
  /*				color: lighten(#757575, 20%);
				border-bottom: none; */
}
.docs-sidenav li ul li a {
  padding-left: 20px;
  color: #404040;
}
.docs-sidenav li ul li a:hover {
  padding-left: 19px;
  border-left: 1px solid #3fb87f;
  border-bottom: none;
}
#docs-burger {
  opacity: 0;
}
/* Docs styles */
.docs-content h1,
.docs-content h2 {
  border-bottom: 1px solid #A0A0A0;
  margin: 20px 0 20px;
  padding-bottom: 9px;
}
.docs-content h1 {
  font-size: 2.1rem;
}
.docs-content h2 {
  font-size: 1.8rem;
}
.docs-content h3 {
  font-size: 1.3rem;
}
.docs-innercontent {
  background: white;
}
.docs-innercontent ul:not(.cardul) {
  padding-left: 40px;
}
.docs-innercontent ul:not(.cardul) li {
  list-style-type: disc;
}
.highlightify {
  color: #00a1a1;
  font-weight: 500;
}
table.invoice-preview .pull-right {
  margin-right: 25px;
}
pre {
  text-align: left;
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #000000;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* Commento comments pre */
.commento-markdown-help tr td pre {
  padding: 9.5px !important;
  background-color: #f5f5f5 !important;
}
.commento-markdown-help tr td {
  padding: 10px 6px!important;
}
/* Events tray */
#events_tray {
  display: block;
  position: fixed;
  z-index: 1000;
  bottom: 0%;
  right: 50%;
  margin-right: -20%;
  width: 40%;
}
@media screen and (max-width: 1199px) {
  #events_tray {
    right: 0%;
    margin-right: 0%;
    width: 100%;
  }
}
#events_tray .tray_content {
  border-radius: 2px;
  width: auto;
  position: relative;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.5em;
  font-weight: 400;
  word-break: break-word;
  cursor: default;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
#events_tray .tray_content {
  max-height: 38px;
  transition: max-height 0.15s ease-out;
}
#events_tray.shown .tray_content {
  max-height: 500px;
  transition: max-height 0.25s ease-in;
}
#events_tray .tray_header {
  width: 100%;
  padding: 10px 25px;
  color: #ffffff;
}
#events_tray .tray_header a {
  color: #ffeb3b;
  font-weight: 800;
}
#events_tray .tray_table {
  padding: 10px 25px;
  background-color: #ffffff;
  color: #000000;
}
/* Ink animation (ripple) */
.ink {
  display: block;
  position: absolute;
  background: rgba(55, 55, 55, 0.1);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.inkanimate {
  -webkit-animation: ripple 0.65s linear;
  -moz-animation: ripple 0.65s linear;
  -ms-animation: ripple 0.65s linear;
  -o-animation: ripple 0.65s linear;
  animation: ripple 0.65s linear;
}
@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
  }
}
@-moz-keyframes ripple {
  100% {
    opacity: 0;
    -moz-transform: scale(2.5);
  }
}
@-o-keyframes ripple {
  100% {
    opacity: 0;
    -o-transform: scale(2.5);
  }
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
/* More form styles (newsletter sub) */
fieldset {
  border: none;
}
.ccm-dashboard-express-form .text-muted {
  font-size: 10px;
  color: #f44336;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
  top: -0.5em;
}
/* testimonial stuff */
#signup-testimonial-wrap {
  position: relative;
}
#webdock-signup-form {
  position: relative;
}
#signup-testimonial-bg {
  position: absolute;
  top: 0px;
  left: 0px;
}
.testimonial {
  clear: both;
  margin-bottom: 40px;
  font-style: italic;
  font-weight: bold;
  color: #696969;
  width: 95%;
}
.testimonial .quote {
  font-size: 34px;
  height: 30px;
  color: #2c2c2c;
}
.testimonial .user {
  font-weight: normal;
  color: #2c2c2c;
}
/* testimonial carousel overrides */
.carousel,
.carousel.carousel-slider .carousel-item {
  min-height: 200px;
  height: 200px;
}
@media screen and (max-width: 599px) {
  .carousel,
  .carousel.carousel-slider .carousel-item {
    height: 360px;
  }
}
.carousel .indicators .indicator-item {
  background-color: #bdbdbd;
}
.carousel .indicators .indicator-item.active {
  background-color: #696969;
}
.carousel.carousel-slider .carousel-item h2 {
  border-bottom: none;
}
/* Toast for DK frontpage */
.page-template-frontpage-danish #toast-container {
  max-width: 40%;
  bottom: 3%;
  right: 2%;
  top: auto;
}
@media screen and (max-width: 991px) {
  .page-template-frontpage-danish #toast-container {
    max-width: 90%;
  }
}
.page-template-frontpage-danish .toast {
  background-color: #fffeff;
  color: #000000;
  word-break: normal;
  display: block;
}
/* Provision Server Card Styles */
@-webkit-keyframes load-show-scale {
  0% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes load-show-scale {
  0% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.card-list-item {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.2em;
}
.card-list-item .card-list-item__icon {
  display: inline-block;
  min-width: 1.8em;
  max-width: 1.8em;
  min-height: 1.8em;
  max-height: 1.8em;
  margin-right: 0.8em;
  margin-bottom: 0.5em;
}
.card-list-item .card-list-item__fonticon {
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.card-list-item .card-list-item__icon.card-list-item__icon--small {
  margin: 0 0.9em 0 0.1em;
  min-width: 1.6em;
  max-width: 1.6em;
  min-height: 1.6em;
  max-height: 1.6em;
}
.card-list-item span {
  font-size: 0.95em;
}
.card-list-item span strong {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pricing-tabs {
  margin-top: 0em;
}
.pricing-tabs:after {
  display: block;
  content: '';
  width: 100%;
  clear: both;
}
.pricing-tabs .nav-content .tabs {
  background: none;
  height: auto;
  white-space: unset;
  overflow: hidden;
}
@media all and (min-width: 62.0625em) {
  .pricing-tabs .nav-content .tabs {
    white-space: nowrap;
  }
}
.pricing-tabs .nav-content .tabs .tab {
  min-width: 50%;
  height: auto;
  line-height: 150%;
}
.pricing-tabs .nav-content .tabs a {
  padding: 1em;
  box-sizing: border-box;
  min-width: 50%;
  display: flex;
  flex-flow: wrap row;
  justify-content: center;
  align-items: center;
  text-overflow: inherit;
  background: transparent;
  border-bottom: 2px solid #aaa;
}
.pricing-tabs .tabs .indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: black;
  will-change: left, right;
}
.pricing-tabs .nav-content .tabs a img {
  width: 4em;
}
@media screen and (max-width: 599px) {
  .pricing-tabs .nav-content .tabs a img {
    width: 3em;
  }
}
.pricing-tabs .nav-content .tabs a span {
  color: #000;
  margin: 0 0.5em;
}
@media all and (min-width: 37.5em) {
  .pricing-tabs .nav-content .tabs a span {
    font-size: 1.2em;
    margin: 0.1em 0.5em;
  }
}
@media all and (min-width: 62.0625em) {
  .pricing-tabs .nav-content .tabs a span {
    font-size: 1.6em;
    margin: 0.25em 0.5em;
  }
}
.pricing-tabs .nav-content .tabs a.active {
  background: #00a1a1;
}
.pricing-tabs .nav-content .tabs a.active span,
.pricing-tabs .nav-content .tabs a.active i {
  color: #fff;
}
.pricing-tabs .nav-content .tabs a i {
  margin-top: 0.5em;
  width: 100%;
  font-size: 0.8rem;
  color: #000;
  text-transform: none;
  font-style: normal;
  line-height: 110%;
  align-self: flex-start;
}
@media all and (min-width: 62.0625em) {
  .pricing-tabs .nav-content .tabs a i {
    margin: 0;
    align-self: center;
    line-height: 150%;
  }
}
@media all and (min-width: 68.75em) {
  .pricing-tabs .nav-content .tabs a i {
    font-size: 0.9em;
  }
}
.pricing-tabs .tab-area {
  background: transparent;
}
.pricing-tabs .tab-area.tab-area--shadow {
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
}
.pricing-tabs .tab-area.active .col:nth-child(0) > .card {
  -webkit-animation: load-show-scale 300ms 0ms both;
  animation: load-show-scale 300ms 0ms both;
}
.pricing-tabs .tab-area.active .col:nth-child(1) > .card {
  -webkit-animation: load-show-scale 300ms 50ms both;
  animation: load-show-scale 300ms 50ms both;
}
.pricing-tabs .tab-area.active .col:nth-child(2) > .card {
  -webkit-animation: load-show-scale 300ms 100ms both;
  animation: load-show-scale 300ms 100ms both;
}
.pricing-tabs .tab-area.active .col:nth-child(3) > .card {
  -webkit-animation: load-show-scale 300ms 150ms both;
  animation: load-show-scale 300ms 150ms both;
}
.pricing-tabs .tab-area.active .col:nth-child(4) > .card {
  -webkit-animation: load-show-scale 300ms 200ms both;
  animation: load-show-scale 300ms 200ms both;
}
.pricing-tabs .tab-area.active .col:nth-child(5) > .card {
  -webkit-animation: load-show-scale 300ms 250ms both;
  animation: load-show-scale 300ms 250ms both;
}
.pricing-tabs .tab-area.active .col:nth-child(6) > .card {
  -webkit-animation: load-show-scale 300ms 300ms both;
  animation: load-show-scale 300ms 300ms both;
}
.pricing-tabs .card-mini-description {
  display: none;
}
.card.selected .card-mini-description {
  display: block;
  font-size: 0.9em;
  font-weight: normal;
  color: #fff;
  margin-bottom: 0.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.in-profile-modal .fa {
  display: block;
}
.in-profile-modal .card-list-item__icon {
  display: block;
}
.in-profile-modal .card-list-item {
  display: block;
  flex-flow: inherit;
  justify-content: inherit;
}
/* New grid tabs 2022 - todo: remove the old pricing tabs css above? */
@media all and (min-width: 38.875em) {
  .location-selector.two-items .location-selector__grid {
    display: flex;
    flex-flow: nowrap row;
    justify-content: center;
    align-items: center;
  }
}
.location-selector.two-items .location-tile {
  margin-bottom: 1em;
}
@media all and (min-width: 38.875em) {
  .location-selector.two-items .location-tile {
    margin-bottom: 1.5em;
  }
}
@media all and (min-width: 38.875em) {
  .location-selector.two-items .location-tile:first-child {
    margin-right: 1em;
  }
}
@media all and (min-width: 38.875em) {
  .location-selector.two-items .location-tile:last-child {
    margin-left: 1em;
  }
}
@media all and (min-width: 38.875em) {
  .location-selector.two-items-full-width .location-selector__grid {
    display: flex;
    flex-flow: nowrap row;
    justify-content: center;
    align-items: center;
  }
}
.location-selector.two-items-full-width .location-tile {
  flex: 1;
  margin-bottom: 1em;
}
@media all and (min-width: 38.875em) {
  .location-selector.two-items-full-width .location-tile {
    margin-bottom: 1.5em;
  }
}
@media all and (min-width: 38.875em) {
  .location-selector.two-items-full-width .location-tile:first-child {
    margin-right: 1em;
  }
}
@media all and (min-width: 38.875em) {
  .location-selector.two-items-full-width .location-tile:last-child {
    margin-left: 1em;
  }
}
@media all and (min-width: 62.0625em) {
  .location-selector.three-items .location-selector__grid {
    display: flex;
    flex-flow: nowrap row;
    justify-content: space-between;
    align-items: center;
  }
}
.location-selector.three-items .location-tile {
  margin-bottom: 1em;
}
@media all and (min-width: 38.875em) {
  .location-selector.three-items .location-tile {
    margin-bottom: 1.5em;
  }
}
@media all and (min-width: 62.0625em) {
  .location-selector.three-items .location-tile {
    max-width: 32%;
    min-width: 32%;
  }
}
@media all and (min-width: 75em) {
  .location-selector.three-items .location-tile {
    max-width: 31.5%;
  }
}
@media all and (min-width: 81.25em) {
  .location-selector.three-items .location-tile .location-tile__wrapper {
    padding: 1.2em 2em;
  }
}
@media all and (min-width: 87.5em) {
  .location-selector.three-items .location-tile .location-tile__wrapper {
    padding: 1.5em 2em;
  }
}
@media all and (min-width: 38.875em) {
  .location-selector.four-items .location-selector__grid {
    display: flex;
    flex-flow: wrap row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.location-selector.four-items .location-tile {
  margin-bottom: 1em;
}
@media all and (min-width: 38.875em) {
  .location-selector.four-items .location-tile {
    max-width: 48%;
    min-width: 48%;
    margin-bottom: 1.5em;
  }
}
@media all and (min-width: 87.5em) {
  .location-selector.four-items .location-tile {
    max-width: 24%;
    min-width: 24%;
  }
}
@media all and (min-width: 75em) {
  .location-selector.four-items .location-tile .location-tile__wrapper {
    padding: 1.2em 1em;
  }
}
@media all and (min-width: 87.5em) {
  .location-selector.four-items .location-tile .location-tile__description {
    padding: 0 0.5em;
    box-sizing: border-box;
  }
}
.location-selector .location-tile {
  display: block;
  position: relative;
  background: white !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 40px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
}
.location-selector .location-tile .location-tile__wrapper {
  border-radius: 12px;
  display: block;
  padding: 1em;
  box-sizing: border-box;
}
.location-selector .location-tile:hover .location-tile__wrapper {
  background: rgba(0, 137, 112, 0.02);
}
.location-selector .location-tile:hover .location-tile__header span,
.location-selector .location-tile:hover .location-tile__description {
  color: #008970;
}
.location-selector .location-tile.active {
  border-color: #01af35 !important;
}
.location-selector .location-tile .location-tile__header {
  position: relative;
  margin-top: 0.5em;
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.location-selector .location-tile .location-tile__header img {
  width: 4em;
  margin-right: 0.25em;
}
.location-selector .location-tile .location-tile__header span {
  font-size: 1.6em;
  margin-left: 0.25em;
  color: #000;
}
.location-selector .location-tile .location-tile__description {
  position: relative;
  margin-top: 0.5em;
  display: block;
  text-align: center;
  color: #000;
  z-index: 1;
}
.location-selector .location-tile.inactive .location-tile__description {
  color: #9e9e9e;
}
.location-selector .location-tile.inactive .location-tile__header img {
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(1);
  /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1);
  /* Microsoft Edge and Firefox 35+ */
}
.location-selector .location-tile.show-ribbon {
  position: relative;
}
.location-selector .location-tile.show-ribbon.location-selector__ribbon {
  bottom: 3.1em;
}
@media all and (min-width: 62.0625em) {
  .location-selector .location-tile.show-ribbon {
    overflow: hidden;
  }
}
.location-selector .location-tile.show-ribbon .location-selector__ribbon {
  display: block;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -2.3em;
  left: 0;
  margin: auto;
  width: 100%;
  background: rgba(15, 12, 12, 0.6);
  padding: 0.5em;
}
.location-selector .location-tile.show-ribbon .location-selector__ribbon.soldout {
  background-color: #ffa500;
}
.location-selector .location-tile.show-ribbon .location-selector__ribbon.noaddons {
  background-color: rgba(99, 99, 99, 0.6);
}
@media all and (min-width: 62.0625em) {
  .location-selector .location-tile.show-ribbon .location-selector__ribbon {
    width: 9em;
    top: 0.9em;
    right: -2.8em;
    bottom: auto;
    left: auto;
    transform: rotate(45deg);
    padding: 0.4em;
  }
}
@media all and (min-width: 75em) {
  .location-selector .location-tile.show-ribbon .location-selector__ribbon {
    padding: 0.5em;
    top: 1em;
    right: -2.5em;
  }
}
@media all and (max-width: 62.0625em) {
  .location-selector .location-tile.active.show-ribbon .location-selector__ribbon {
    left: -2px;
    right: -2px;
    width: auto;
  }
  .location-selector .location-tile.show-ribbon {
    margin-bottom: 3.2em;
  }
}
.location-selector .location-tile.show-ribbon .location-selector__ribbon p {
  margin: 0;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 0.85em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
@media all and (min-width: 62.0625em) {
  .location-selector .location-tile.show-ribbon .location-selector__ribbon p {
    font-size: 0.6em;
  }
}
.location-selector .location-tile .location-selector__ribbon {
  display: none;
}
/* Additions for hardware class switching */
.hardware-class-switcher {
  transition: background-color 500ms linear;
}
.hardware-class-switcher.ryzen {
  background-color: #0c1117;
}
.hardware-class-switcher.ryzen h3,
.hardware-class-switcher.ryzen p.largertext,
.hardware-class-switcher.ryzen strong,
.hardware-class-switcher.ryzen .currency-selector.center-block {
  color: #fff;
}
.hardware-class-switcher.ryzen .currency-selector.center-block input.select-dropdown {
  border-bottom: 1px solid #fff;
}
.hardware-class-switcher.ryzen .currency-selector.center-block .caret {
  color: #fff !important;
}
.hardware-class-switcher.ryzen .card,
.hardware-class-switcher.ryzen .card strong,
.hardware-class-switcher.ryzen .product-component strong,
.hardware-class-switcher.ryzen .product-component h3 {
  color: #000000;
}
.hardware-class-switcher.ryzen .location-selector .location-tile.active,
.hardware-class-switcher.ryzen .card.group-select.selected {
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0, 161, 161, 0.75);
  box-shadow: 0px 0px 30px 5px rgba(0, 161, 161, 0.75);
}
.hardware-class-switcher.ryzen .location-selector .location-tile.active {
  border: 2px solid transparent;
  outline: 3px solid #00a1a1;
  /*transition: box-shadow 300ms ease-in; */
}
.hardware-class-switcher.ryzen .location-selector .location-tile,
.hardware-class-switcher.ryzen .card.group-select {
  /*border: 3px solid transparent */
}
.grid-virtualization-tabs .location-tile.show-ribbon .location-selector__ribbon.additionalChargeRibbon {
  background-color: #3fb87f;
}
.grid-virtualization-tabs .location-tile.show-ribbon .location-selector__ribbon.additionalChargeRibbon p {
  font-size: 0.8rem;
}
.grid-variant-tabs .location-tile.show-ribbon .location-selector__ribbon.sale {
  background-color: #ffa500;
}
.grid-variant-tabs .location-tile.show-ribbon .location-selector__ribbon.udsalg {
  background-color: #ffa500;
}
.grid-variant-tabs .location-tile.show-ribbon .location-selector__ribbon p {
  font-size: 0.8rem;
}
.location-selector .location-tile.inactive {
  pointer: default;
  pointer-events: none;
  background-color: #dedede;
}
.location-selector .location-tile.inactive .location-tile__header span {
  color: #9e9e9e;
}
.location-selector .location-tile.nopointer {
  pointer: default;
  pointer-events: none;
}
.product-icon-pricing-page {
  width: auto !important;
  height: 40px;
}
/* Change profile summary */
.summary-desc-col {
  width: 80%;
}
/* Tiled modal menu */
@-webkit-keyframes load-show-scale {
  0% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes load-show-scale {
  0% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.remodal-wrapper {
  padding: 0;
}
@media all and (min-width: 44.75em) {
  .remodal-wrapper {
    padding: 1em;
  }
}
.remodal-wrapper .remodal {
  padding: 26px;
}
.remodal-wrapper .remodal.fullwidth-modal {
  padding: 1em 0;
}
@media all and (min-width: 38.875em) {
  .remodal-wrapper .remodal.fullwidth-modal {
    padding: 2em;
  }
}
.remodal-wrapper .remodal #server-context-menu h6 {
  margin: 0 1em 0.5em;
}
@media all and (min-width: 38.875em) {
  .remodal-wrapper .remodal #server-context-menu h6 {
    margin: 0 0 1em;
  }
}
.tile-grid {
  margin-bottom: 2em;
}
.tile-grid:last-child {
  margin: 0;
}
@media all and (min-width: 38.875em) {
  .tile-grid {
    display: flex;
    flex-flow: wrap row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
  }
}
.tile-grid ul {
  width: 100%;
}
#server-context-menu ul li {
  padding: 0;
}
.tile-grid li {
  width: 100%;
}
@media all and (min-width: 38.875em) {
  .tile-grid li {
    width: 48%;
    min-width: 48%;
    max-width: 48%;
    flex: 1;
    margin-bottom: 1.6em;
  }
}
.tile-grid .tile-grid-item {
  position: relative;
  display: flex !important;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  padding: 1em;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  background-color: #1e392b;
}
@media all and (min-width: 38.875em) {
  .tile-grid .tile-grid-item {
    border: none;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.15), 0 1px 1px 0 rgba(0, 0, 0, 0.15), 0 0 1px -2px rgba(0, 0, 0, 0.2);
  }
}
@media all and (min-width: 38.875em) {
  .tile-grid .tile-grid-item:after {
    content: '';
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #008970 0%, #00a1a1 100%);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: transform 150ms ease, opacity 150ms ease;
  }
}
@media all and (min-width: 38.875em) {
  .tile-grid .tile-grid-item:hover {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  }
}
@media all and (min-width: 38.875em) {
  .tile-grid .tile-grid-item:hover:after {
    transform: translate3d(0, 0, 0);
    transition: transform 150ms ease, opacity 150ms ease;
  }
}
.tile-grid .tile-grid-item:hover .tile-grid-item__icon i {
  color: #008970;
}
.tile-grid .tile-grid-item:hover .tile-grid-item__text h4 {
  color: #fff !important;
}
.tile-grid .tile-grid-item:hover .tile-grid-item__text span {
  color: #6b6b6b;
}
.tile-grid .tile-grid-item .tile-grid-item__icon {
  max-width: 4em;
  height: 4em;
  display: flex;
  align-items: center;
  margin-right: 1em;
}
.tile-grid .tile-grid-item .tile-grid-item__text h4 {
  margin: 0;
  display: block;
  font-size: 1.2em;
  text-align: left;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
  width: fit-content;
}
.tile-grid .tile-grid-item .tile-grid-item__text h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #01FF48;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.tile-grid .tile-grid-item.disabled .tile-grid-item__text h4 {
  color: #bdbdbd;
}
.tile-grid .tile-grid-item .tile-grid-item__text span {
  display: block;
  margin: 0;
  font-size: 0.9em;
  text-align: left;
  color: #9e9e9e;
}
@media all and (min-width: 62.0625em) {
  .remodal.fullwidth-modal {
    max-width: 1020px;
  }
}
@media all and (min-width: 38.875em) {
  .tile-grid li {
    width: 48%;
    min-width: 48%;
    max-width: 48%;
    flex: 1;
    margin-right: 2%;
  }
}
@media all and (min-width: 38.875em) {
  .tile-grid li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (min-width: 62.0625em) {
  .tile-grid li {
    width: 32%;
    min-width: 32%;
    max-width: 32%;
  }
}
@media all and (min-width: 62.0625em) {
  .tile-grid li:nth-child(2n) {
    margin-right: 2%;
  }
}
@media all and (min-width: 62.0625em) {
  .tile-grid li:nth-child(3n) {
    margin-right: 0;
  }
}
/* The Cookie Notice. Ech... */
.cookies {
  position: fixed;
  bottom: 0px;
  left: 0px;
  background: #2c2c2c;
  height: 50px;
  width: 100%;
  text-align: center;
  padding: 10px 0px 10px;
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.06);
  transition: all 400ms ease-in-out;
  z-index: 999;
  transform: translateY(100%) scale(0.8);
  opacity: 0;
  filter: blur(3px);
}
.cookies-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
}
.cookies-icon {
  height: 36px;
  width: 36px;
  animation: spin 2s linear infinite;
}
@media screen and (max-width: 991px) {
  .cookies-icon {
    height: 28px;
    width: 28px;
  }
}
.cookies-message {
  height: 36px;
  padding: 0px 10px;
  line-height: 36px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .cookies-message {
    font-size: 12px;
  }
}
.cookies-accept {
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  background: #00a1a1;
  cursor: pointer;
  outline: none;
  transition: background 250ms ease-in-out;
  font-family: 'Montserrat', sans-serif;
  user-select: none;
}
.cookies-accept:hover {
  background: #787878;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#readingBar {
  display: none;
}
.stripe-climate-fund .stripe-climate-badge {
  width: 24px;
  height: 24px;
  margin-top: 8px;
}
/* New (2021) side-by-side card layout */
.side-by-side-cards h1 {
  color: white;
  font-weight: bold;
  font-size: 2.5rem;
}
.side-by-side-cards strong {
  color: #01ff48;
}
.side-by-side-cards h2 {
  color: #000000;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0px;
}
.side-by-side-cards .left-info-card {
  padding-right: 0px;
}
@media screen and (max-width: 991px) {
  .side-by-side-cards .left-info-card {
    padding-right: .75rem;
  }
}
.side-by-side-cards .left-info-card p {
  margin-top: 10px;
}
.side-by-side-cards .left-info-bg {
  background-color: #ffffff;
  border-radius: 10px 0px 0px 10px;
  padding: 45px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .side-by-side-cards .left-info-bg {
    border-radius: 10px;
  }
}
.side-by-side-cards .right-form-card {
  border-radius: 10px;
  -webkit-box-shadow: 10px 0px 25px 5px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 10px 0px 25px 5px rgba(0, 0, 0, 0.13);
  box-shadow: 10px 0px 25px 5px rgba(0, 0, 0, 0.13);
  z-index: 1;
  border-right: 7px solid #01ff48;
}
.side-by-side-cards .right-form-card .form-card-inner {
  padding: 45px;
}
@media screen and (max-width: 991px) {
  .side-by-side-cards .right-form-card .form-card-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.right-form-card.noborder {
  border-radius: 0px;
  border: none;
  box-shadow: none;
}
@media screen and (min-width: 600px) {
  .right-form-card.signup-form {
    /*	margin-top: 75px;*/
  }
}
#contact-form-support .materialize-textarea {
  min-height: 8rem;
}
/* New sections graphical 2021 */
.green-section-1 {
  background-image: url(/application/themes/webdock/img/about_us/bg-1.png);
  /* lt ie8 */
  -ms-background-position-x: center;
  -ms-background-position-y: bottom;
  background-position: center bottom;
  /* scale bg image proportionately */
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 575px;
}
.green-section-2 {
  background-image: url(/application/themes/webdock/img/about_us/bg-3.jpg);
  /* lt ie8 */
  -ms-background-position-x: center;
  -ms-background-position-y: bottom;
  background-position: center bottom;
  /* scale bg image proportionately */
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 2380px;
}
@media screen and (max-width: 599px) {
  .green-section-2 {
    min-height: 3900px;
  }
}
.decorated-section-1 {
  background-image: url(/application/themes/webdock/img/about_us/bg-4.png);
  /* lt ie8 */
  -ms-background-position-x: center;
  -ms-background-position-y: bottom;
  background-position: center bottom;
  /* scale bg image proportionately */
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1100px;
}
.decorated-section-2 {
  background-image: url(/application/themes/webdock/img/about_us/bg-2.png);
  /* scale bg image proportionately */
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 980px;
}
.container.christmas-specials {
  max-width: 100%;
  width: 100%;
  margin: 0px;
}
.christmas-hero-wrapper {
  padding: 100px 0px;
  background-image: url("/application/themes/webdock/img/xmasdeals/green-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.christmas-hero-wrapper .hero-text {
  color: #477646;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
}
.christmas-hero-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.christmas-hero-wrapper .hero-text span {
  font-size: 25px;
  font-weight: 200;
}
.christmas-hero-wrapper .hero-text h1 {
  font-family: "Alex Brush", cursive;
  color: #fa0000;
  margin: 10px 0 0 0;
  font-size: 100px;
  height: 85px;
}
.christmas-hero-wrapper .hero-text h2 {
  font-weight: 800;
  margin: 0;
  font-size: 80px;
}
@media (max-width: 600px) {
  .christmas-hero-wrapper .hero-text h1 {
    font-size: 60px;
    height: 50px;
  }
  .christmas-hero-wrapper .hero-text h2 {
    font-size: 50px;
  }
  .christmas-hero-wrapper .hero-text span {
    font-size: 20px;
  }
  .account-type-container {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 16px;
  }
  .form-card-inner .account-type-container {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-row-gap: 16px !important;
  }
}
@media (max-width: 400px) {
  .christmas-hero-wrapper {
    padding: 80px 0px;
  }
  .christmas-hero-wrapper .hero-text h1 {
    font-size: 50px;
  }
  .christmas-hero-wrapper .hero-text h2 {
    font-size: 40px;
  }
  .christmas-hero-wrapper .hero-text span {
    font-size: 14px;
  }
}
.vps_comparison_table {
  margin-top: 40px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
}
.vps_comparison_header {
  background-color: #007964;
  padding: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.vps_comparison_header img {
  float: left;
  padding-right: 20px;
  margin-right: 20px;
  max-height: 75px;
  border-right: 1px solid #309587;
}
@media screen and (max-width: 599px) {
  .vps_comparison_header img {
    max-height: 65px;
  }
}
.vps_comparison_header div {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .vps_comparison_header div {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1199px) {
  .vps_comparison_header div {
    font-size: 1.4rem;
  }
}
.vps_comparison_line {
  padding-left: 30px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
}
.vps_comparison_line i {
  padding-right: 15px;
}
@media screen and (max-width: 599px) {
  .vps_comparison_line {
    font-size: 13px;
  }
}
.vps_comparison_line.greenbg {
  background-color: rgba(0, 121, 100, 0.6);
}
#modal-content .vps_comparison_table {
  margin-top: 0px;
}
#modal-content .vps_comparison_line {
  background-color: rgba(0, 121, 100, 0.6);
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 11px;
}
#modal-content .vps_comparison_line.greenbg {
  background-color: #007964;
}
#modal-content .vps_comparison_header {
  text-align: center;
}
#modal-content .vps_comparison_header img {
  float: none;
  text-align: center;
  margin: 0px auto;
  display: block;
  border-right: none;
}
#modal-content .vps_comparison_header div {
  font-size: 22px;
}
#modal-content .vps_comparison_header br {
  display: none;
}
/* Billing info / Paypal form */
#top_up_amount {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-left: -10px;
}
/* Educational Accounts */
.institution_logo {
  padding-bottom: 25px;
}
.institution_logo img {
  max-width: 120px;
  height: 83px;
  /* Kosher? */
}
/* Customize Profile modal */
.custom-profile-item-icon {
  width: 3em;
  margin-right: 1em;
  vertical-align: middle;
}
.profile_component_qty {
  font-size: 42px !important;
  font-weight: bold;
  text-align: center;
  padding: 10px !important;
  width: 135px !important;
  max-width: 100% !important;
}
.modal-content input[type=number]::-webkit-inner-spin-button,
.modal-content input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.custom-profile-cell {
  padding: 1em;
  font-weight: bold;
}
.summary-product-grid {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1.5em;
}
@media all and (min-width: 25.625em) {
  .summary-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 31.25em) {
  .summary-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 50em) {
  .summary-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.summary-product-grid .summary-prouduct-item {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 5%;
}
.summary-product-grid .summary-prouduct-item .summary-prouduct-item__icon {
  display: block;
  width: 2em;
  margin-right: 0.5em;
}
.summary-product-grid .summary-prouduct-item .summary-prouduct-item__icon.fa {
  width: auto;
  margin-right: 0.3em;
  color: #787878;
}
.summary-product-grid .summary-prouduct-item p {
  margin: 0;
  line-height: 110%;
}
.summary-product-grid .summary-prouduct-item .summary-prouduct-item__icon {
  display: block;
  width: 2em;
  margin-right: 0.5em;
}
.order-summary-view .order-summary-view__col .card .card-check-icon {
  position: absolute;
  top: 1em;
  right: 1em;
  bottom: auto;
  left: auto;
  margin: auto;
}
@media all and (min-width: 38.875em) {
  .order-summary-view .order-summary-view__col .card-content .card-content__header h6 {
    margin: 0 0 0.2em;
    font-size: 1.4em;
  }
}
.order-summary-view .order-summary-view__col .card-content .card-content__header h6 {
  margin: 0 0 0.1em;
  font-size: 1.2em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
@media all and (min-width: 38.875em) {
  .order-summary-view .order-summary-view__col .card-content .card-content__header h6 {
    margin: 0 0 0.2em;
    font-size: 1.4em;
  }
}
.order-summary-view .order-summary-view__col .card-content .card-content__header p {
  margin: 20px 0px;
}
/* CHATBOX */
.chatBoxButton {
  position: fixed;
  bottom: 20px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #022213;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
.chatBoxButton .chatImage {
  width: 40px;
  height: auto;
  position: absolute;
}
.chatBoxButton .closeImage {
  width: 32px;
  height: auto;
  position: absolute;
}
.chatBox {
  position: fixed;
  bottom: 96px;
  right: 24px;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.04), 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  width: 400px;
  display: none;
  z-index: 1899;
  max-height: 87vh;
  /* Ensure the chatBox does not exceed the viewport */
}
.chatBox .heading {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 16px 16px 24px 16px;
  background: #022213;
  border-radius: 10px 10px 0 0;
}
.chatBox .heading .close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  opacity: 1;
}
.chatBox .heading .close img {
  width: 24px;
  height: 24px;
}
.chatBox .chatbox-combined {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 8px;
}
.chatBox .chatbox-combined h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.chatBox .heading .subheadline {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  padding-top: 8px;
}
.chatBox .chat-box-content {
  padding: 14px 16px 22px 16px;
  background: #fff;
  max-height: 60vh;
  /* Adjust height within chatBox */
  overflow-y: auto;
  /* Enable scrolling inside chat-box-content */
  border-radius: 0;
}
.chatBox .chat-box-content .content-headline {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 6px;
}
.chatBox .chat-box-content .content-headline span {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
.chatBox .chat-box-content ul {
  margin-left: 54px;
  margin-bottom: 12px;
  margin-top: 8px;
}
.chatBox .chat-box-content ul li {
  font-size: 13px;
  list-style-type: disc;
  line-height: 1.4;
  padding-bottom: 8px;
  color: #000;
}
.chat-btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 12px;
  border-radius: 24px;
  font-weight: 700;
  line-height: 1;
  background: #01FF48;
  color: #000;
  border: 1px solid #01FF48;
  font-family: 'Raleway', sans-serif;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.chat-btn-secondary {
  width: 100%;
  padding: 12px 16px;
  font-size: 12px;
  border-radius: 24px;
  font-weight: 700;
  line-height: 1;
  background: #fff;
  color: #000;
  border: 1px solid #01FF48;
  font-family: 'Raleway', sans-serif;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.chat-btn:hover {
  background: #fff;
  border: 1px solid #01FF48;
}
.chat-btn-secondary:hover {
  background: #01FF48;
  border: 1px solid #01FF48;
}
.chat-box-content::-webkit-scrollbar {
  width: 4px;
  /* width of the scrollbar */
}
.chat-box-content::-webkit-scrollbar-track {
  background: #fff;
  /* color of the track */
}
.chat-box-content::-webkit-scrollbar-thumb {
  background: #b3b3b3;
  /* color of the scroll thumb */
  border-radius: 2px;
}
.chat-box-content::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  /* color when hovering */
}
.topDivider {
  height: 10px;
  background: #fff;
}
.middleDivider {
  padding: 12px 0;
}
@media only screen and (max-width: 480px) {
  .chatBox {
    bottom: 0;
    right: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    box-shadow: none;
    border-radius: 0;
    max-height: calc(var(--vh, 1vh) * 100);
  }
  .chatBox .chat-box-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }
}
/* Docs Light Mode Start */
body.is-docs {
  background: #E8EFE8;
  color: black;
}
#commento-textarea-root {
  color: black;
}
#commento-submit-button-root {
  color: black;
}
#commento-submit-button-root:hover {
  background-color: white;
}
.is-docs .card-panel {
  background: #085330 !important;
}
.docs-view .docs-content pre {
  color: grey;
}
.page-type-docs-article .docs-innercontent a:not(.tag-item) strong {
  color: black;
}
.docs-search input::-webkit-input-placeholder {
  color: white;
}
.docs-sidebar {
  background: white !important;
  border-right: 0px solid white;
  border-radius: 10px;
  margin-bottom: 1em;
  padding: 1em;
  box-sizing: border-box;
}
@media all and (min-width: 993px) {
  .docs-sidebar-right {
    max-width: 13.7em;
  }
}
@media all and (min-width: 62.0625em) {
  .docs-sidebar.docs-sidebar--sticky {
    /*margin-top: 100px;
      position: sticky !important; */
    min-width: 23.5%;
    max-width: 23.5%;
  }
}
@media all and (min-width: 75.0625em) {
  .docs-sidebar.docs-sidebar--sticky {
    min-width: 15.5%;
    max-width: 15.5%;
  }
}
@media all and (min-width: 80em) {
  .docs-sidebar.docs-sidebar--sticky {
    min-width: 13.7em;
    max-width: 13.7em;
  }
}
.docs-search input::placeholder {
  color: #787878 !important;
}
body.is-docs .tile-grid-item {
  background-color: #022213 !important;
}
.gradient {
  background-color: #022213 !important;
}
.docs-content .gradient a {
  color: white;
}
.docs-sidenav a {
  color: black;
}
.docs-sidebar .sidenav-item details > summary svg > path {
  fill: #022213;
}
.docs-sidebar .sidenav-item details > summary:hover svg > path {
  fill: #01ff48;
}
.tile-grid-item__text h4 {
  color: white !important;
}
.tile-grid-item__text p {
  color: white;
}
body {
  background-color: #f4f8f8;
}
#readingBar {
  background-color: transparent;
}
#readingBar::-webkit-progress-bar {
  background-color: transparent;
}
.reading-progress-container {
  background-color: transparent;
}
.docs-view .docs-content .docs-date {
  color: white !important;
}
.docs-view .docs-content h2 {
  color: black;
}
.docs-view .docs-content h3 {
  color: black;
}
.docs-view .docs-content pre {
  background: rgba(62, 75, 73, 0.08);
}
.sub-header {
  background: transparent;
}
.sub-header h5 {
  color: rgba(0, 0, 0, 0.8);
}
.sub-header.sub-header--docs-start input:focus {
  background: rgba(0, 137, 112, 0.04);
}
.docs-sidebar .sidenav-item details > summary .sidenav-item strong {
  color: white;
}
.docs-sidebar .sidenav-item details > summary .tile-grid-item h4 {
  color: white;
}
.docs-sidebar .sidenav-item details > summary .docs-sidebar .sidenav-item:before {
  background: #008970;
}
.docs-sidebar .sidenav-item details > summary .docs-sidebar li ul li a.nav-path-selected {
  color: white;
}
.docs-sidebar .sidenav-item details > summary .docs-sidebar li ul li a {
  color: white;
}
.docs-sidebar .sidenav-item details > summary .docs-sidebar li.is-active-li a.is-active-link {
  color: white !important;
}
.docs-sidebar .sidenav-item details > summary .breadcrumb ul li a {
  color: #9e9e9e;
}
.docs-search {
  position: relative;
  border-radius: 10px;
}
.search-highlight {
  color: #01ff48;
}
body.is-docs .docs-search {
  background: #eeeeee;
}
.docs-search input {
  color: #434343;
}
.docs-search input:focus {
  background: rgba(0, 137, 112, 0.04);
  color: #434343;
}
.docs-search input:focus::-webkit-input-placeholder {
  color: #008970;
}
.docs-search input:focus::-moz-placeholder {
  color: #008970;
}
.docs-search input:focus::-ms-input-placeholder {
  color: #008970;
}
.docs-search input:focus::-moz-placeholder {
  color: #008970;
}
.docs-search input::-webkit-input-placeholder {
  color: black;
}
.docs-search input::-moz-placeholder {
  color: black;
}
.docs-search input::-ms-input-placeholder {
  color: black;
}
.docs-search input::-moz-placeholder {
  color: black;
}
.docs-search .docs-search__btn > svg > path {
  transition: all 200ms ease;
}
.docs-search .docs-search__btn > svg:hover > path {
  fill: #01ff48 !important;
}
.docs-search .docs-search__btn {
  background: #eeeeee;
}
.docs-innercontent .margin-top strong {
  color: black;
}
.docs-search .docs-search__btn svg path {
  fill: #787878 !important;
}
.docs-related-block {
  border: 0px solid black;
}
.docs-related-block .docs-related-block__header h5 {
  color: black;
}
.docs-related-block .docs-related-block__header button {
  background: none;
}
.docs-related-block .docs-related-block__content ul li a {
  color: rgba(0, 0, 0, 0.75);
}
.docs-related-block .docs-related-block__content .show-all-btn {
  color: rgba(0, 0, 0, 0.75);
  background: rgba(238, 238, 238, 0.9);
}
.docs-related-block .docs-related-block__content .show-all-btn:hover {
  color: #008970;
}
.docs-list__item {
  background: #022213;
}
.docs-list ul .docs-list__item h3 {
  color: white;
}
.docs-list ul .docs-list__item h3 a:hover {
  color: #008970;
}
.docs-list ul .docs-list__item p {
  color: white;
}
.docs-list ul .docs-list__item p a {
  color: white !important;
}
.docs-list ul .docs-list__item p a:hover {
  color: #008970;
}
.docs-list-header {
  background: #fff;
}
.docs-list-header h1 {
  color: rgba(0, 0, 0, 0.9);
}
.docs-category h2 a {
  color: #000;
}
.commento-login-box-subtitle {
  color: white;
}
.commento-email-button {
  color: black;
}
.commento-email-button:hover {
  background-color: white;
  color: black;
}
.clipboard-btn {
  color: #333;
  background-color: #eee;
}
/* Docs Light Mode End */
.commento-root .commento-login .commento-login-text {
  width: min-content;
  margin-left: auto;
}
.commento-root .commento-login .commento-login-text:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 12px;
  left: 0;
  background-color: #01ff48;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.commento-root .commento-login .commento-login-text:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.commento-root .commento-submit-button {
  background: #01ff48 !important;
}
.commento-root .commento-submit-button:hover {
  background: white !important;
}
.commento-root .commento-textarea-container {
  color: black;
}
