.wdes-panel-block {
  --space: 4rem;

  display: flex;
  justify-content: center;
  min-height: 90vh;
  padding-top: var(--space);
  padding-bottom: var(--space);
  height: calc(90vh - var(--space) * 2);
  color: var(--main-text-clr);
}

.wdes-panel-wrapper {
  display: flex;
  width: 1200px;
  max-width: 95%;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--block-bg);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .wdes-panel-wrapper {
    justify-content: flex-start;
    padding: 60px 30px;
    width: 100%;
    overflow-y: auto;
    margin: 0 30px;
  }
}

@media screen and (max-height: 767px) {
  .wdes-panel-wrapper {
    justify-content: flex-start;
    padding: 60px 30px;
    width: 100%;
    overflow-y: auto;
    margin: 0 30px;
  }
}

.wdes-panel-wrapper_heading {
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.wdes-panel-wrapper_heading h1 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 2rem;
  font-weight: 600;
}

.wdes-panel-wrapper_heading p {
  margin: 25px 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--shortcut-clr);
  line-height: 1.5rem;
}

@media screen and (min-width: 768px) {
  .wdes-panel-wrapper_heading p {
    max-width: 60%;
  }
}

.wdes-panel-wrapper_heading p a {
  color: var(--main-clr);
  border-bottom: 1px dashed;
  text-decoration: none;
  font-weight: 600;
}

.wdes-panel-wrapper_heading_btn_arrow {
  filter: invert(1) brightness(1);
  transform: rotate(90deg);
}

.wdes-panel-steps {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .wdes-panel-steps {
    flex-flow: column;
  }
}

.wdes-panel-step {
  display: flex;
  flex-flow: column;
  gap: 25px;
  font-size: 0.9rem;
  line-height: 1.4rem;
  color: var(--shortcut-clr);
  width: calc(100% / 3 - 120px);
}

@media screen and (max-width: 767px) {
  .wdes-panel-step {
    width: 100%;
  }
}

.wdes-panel-step-thumb {
  border: 1px solid var(--border-clr);
  box-shadow: var(--box-shadow);
  border-radius: var(--radius);
  outline: none;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wdes-panel-step-thumb img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.wdes-panel-guide {
  margin-top: 70px;
  text-align: center;
}

.wdes-panel-guide a {
  text-decoration: none;
  color: var(--text-clr);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px dashed;
  transition: all 0.3s ease-in-out;
}

.exclamation {
  height: 150px;
  margin-bottom: 40px;
}

/* Plugins */
.wdes-panel-plugins-list-block {
  margin-bottom: 25px;
}

.wdes-panel-plugins-list {
  margin-top: 20px;
  width: 500px;
  max-width: 95%;
  text-align: left;
}

.wdes-panel-plugins-list-block_title {
  font-size: 0.9rem;
  margin: 0 0 10px 0;
  color: #7a7a7a;
  font-weight: 500;
}

.wdes-panel-plugins-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wdes-panel-plugins-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px 0;
}

@media screen and (max-width: 767px) {
  .wdes-panel-plugins-list-item {
    flex-flow: column;
    align-items: flex-start;
    gap: 13px;
  }
}

.wdes-panel-plugins-list-item:last-child {
  margin-bottom: 0;
}

.wdes-panel-plugins-list-item-check {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wdes-panel-plugins-list-item-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.wdes-panel-plugins-list-item-check .checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

.wdes-panel-plugins-list-item-check .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.wdes-panel-plugins-list-item-check:hover input ~ .checkmark {
  background-color: #f8f8f8;
}

.wdes-panel-plugins-list-item-check input:checked ~ .checkmark {
  background-color: var(--main-clr);
  border-color: var(--main-clr);
}

.wdes-panel-plugins-list-item-check input:checked ~ .checkmark::after {
  display: block;
}

.wdes-panel-plugins-list-item-check .checkmark::after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--main-light-clr);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.wdes-panel-plugins-list-item-content {
  font-size: 1rem;
  color: #242424;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wdes-panel-plugins-list-item-content small {
  color: #7a7a7a;
  font-size: 0.87rem;
}

.wdes-panel-plugins-list-item-status {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 8px 9px;
  font-size: 0.8rem;
  color: #7a7a7a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  width: 90px;
  justify-content: center;
  gap: 5px;
  width: max-content;
}

.wdes-panel-plugins-list-item-status-loader {
  height: 13px;
  padding: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #7e7e7e;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

.wdes-panel-plugins-list-item-status--done {
  background-color: var(--success-lighter-clr-2);
  color: var(--success-success);
}

.wdes-panel-plugins-list-item-status--error {
  background-color: var(--danger-lighter-clr-3);
  color: var(--danger-clr);
}

.wdes-panel-plugins-activate {
  margin-top: 30px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wdes-panel-plugins-activate:disabled {
  cursor: not-allowed;
  background-color: #f4f4f4;
  color: #7a7a7a;
}

.wdes-panel-plugins-next-step {
  background-color: var(--success-lighter-clr-2);
  color: var(--success-success);
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}

.wdes-panel-plugins-next-step:hover,
.wdes-panel-plugins-next-step:focus {
  background-color: var(--success-success);
  color: var(--success-lighter-clr-3);
  outline: none;
  box-shadow: none;
}

.wdes-error-msg {
  color: var(--danger-clr);
  margin-top: 10px;
  display: flex;
  background-color: var(--danger-lighter-clr-3);
  border: 1px sold var(--danger-clr);
  padding: 15px 10px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.wdes-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 500px;
  max-width: 95%;
}

.wdes-quick-actions a {
  display: flex;
  width: calc(50% - 8px);
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-clr);
  padding: 16px;
  border-radius: var(--radius);
  color: var(--text-clr);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 0.9rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .wdes-quick-actions a {
    width: 100%;
  }
}

.wdes-quick-actions a:first-child,
.wdes-quick-actions a:last-child {
  width: 100%;
}

.wdes-quick-actions a img {
  height: 20px;
}

.wdes-quick-actions a:hover {
  background-color: #f8f8f8;
}

.wdes-quick-actions a:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--main-clr);
}

.wdes-quick-actions_btn-skip {
  color: #fff !important;
}

.wdes-quick-actions_btn-skip:hover {
  background-color: var(--main-clr) !important;
}
