/**
 * Blocksy - v1.8.39
 * 
 * Copyright (c) 2022
 * Licensed GPLv2+
 */

@charset "UTF-8";
#ct-dashboard > header {
  background: #f5f7f9;
}
#ct-dashboard > header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  color: #23282D;
}
#ct-dashboard > header h2 svg {
  position: relative;
  margin-right: 10px;
  fill: currentColor;
}
#ct-dashboard > header h2 span {
  font-size: 10px;
  color: #fff;
  margin: 0 0 0 10px;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--accentColor);
}
#ct-dashboard > header p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 10px;
  color: #687c93;
  max-width: 580px;
  margin: 25px auto 0 auto;
}
#ct-dashboard > header .ct-version {
  display: none;
  color: #fff;
  background: #72af3a;
  font-size: 10px;
  border-radius: 100px;
  padding: 2px 8px;
  position: relative;
  margin-left: 10px;
}

[class*=ct-button] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--buttonHeight, 35px);
  padding: 0 var(--buttonPadding, 15px);
  font-size: var(--buttonFontSize, 13px);
  font-weight: 500;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.01em;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
[class*=ct-button][disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.ct-button {
  color: rgba(46, 68, 83, 0.8);
  background: #fff;
  border-color: #e2e6eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ct-button:hover, .ct-button:focus {
  color: #2e4453;
  border-color: rgba(190, 196, 203, 0.7);
}

.ct-button-primary {
  color: #fff;
  background: var(--accentColor);
  border-color: rgba(1, 118, 165, 0.6);
  box-shadow: 0 1px 4px rgba(1, 96, 134, 0.2);
}

.ct-button-primary:hover, .ct-button-primary:focus,
.ct-button[data-hover=blue]:hover,
.ct-button[data-hover=blue]:focus {
  color: #fff;
  background: #135e96;
  border-color: #0f5488;
  box-shadow: 0 1px 4px rgba(1, 96, 134, 0.3);
}

.ct-button[data-hover=red]:hover, .ct-button[data-hover=red]:focus {
  color: #fff;
  background: #e05757;
  border-color: #c74848;
  box-shadow: 0 1px 4px rgba(134, 1, 1, 0.4);
}

@media (max-width: 549px) {
  .dashboard-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin: 40px 0;
  }
}
@media (min-width: 550px) {
  .dashboard-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0 0 0;
  }
}
.dashboard-navigation li {
  margin: 0;
}
@media (min-width: 550px) {
  .dashboard-navigation li:not(:last-child) {
    margin-right: 15px;
  }
}
.dashboard-navigation li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 48px;
  color: #687c93;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  transition: all 0.2s ease;
}
@media (max-width: 549px) {
  .dashboard-navigation li a {
    padding: 0 5%;
  }
}
@media (min-width: 550px) {
  .dashboard-navigation li a {
    padding: 0 25px;
    border-radius: 2px 2px 0 0;
  }
}
.dashboard-navigation li a[aria-current=page] {
  color: #2e4453;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(220, 231, 238, 0.4);
}
.dashboard-navigation li a:focus {
  box-shadow: none;
}
.dashboard-navigation li a:hover:not([aria-current=page]) {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 -5px 5px rgba(0, 0, 0, 0.01);
}

#ct-dashboard .ct-welcome-message {
  text-align: center;
}
#ct-dashboard .ct-welcome-message h2 {
  margin-top: 0;
}
#ct-dashboard .ct-welcome-message p {
  font-size: 18px;
}
#ct-dashboard .ct-first-steps-container {
  text-align: center;
}
#ct-dashboard .ct-first-steps-container h2 {
  margin: 0 auto 0 auto;
}
@media (min-width: 783px) {
  #ct-dashboard .ct-first-steps-container h2 {
    width: 50%;
  }
}
#ct-dashboard .ct-first-steps-container .ct-first-steps {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 40px;
}
@media (min-width: 550px) and (max-width: 782px) {
  #ct-dashboard .ct-first-steps-container .ct-first-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 783px) {
  #ct-dashboard .ct-first-steps-container .ct-first-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
#ct-dashboard .ct-first-steps-container .ct-first-steps li {
  margin: 0;
  background: #fff;
  border-radius: 3px;
  border: 1px solid rgba(226, 230, 235, 0.5);
  box-shadow: 0 2px 5px rgba(143, 163, 184, 0.1);
}
@media (max-width: 782px) {
  #ct-dashboard .ct-first-steps-container .ct-first-steps li {
    padding: 10%;
  }
}
@media (min-width: 783px) {
  #ct-dashboard .ct-first-steps-container .ct-first-steps li {
    padding: 15% 10%;
  }
}
#ct-dashboard .ct-first-steps-container .ct-first-steps li svg {
  width: 25px;
  height: 25px;
  fill: var(--accentColor);
}
#ct-dashboard .ct-first-steps-container .ct-first-steps li p {
  margin: 10px 0 30px 0;
}
#ct-dashboard .ct-first-steps-container .ct-first-steps .ct-button:after {
  content: "→";
  margin-left: 5px;
}

#ct-dashboard h2.ct-downloads-heading {
  margin-top: 50px;
}

.ct-downloads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 35px;
  margin: 40px 0 0 0;
}
.ct-downloads li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 40px;
  margin-bottom: 0;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 20px 30px rgba(143, 163, 184, 0.15);
  transition: all 0.25s ease;
}
.ct-downloads h3, .ct-downloads p, .ct-downloads svg {
  transition: all 0.2s ease;
}
.ct-downloads svg {
  fill: #3297d3;
}
.ct-downloads p {
  color: #687c93;
}
.ct-downloads .ct-button {
  margin-top: 20px;
}

.ct-system-status .ct-info {
  display: flex;
  align-items: center;
}
.ct-system-status .ct-info i {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  margin-right: 20px;
  background-image: url("../img/system-status.svg");
  background-repeat: no-repeat;
}
.ct-system-status .ct-info p {
  padding-right: 50px;
  flex: 1;
}
.ct-system-status .ct-info .ct-button-primary {
  --buttonHeight: 40px;
  --buttonPadding: 30px;
  font-weight: 500;
  flex: 0 0 auto;
  min-width: 100px;
}

.ct-system-status-group {
  margin-top: 50px;
}
.ct-system-status-group h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 20px 0;
}
.ct-system-status-group ul {
  margin: 0;
}
.ct-system-status-group ul li {
  display: flex;
  align-items: center;
  min-height: 50px;
  margin: 0;
  padding: 15px 25px;
  box-sizing: border-box;
}
.ct-system-status-group ul li:nth-child(2n+1) {
  background: rgba(245, 247, 249, 0.6);
}
.ct-system-status-group ul li p {
  font-size: 15px !important;
}
.ct-system-status-group ul li .ct-entry-title {
  font-weight: 500;
  flex: 0 0 300px;
  max-width: 300px;
}
.ct-system-status-group ul li .ct-entry-value {
  flex: 1 1 auto;
  min-width: 80px;
  overflow: hidden;
  padding-right: 15px;
  font-style: italic;
}

.ct-system-status-help {
  display: flex;
}
.ct-system-status-help svg {
  fill: #CBD0D6;
}

.ct-validity-badge {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 100%;
}

.success .ct-validity-badge {
  background: #4bb255;
}

.error .ct-validity-badge {
  background: #da3438;
}
.error .ct-entry-value {
  color: #da3438;
  font-weight: 400;
}
.error .ct-entry-value span {
  margin-left: 10px;
}
.error .ct-entry-value span a {
  color: inherit;
}

.ct-changelog-wrapper > h2 {
  text-align: center;
}
.ct-changelog-wrapper ul {
  margin: 0;
}
.ct-changelog-wrapper ul li {
  display: flex;
  margin-bottom: 15px;
  line-height: 20px;
}
.ct-changelog-wrapper ul li:last-child {
  margin-bottom: 0;
}
.ct-changelog-wrapper ul li a {
  margin-left: 3px;
  text-decoration: none;
}
.ct-changelog-wrapper ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin-right: 12px;
  border-radius: 100%;
}
.ct-changelog-wrapper ul li span:before {
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}
.ct-changelog-wrapper ul li span.new {
  background: #46bf55;
}
.ct-changelog-wrapper ul li span.new:before {
  content: "N";
}
.ct-changelog-wrapper ul li span.fix {
  background: #ffc568;
}
.ct-changelog-wrapper ul li span.fix:before {
  content: "F";
}
.ct-changelog-wrapper ul li span.improvement {
  background: var(--accentColor);
}
.ct-changelog-wrapper ul li span.improvement:before {
  content: "U";
}
.ct-changelog-wrapper code {
  position: relative;
  margin: -2px 5px 0 5px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.03);
}
.ct-changelog-wrapper .changelog-info {
  border-top: none;
  margin-bottom: 50px;
  font-weight: 500;
}
@media (min-width: 783px) {
  .ct-changelog-wrapper .changelog-info {
    display: flex;
    align-items: center;
  }
}
.ct-changelog-wrapper .changelog-info:not(.has-sources) {
  justify-content: center;
}
.ct-changelog-wrapper .changelog-info.has-sources {
  justify-content: space-between;
}
.ct-changelog-wrapper .changelog-info ul {
  display: flex;
}
.ct-changelog-wrapper .changelog-info ul li {
  margin-bottom: 0;
}
@media (max-width: 782px) {
  .ct-changelog-wrapper .changelog-explanation li:not(:last-child) {
    margin-right: 15px;
  }
}
@media (min-width: 783px) {
  .ct-changelog-wrapper .changelog-explanation li:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 782px) {
  .ct-changelog-wrapper .changelog-sources {
    margin-bottom: 30px;
  }
}
.ct-changelog-wrapper .changelog-sources li {
  cursor: pointer;
}
.ct-changelog-wrapper .changelog-sources li:not(:last-child) {
  margin-right: 15px;
}
.ct-changelog-wrapper .changelog-sources li:not(:last-child):after {
  content: "|";
  color: #687c93;
  margin-left: 15px;
}
.ct-changelog-wrapper .changelog-sources li.active, .ct-changelog-wrapper .changelog-sources li:hover {
  color: var(--accentColor);
}
.ct-changelog-wrapper .changelog-items section:not(:last-of-type) {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(226, 230, 235, 0.7);
}
.ct-changelog-wrapper .changelog-items section:first-of-type {
  padding-top: 40px;
  border-top: 1px solid rgba(226, 230, 235, 0.7);
}
.ct-changelog-wrapper .changelog-items section > h2 {
  display: flex;
  font-size: 17px;
  margin: 0 0 20px 0;
}
@media (max-width: 549px) {
  .ct-changelog-wrapper .changelog-items section > h2 {
    flex-direction: column;
  }
}
@media (min-width: 550px) {
  .ct-changelog-wrapper .changelog-items section > h2 {
    align-items: center;
    justify-content: space-between;
  }
}
.ct-changelog-wrapper .changelog-items section > h2 span {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.6;
}

#ct-dashboard .ct-cta-container,
#ct-dashboard .ct-support-container {
  text-align: center;
  border-radius: 3px;
  background: #f5f7f9;
}
@media (max-width: 782px) {
  #ct-dashboard .ct-cta-container,
#ct-dashboard .ct-support-container {
    padding: 10%;
  }
}
@media (min-width: 783px) {
  #ct-dashboard .ct-cta-container,
#ct-dashboard .ct-support-container {
    padding: 50px;
  }
}
#ct-dashboard .ct-cta-container h2,
#ct-dashboard .ct-support-container h2 {
  margin-top: 0;
}
#ct-dashboard .ct-cta-container p,
#ct-dashboard .ct-support-container p {
  display: block;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 30px auto !important;
}
#ct-dashboard .ct-cta-container [class*=ct-button],
#ct-dashboard .ct-support-container [class*=ct-button] {
  --buttonHeight: 42px;
  --buttonPadding: 20px;
  --buttonFontSize: 14px;
}
#ct-dashboard .ct-cta-container [class*=ct-button]:not(:last-child),
#ct-dashboard .ct-support-container [class*=ct-button]:not(:last-child) {
  margin-inline-end: 20px;
}
#ct-dashboard .ct-support-container {
  margin-top: 100px;
}
#ct-dashboard .ct-cta-container {
  margin-top: 50px;
}
#ct-dashboard .ct-cta-container b {
  font-weight: 800;
}

.ct-extensions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin: 0;
}
.ct-extensions-list li {
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 3px;
  border: 1px solid rgba(226, 230, 235, 0.7);
  box-shadow: 0 2px 5px rgba(143, 163, 184, 0.12);
}

.ct-extension-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 15px 0;
  padding: 0 25px;
}
.ct-extension-title svg {
  opacity: 0.7;
}

.ct-extension-description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 0 25px;
}

.ct-extension-actions {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 20px 13px 20px 25px;
  border-top: 1px solid rgba(226, 230, 235, 0.5);
  background: rgba(245, 247, 249, 0.6);
}
.ct-extension-actions [class*=ct-button] {
  --buttonHeight: 32px;
  --buttonPadding: 12px;
  min-width: 92px;
}

.dashboard-navigation .ct-pro-tab a {
  font-weight: 600;
}
.dashboard-navigation .ct-pro-tab a:not(:hover):not([aria-current=page]) {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 -5px 5px rgba(0, 0, 0, 0.01);
}

.ct-cta-container svg {
  margin-bottom: 20px;
}
.ct-cta-container h2 {
  font-weight: 700;
}

.ct-cta-container-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  padding: 15px 15px 15px 20px;
  margin-bottom: 50px;
  background: rgba(245, 247, 249, 0.6);
}
.ct-cta-container-small h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.ct-comparison-table ul {
  margin: 0 0 50px 0;
}
.ct-comparison-table ul:last-of-type {
  margin-bottom: 0;
}
.ct-comparison-table ul li {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  padding: 15px 18px;
  font-size: 14px;
}
.ct-comparison-table ul li:not(:first-child) {
  border-bottom: 1px dashed rgba(226, 230, 235, 0.7);
}
.ct-comparison-table ul li span {
  width: initial;
  text-align: center;
}
.ct-comparison-table ul li span:first-child {
  text-align: left;
}
.ct-comparison-table ul li span.dashicons-yes {
  color: var(--accentColor);
}
.ct-comparison-table ul li span.dashicons-no-alt {
  color: #ef9a9a;
}
.ct-comparison-table .ct-table-heading {
  position: sticky;
  top: 50px;
  color: #435c6d;
  font-size: 15px;
  font-weight: 600;
  border-radius: 3px;
  background: #F8FAFB;
  border: 1px solid rgba(226, 230, 235, 0.7);
  box-shadow: 0 2px 5px rgba(143, 163, 184, 0.12);
}
.ct-comparison-table .ct-table-heading:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: -31px;
  left: 0;
  right: 0;
  height: 30px;
  background: #fff;
}

:root {
  --accentColor: #2271b1;
}

.toplevel_page_ct-dashboard,
.appearance_page_ct-dashboard {
  background: #fff;
}
.toplevel_page_ct-dashboard #wpcontent,
.appearance_page_ct-dashboard #wpcontent {
  padding-left: 0;
}

#ct-dashboard {
  font-size: 15px;
  color: #687c93;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#ct-dashboard h1,
#ct-dashboard h2,
#ct-dashboard h3,
#ct-dashboard h4 {
  color: #3e5667;
}
#ct-dashboard > header {
  text-align: center;
  padding: 60px 30px 0 30px;
  overflow: hidden;
}
#ct-dashboard > section {
  max-width: 1200px;
  min-height: 400px;
  margin: 0 auto;
  position: relative;
}
#ct-dashboard > section > div {
  width: 100%;
  padding-top: 60px;
  padding: 70px 30px;
  box-sizing: border-box;
}
#ct-dashboard p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.ct-loading {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/spinner.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.ct-loading-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-loading-text span {
  display: block;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  opacity: 0.8;
  background: url("../img/spinner.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}