@charset "UTF-8";
/* Create Color variables here
 * follow this link for Color name
 * https://chir.ag/projects/name-that-color/
 * and use $c prefix.
 * use lowercase for color code and variable name 
 * i.e $c-black: #000000; */
/* Create Typo variables here
 * use $ff prefix for font family
 * use $fs for font size
 i.e $ff-roboto-b: Roboto-bold;
 * $fs-large: 40px; */
/*==========================================================
=            Typography Variable and Declaration            =
============================================================*/
@font-face {
  font-family: "NunitoSans-ExtraBold";
  src: url("../fonts/nunito-sans/NunitoSans-ExtraBold.ttf");
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "NunitoSans-SemiBold";
  src: url("../fonts/nunito-sans/NunitoSans-SemiBold.ttf");
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "NunitoSans-Bold";
  src: url("../fonts/nunito-sans/NunitoSans-Bold.ttf");
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "NunitoSans-Regular";
  src: url("../fonts/nunito-sans/NunitoSans-Regular.ttf");
  font-style: normal;
  font-display: swap;
}
/*----------  Font Family Variable  ----------*/
/*----------  Font Size Variable  ----------*/
/*=====  End of Typography Variable and Declaration  ======*/
/* Placeholders */
/* Mixins */
/* SCSS Functions */
/* Enter Your Global CSS here */
:root {
  --mdc-theme-primary: #2196f3;
  --mdc-theme-secondary: #2196f3;
}

.wpswings_page_track_orders_for_woocommerce_menu #sswpbody-content {
  font-family: "NunitoSans-Regular", sans-serif;
  margin: 0;
}

body {
  background-color: #e5f4fe;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

input[type="checkbox"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="radio"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
}


.wps-link:focus {
  outline: none;
  border: none;
}

.wps-info-img {
  display: inline-block;
  margin-right: 6px;
  margin-top: -3px;
  max-width: 15px;
}

.wps-link {
  font-family: "NunitoSans-Bold";
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: #000000;
  display: inline-block;
  transition: 0.3s ease;
}
.wps-link:hover {
  color: #2196f3 !important;
}
.wps-link.active {
  position: relative;
  color: #2196f3 !important;
}
.wps-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 3px solid #2196f3;
  border-radius: 2px;
}

.wps-bg-white {
  background-color: #ffffff;
  margin-right: 15px;
}

.wps-r-8 {
  border-radius: 8px;
}

.wps-pl-4 {
  padding: 0 4px !important;
}

.wps-section {
  padding: 28px 32px;
}

.wps-header-container {
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
  margin-bottom: 8px;
  margin-right: 15px;
  gap: 8px;
}
.wps-header-container .wps-header-title {
  font-family: NunitoSans-ExtraBold;
  font-weight: 800;
  font-size: 20px;
  color: #2196f3;
  flex: 0 0 100%;
  max-width: 100%;
  flex: 1;
}

.wps-form-group {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 35px;
}
.wps-form-group .wps-form-group__label {
  flex: 0 0 100%;
  max-width: 200px;
  padding: 0 15px;
}
.wps-form-group .wps-form-group__label .wps-form-label {
  font-family: "NunitoSans-SemiBold";
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.3px;
}
.wps-form-group .wps-form-group__control {
  flex: 0 0 100%;
  max-width: calc(100% - 200px);
  padding: 0 15px;
}
.wps-form-group .wps-form-group__control .wps-form-select:hover select {
  border-color: rgba(0, 0, 0, 0.87) !important;
  color: rgba(0, 0, 0, 0.87);
}
.wps-form-group .wps-form-group__control .wps-form-select:focus select {
  border-color: #2196f3 !important;
}
.wps-form-group
  .wps-form-group__control
  .wps-form-select
  .mdl-textfield__label {
  display: block;
  max-width: 450px;
  padding-right: 16px;
  padding-left: 16px;
}
.wps-form-group .wps-form-group__control .mdc-switch__native-control {
  width: 68px;
  height: 48px;
}
.wps-form-group .wps-password-hidden {
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s linear;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wps-form-group .wps-password-hidden:hover {
  opacity: 1;
}

.select2.select2-container {
  max-width: 100%;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  box-shadow: 0px 2px 5px rgba(63, 71, 86, 0.1);
  border-radius: 8px;
  padding: 16px;
}

.wps-col-wrap {
  margin-bottom: 35px;
}

.wps-options {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}

.mdc-button {
  border-radius: 35px !important;
  padding: 12px 24px !important;
  height: 100%;
}

.mdc-floating-label {
  color: #2196f3;
}

.mdc-floating-label--float-above,
.mdc-floating-label--shake {
  color: #2196f3 !important;
}

#track-orders-for-woocommerce-table-inner-container,
#public-hooks-listing,
#admin-hooks-listing {
  width: 100%;
}
#track-orders-for-woocommerce-table-inner-container table thead th,
#public-hooks-listing table thead th,
#admin-hooks-listing table thead th {
  font-size: 18px;
  font-family: "NunitoSans-ExtraBold";
}

/* Enter Button Global CSS Here */
.wps-btn {
  border-radius: 30px;
  border: 1px solid #2196f3;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "NunitoSans-Regular";
  font-size: 14px;
  font-weight: 400;
  min-width: 140px;
  outline: 0;
  padding: 16px 32px;
  text-align: center;
  text-transform: capitalize;
}
.wps-btn:hover,
.wps-btn:active,
.wps-btn:focus {
  color: #ffffff;
}

.wps-btn__filled {
  background-color: #2196f3;
}

/* Header CSS */
/* Footer CSS */
/* Navigation CSS */
/* Sidebar CSS */
/* About page css */
/* Home Page CSS */
/* Overview page css */
.wps-overview__wrapper {
  width: calc(100% - 20px);
}
.wps-overview__wrapper .wps-overview__banner {
  background-color: #ffffff;
  margin: 10px 0 25px;
  overflow: hidden;
  padding: 10px;
}
.wps-overview__wrapper .wps-overview__banner img {
  width: 100%;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__content-description {
  background-color: #ffffff;
  margin-bottom: 30px;
  padding: 25px 0;
  text-align: left;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__content-description
  h2 {
  color: #163062;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 150%;
  margin: 10px 0px;
  text-align: left;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__content-description
  p {
  color: #565857;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__content-description
  h3 {
  color: #163062;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
  margin-top: 25px;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__content-description
  .wps-overview__features {
  list-style: none;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__content-description
  .wps-overview__features
  li {
  color: #565857;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 24px;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__content-description
  .wps-overview__features
  li:before {
  color: #1a3365;
  content: "⚬";
  font-size: 20px;
  font-weight: 400;
  vertical-align: middle;
}
.wps-overview__wrapper .wps-overview__content h2 {
  color: #163062;
  font-size: 30px;
  font-weight: 600;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 150%;
  margin: 10px 0px;
  text-align: left;
}
.wps-overview__wrapper .wps-overview__content .wps-overview__keywords {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__keywords
  .wps-overview__keywords-item {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 33.33%;
  margin-bottom: 20px;
  max-width: 33.33%;
  padding: 0 15px;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__keywords
  .wps-overview__keywords-item
  .wps-overview__keywords-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #dddddd;
  box-shadow: 0px 4px 10px #efefef;
  color: #ffffff;
  flex-grow: 1;
  padding: 30px;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__keywords
  .wps-overview__keywords-item
  .wps-overview__keywords-card
  .wps-overview__keywords-image {
  overflow: hidden;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__keywords
  .wps-overview__keywords-item
  .wps-overview__keywords-card
  .wps-overview__keywords-image
  img {
  max-width: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  width: auto;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__keywords
  .wps-overview__keywords-item
  .wps-overview__keywords-card
  .wps-overview__keywords-text
  .wps-overview__keywords-heading {
  color: #163062;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 38px;
  margin: 15px 0;
}
.wps-overview__wrapper
  .wps-overview__content
  .wps-overview__keywords
  .wps-overview__keywords-item
  .wps-overview__keywords-card
  .wps-overview__keywords-text
  .wps-overview__keywords-description {
  color: #565857;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* overview page css ends */
/*====================================
=            Tabs Section            =
====================================*/
.wps-navbar {
  padding: 0 32px;
  border-bottom: 1px solid rgba(63, 71, 86, 0.25);
}
.wps-navbar .wps-navbar__items {
  display: flex;
  flex-wrap: wrap;
}
.wps-navbar .wps-navbar__items li {
  margin-right: 32px;
  margin-bottom: 0;
}
.wps-navbar .wps-navbar__items li a {
  padding: 18px 0;
  color: #000000;
}

/*=====   Tabs Section CSS Ends  ======*/
/*============================================
=           License Section CSS          =
=============================================*/
.wps-wetm-wrap {
  border-radius: 10px;
  border: 1px solid #dddddd;
  box-shadow: 0px 4px 10px #efefef;
  margin: 0 auto;
  max-width: 600px;
  padding: 10px 20px;
}
.wps-wetm-wrap h2 {
  color: #163062;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 150%;
  margin: 10px 0;
  text-align: left;
}
.wps-wetm-wrap .wps_tofwp_license_text > p {
  margin: 10px 0;
}
.wps-wetm-wrap
  .wps_tofwp_license_text
  #wps_tofw_license_form
  .wps-tofw-form-table
  input#wps_tofwp_license_key {
  width: 100%;
  transition: 0.3s ease;
  height: 50px;
  font-size: 14px;
}
.wps-wetm-wrap
  .wps_tofwp_license_text
  #wps_tofwp_license_form
  .wps-tofw-form-table
  input#wps_tofwp_license_key:hover {
  border-color: #000000;
}
.wps-wetm-wrap
  .wps_tofwp_license_text
  #wps_tofwp_license_form
  .wps-tofwp-form-table
  input#wps_tofwp_license_key:focus {
  border-color: #2196f3;
  outline: none;
  box-shadow: none;
}
.wps-wetm-wrap
  .wps_tofwp_license_text
  #wps_tofwp_license_form
  #wps_tofwp_license_activation_status {
  padding: 0 10px;
  font-weight: 600;
}
.wps-wetm-wrap .wps_tofwp_license_text #wps_tofwp_license_form button {
  background-color: #163062;
  text-transform: uppercase;
  width: 100%;
  height: 40px;
  letter-spacing: 1.5px;
  border: 1px solid #163062;
  transition: 0.5s ease;
  font-weight: 600;
}
.wps-wetm-wrap .wps_tofwp_license_text #wps_tofwp_license_form button:hover {
  color: #163062;
  background-color: #ffffff;
}
.wps-wetm-wrap .wps_tofwp_license_text #wps_tofwp_license_form button:focus {
  outline: none;
  box-shadow: none;
}

/*=====  License Section CSS ends  ======*/
/*============================================
=          DataTables CSS         =
=============================================*/
.dataTables_wrapper {
  padding: 20px 10px;
}
.dataTables_wrapper .dataTable {
  border-bottom: 1px solid rgba(33, 33, 33, 0.08) !important;
}
.dataTables_wrapper .dataTable thead {
  text-align: left;
}
.dataTables_wrapper .dataTable thead th {
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  padding: 15px;
  font-family: "NunitoSans-SemiBold" !important;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
}
.dataTables_wrapper .dataTable tr {
  background-color: #ffffff !important;
}
.dataTables_wrapper .dataTable tr td {
  background-color: #ffffff !important;
}
.dataTables_wrapper .wps-dt-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.dataTables_wrapper .wps-dt-buttons .dt-buttons {
  margin: 0 10px;
}
.dataTables_wrapper .wps-dt-buttons .dt-buttons .dt-button {
  padding: 5px 10px;
  border: 1px solid #c7c7c7;
  background-color: #ffffff;
  transition: 0.5s ease;
  border-radius: 2px;
}
.dataTables_wrapper .wps-dt-buttons .dt-buttons .dt-button:hover {
  cursor: pointer;
  background: #efefef;
}
.dataTables_wrapper .bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 10px 0;
}
.dataTables_wrapper .bottom .dataTables_length {
  font-family: "NunitoSans-SemiBold";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.25px;
  margin-right: 14px;
}
.dataTables_wrapper .bottom .dataTables_length select {
  margin: 0 25px;
  min-width: 90px;
  padding: 5px 30px 5px 15px !important;
}
.dataTables_wrapper .bottom .dataTables_info {
  font-family: "NunitoSans-SemiBold";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.25px;
  margin-right: 5px;
}
.dataTables_wrapper .bottom .dataTables_paginate {
  padding: 0;
}
.dataTables_wrapper .bottom .dataTables_paginate span .paginate_button {
  display: none !important;
}
.dataTables_wrapper .bottom .dataTables_paginate .paginate_button {
  display: inline-block;
}
.dataTables_wrapper .bottom .dataTables_paginate .paginate_button:hover {
  background: #f4f4f4 !important;
  cursor: pointer !important;
}

/*=====  End of DataTables  ======*/

@media (max-width: 768px) {
  .wps-header-container {
    justify-content: flex-start;
  }
  .wps-header-container .wps-header-title {
    flex: 1 0 90%;
  }
  .wps-header-container .wps-link {
    margin-top: 0;
  }
  .wps-header-container span {
    margin: 0;
  }
  .wps-overview__wrapper
    .wps-overview__content
    .wps-overview__keywords
    .wps-overview__keywords-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .wps-overview__wrapper
    .wps-overview__content
    .wps-overview__keywords
    .wps-overview__keywords-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/*=====  Track Orders Admin Redesign  ======*/
.tofw-admin-shell {
  background: #f4e5fb;
  margin-right: 10px;
  min-height: calc(100vh - 32px);
  padding: 14px 0 28px;
  font-size: 15px;
}

.tofw-admin-shell__topbar {
  background: linear-gradient(90deg, #4b0f74 0%, #2f004c 100%);
  border-radius: 0 0 18px 18px;
  height: 32px;
  margin-bottom: 10px;
}

.tofw-admin-shell__frame {
  padding: 0 10px;
}

.tofw-admin-shell__masthead,
.tofw-admin-shell__tabs,
.tofw-admin-shell__content-card,
.tofw-admin-sidecard,
.tofw-admin-shell .notice,
.tofw-admin-shell .updated,
.tofw-admin-shell .error {
  background: #fffdfd;
  border: 1px solid #efd8fb;
  border-radius: 16px;
  box-shadow: none;
}

.tofw-admin-shell .notice,
.tofw-admin-shell .updated,
.tofw-admin-shell .error {
  margin: 0 0 12px;
  padding: 10px 14px;
}

.tofw-admin-shell__masthead,
.tofw-admin-shell__tabs {
  margin-bottom: 12px;
  padding: 14px 18px;
}

.tofw-admin-shell__masthead {
  background: linear-gradient(90deg, #4b0f74 0%, #31004e 100%);
  border: 0;
  border-radius: 28px;
  min-height: 64px;
  padding: 14px 20px;
}

.tofw-admin-shell__tabs {
  align-items: center;
  display: flex;
  gap: 18px;
}

.tofw-admin-shell__brand {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  min-height: 36px;
}

.tofw-admin-shell__badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: "NunitoSans-Bold";
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1;
  min-height: 34px;
  padding: 9px 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tofw-admin-shell.is-pro-active .tofw-admin-shell__badge {
  background: rgba(255, 255, 255, 0.1);
}

.tofw-admin-shell__brand-copy {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

.tofw-admin-shell__title {
  color: #ffffff;
  font-family: "NunitoSans-ExtraBold";
  font-size: 18px;
  line-height: 1.3;
}

.tofw-admin-shell__version {
  display: none;
}

.tofw-admin-shell__tabs-version {
  color: #7e7592;
  flex: 0 0 auto;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  line-height: 1;
}

.tofw-admin-shell__tab-list {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 18px;
}

.tofw-admin-shell__tab-item {
  margin: 0;
}

.tofw-admin-shell__tab-item--more {
  position: relative;
}

.tofw-admin-shell__tab-link {
  border-bottom: 2px solid transparent;
  color: #33174c;
  display: inline-flex;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 0;
  transition: 0.2s ease;
}

.tofw-admin-shell__tab-link:hover,
.tofw-admin-shell__tab-link:focus {
  color: #33174c;
  outline: none;
  box-shadow: none;
}

.tofw-admin-shell__tab-link.is-active {
  border-bottom-color: #ffbf12;
}

.tofw-admin-shell__more {
  position: relative;
}

.tofw-admin-shell__more[open] {
  z-index: 20;
}

.tofw-admin-shell__more-trigger {
  align-items: center;
  background: #fff7ed;
  border: 1px solid #efd8fb;
  border-radius: 18px;
  color: #33174c;
  cursor: pointer;
  display: inline-flex;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  gap: 10px;
  line-height: 1.2;
  list-style: none;
  min-height: 52px;
  padding: 12px 18px;
  transition: 0.2s ease;
}

.tofw-admin-shell__more-trigger::-webkit-details-marker {
  display: none;
}

.tofw-admin-shell__more-trigger::marker {
  display: none;
}

.tofw-admin-shell__more-trigger:hover,
.tofw-admin-shell__more-trigger:focus {
  box-shadow: none;
  color: #33174c;
  outline: none;
}

.tofw-admin-shell__more.is-active .tofw-admin-shell__more-trigger,
.tofw-admin-shell__more[open] .tofw-admin-shell__more-trigger {
  background: #ffffff;
}

.tofw-admin-shell__more.is-active .tofw-admin-shell__more-trigger {
  box-shadow: inset 0 -2px 0 #ffbf12;
}

.tofw-admin-shell__more-icon {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: inline-block;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  width: 8px;
}

.tofw-admin-shell__more[open] .tofw-admin-shell__more-icon {
  margin-top: 2px;
  transform: rotate(-135deg);
}

.tofw-admin-shell__more-menu {
  background: #ffffff;
  border: 1px solid #efd8fb;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(48, 0, 78, 0.12);
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  min-width: 240px;
  padding: 14px;
  position: absolute;
  right: 0;
  top: 100%;
}

.tofw-admin-shell__more-item {
  margin: 0;
}

.tofw-admin-shell__more-link {
  border-radius: 12px;
  color: #33174c;
  display: flex;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  line-height: 1.4;
  min-height: 44px;
  padding: 12px 16px;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}

.tofw-admin-shell__more-link:hover,
.tofw-admin-shell__more-link:focus {
  background: #f8efff;
  box-shadow: none;
  color: #33174c;
  outline: none;
}

.tofw-admin-shell__more-link.is-active {
  background: #f8efff;
  color: #4c2487;
}

.tofw-admin-shell__content-grid {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 290px;
}

.tofw-admin-shell__content-card {
  min-height: 720px;
  overflow: hidden;
  padding: 18px 14px;
}

.tofw-admin-shell .tofwp-license-tab__hero {
  align-items: center;
  background: #ffffff;
  border: 1px solid #efd8fb;
  border-radius: 24px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.tofw-admin-shell .tofwp-license-tab__hero-copy {
  display: grid;
  gap: 6px;
}

.tofw-admin-shell .tofwp-license-tab__eyebrow {
  color: #f39a00;
  font-family: "NunitoSans-Bold";
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.tofw-admin-shell .tofwp-license-tab__hero-title {
  color: #2b0b49;
  font-family: "NunitoSans-ExtraBold";
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
}

.tofw-admin-shell .tofwp-license-tab__hero-text {
  color: #7d6f92;
  font-family: "NunitoSans-Regular";
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.tofw-admin-shell .tofwp-license-tab__doc-link.button.button-primary {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  min-width: 186px;
  padding: 10px 18px;
  white-space: nowrap;
}

.tofwp-license-tab__hero {
  align-items: center;
  background: #ffffff;
  border: 1px solid #efd8fb;
  border-radius: 24px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.tofwp-license-tab__hero-copy {
  display: grid;
  gap: 6px;
}

.tofwp-license-tab__eyebrow {
  color: #f39a00;
  font-family: "NunitoSans-Bold";
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.tofwp-license-tab__hero-title {
  color: #2b0b49;
  font-family: "NunitoSans-ExtraBold";
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
}

.tofwp-license-tab__hero-text {
  color: #7d6f92;
  font-family: "NunitoSans-Regular";
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.tofwp-license-tab__doc-link.button.button-primary {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  min-width: 186px;
  padding: 10px 18px;
  white-space: nowrap;
}

.tofw-admin-shell__sidebar {
  display: grid;
  gap: 12px;
}

.tofw-admin-sidecard {
  padding: 14px;
}

.tofw-admin-sidecard.is-accent {
  background: #fff8e9;
}

.tofw-admin-sidecard__title-wrap {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.tofw-admin-sidecard__title {
  color: #4c2487;
  font-family: "NunitoSans-ExtraBold";
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.tofw-admin-sidecard__star {
  align-items: center;
  background: #ffca28;
  border-radius: 999px;
  color: #4c2487;
  display: inline-flex;
  font-family: "NunitoSans-ExtraBold";
  font-size: 14px;
  height: 28px;
  justify-content: center;
  min-width: 28px;
}

.tofw-admin-sidecard__text,
.tofw-admin-sidecard__footer {
  color: #8f81a5;
  font-family: "NunitoSans-Regular";
  font-size: 14px;
  line-height: 1.65;
}

.tofw-admin-sidecard__footer {
  margin-top: 8px;
  text-align: center;
}

.tofw-admin-sidecard__actions,
.tofw-admin-sidecard__services {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.tofw-admin-sidecard__button,
.tofw-admin-sidecard__service {
  align-items: center;
  appearance: none;
  background: #ffffff;
  border: 1px solid #edd6fb;
  border-radius: 12px;
  color: #371848;
  cursor: pointer;
  display: flex;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 16px;
  text-decoration: none;
  transition: 0.2s ease;
}

.tofw-admin-sidecard__button:hover,
.tofw-admin-sidecard__button:focus,
.tofw-admin-sidecard__service:hover,
.tofw-admin-sidecard__service:focus {
  box-shadow: none;
  color: #371848;
}

.tofw-admin-sidecard__button.is-dark {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
  justify-content: center;
  margin-top: 12px;
}

.tofw-admin-sidecard__button.is-secondary::after,
.tofw-admin-sidecard__service::after {
  color: #6f2ca7;
  content: "›";
  font-size: 18px;
  line-height: 1;
  margin-left: 12px;
}

.tofw-admin-sidecard__button.is-dark::after {
  content: "";
  margin: 0;
}

.tofw-admin-sidecard__button--expert {
  width: 100%;
}

@media (max-width: 900px) {
  .tofw-admin-shell .tofwp-license-tab__hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .tofw-admin-shell .tofwp-license-tab__doc-link.button.button-primary {
    width: 100%;
  }

  .tofwp-license-tab__hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .tofwp-license-tab__doc-link.button.button-primary {
    width: 100%;
  }
}

body.tofw-expert-modal-open {
  overflow: hidden;
}

.pgfw-expert-modal[hidden] {
  display: none !important;
}

.pgfw-expert-modal {
  align-items: center;
  inset: 0;
  display: flex;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 99999;
}

.pgfw-expert-modal__backdrop {
  background: rgba(63, 31, 82, 0.48);
  backdrop-filter: blur(7px);
  inset: 0;
  position: absolute;
}

.pgfw-expert-modal__dialog {
  background: #ffffff;
  border: 1px solid #edd6fb;
  border-radius: 34px;
  box-shadow: 0 32px 80px rgba(32, 8, 48, 0.22);
  max-height: calc(100vh - 48px);
  max-width: 980px;
  overflow: auto;
  position: relative;
  width: min(100%, 980px);
}

.pgfw-expert-modal__header {
  align-items: flex-start;
  border-bottom: 1px solid #efd8fb;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 24px 40px 22px;
}

.pgfw-expert-modal__copy h2 {
  color: #2b0b49;
  font-family: "NunitoSans-ExtraBold";
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.pgfw-expert-modal__copy p {
  color: #9b67c6;
  font-family: "NunitoSans-Regular";
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.pgfw-expert-modal__close {
  align-items: center;
  appearance: none;
  background: #faf3ff;
  border: 1px solid #efd8fb;
  border-radius: 18px;
  color: #3f195a;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  min-width: 44px;
  padding: 0;
}

.pgfw-expert-modal__close:hover,
.pgfw-expert-modal__close:focus {
  box-shadow: none;
  color: #3f195a;
  outline: none;
}

.pgfw-expert-modal__body {
  padding: 16px 40px 20px;
}

.pgfw-expert-form {
  border: 1px solid #efd8fb;
  border-radius: 28px;
  padding: 20px;
}

.pgfw-expert-form__grid {
  display: grid;
  gap: 18px 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pgfw-expert-form__field--full,
.pgfw-expert-form__field.what_services_do_you_need_help_with,
.pgfw-expert-form__field.budget,
.pgfw-expert-form__field.message {
  grid-column: 1 / -1;
}

.pgfw-expert-form__label {
  color: #310d53;
  display: inline-block;
  font-family: "NunitoSans-Bold";
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.pgfw-expert-form__required {
  color: #ef476f;
}

.pgfw-expert-form__control {
  appearance: none;
  background: #ffffff;
  border: 1px solid #f0bfff;
  border-radius: 4px;
  color: #3c2b4f;
  font-family: "NunitoSans-Regular";
  font-size: 14px;
  min-height: 34px;
  padding: 14px 10px;
  width: 100%;
}

.pgfw-expert-form__control::placeholder,
.pgfw-expert-form__control--textarea::placeholder {
  color: #7b7387;
}

.pgfw-expert-form__control:focus,
.pgfw-expert-form__checkbox:focus,
.pgfw-expert-form__checkbox-label:focus-within,
.pgfw-expert-modal__close:focus {
  border-color: #d596fb;
  box-shadow: 0 0 0 1px #d596fb;
  outline: none;
}

.pgfw-expert-form__control--select {
  background-image: linear-gradient(45deg, transparent 50%, #7f42b1 50%), linear-gradient(135deg, #7f42b1 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  max-width: 390px;
  padding-right: 34px;
}

.pgfw-expert-form__control--textarea {
  min-height: 124px;
  resize: vertical;
}

.pgfw-expert-form__checkbox-group {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pgfw-expert-form__checkbox-label {
  align-items: center;
  border: 1px solid #f0bfff;
  border-radius: 18px;
  color: #331052;
  cursor: pointer;
  display: flex;
  font-family: "NunitoSans-Bold";
  font-size: 14px;
  gap: 12px;
  min-height: 44px;
  padding: 12px 14px;
}

.pgfw-expert-form__checkbox {
  appearance: none;
  background: #ffffff;
  border: 1px solid #eba9ff;
  border-radius: 5px;
  flex: 0 0 18px;
  height: 18px;
  margin: 0;
  position: relative;
  width: 18px;
}

.pgfw-expert-form__checkbox:checked {
  background: #4d1777;
  border-color: #4d1777;
}

.pgfw-expert-form__checkbox:checked::after {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  height: 8px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 4px;
}

.pgfw-expert-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.pgfw-rail-action {
  appearance: none;
  border-radius: 18px;
  cursor: pointer;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  min-height: 48px;
  min-width: 172px;
  padding: 12px 24px;
}

.pgfw-rail-action--dark {
  background: #120513;
  border: 1px solid #120513;
  color: #ffffff;
}

.pgfw-rail-action--dark:hover,
.pgfw-rail-action--dark:focus {
  box-shadow: none;
  color: #ffffff;
  outline: none;
}

.pgfw-expert-form__status {
  border-radius: 16px;
  font-family: "NunitoSans-Bold";
  font-size: 14px;
  line-height: 1.5;
  margin-top: 14px;
  padding: 12px 14px;
}

.pgfw-expert-form__status.is-error {
  background: #fff2f4;
  color: #b42345;
}

.pgfw-expert-form__status.is-success {
  background: #eefaf2;
  color: #116b3a;
}

.pgfw-expert-thank-you {
  padding: 32px 0 12px;
}

.pgfw-thank-you-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
}

.pgfw-thank-you-card__icon {
  align-items: center;
  background: #f3fff8;
  border: 1px solid #bce5ca;
  border-radius: 999px;
  color: #116b3a;
  display: inline-flex;
  font-size: 22px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.pgfw-thank-you-card__eyebrow {
  color: #9b67c6;
  font-family: "NunitoSans-Bold";
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.pgfw-thank-you-card__title {
  color: #2b0b49;
  font-family: "NunitoSans-ExtraBold";
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
}

.pgfw-thank-you-card__message,
.pgfw-thank-you-card__meta {
  color: #665776;
  font-family: "NunitoSans-Regular";
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.pgfw-thank-you-card__action {
  margin: 8px 0 0;
}

.tofw-admin-shell .wps-overview__wrapper {
  width: 100%;
}

.tofw-admin-shell .wps-overview__wrapper .wps-overview__banner,
.tofw-admin-shell .wps-overview__wrapper .wps-overview__content .wps-overview__content-description,
.tofw-admin-shell .wps-overview__wrapper .wps-overview__content .wps-overview__keywords .wps-overview__keywords-item .wps-overview__keywords-card,
.tofw-admin-shell .wps-wetm-wrap,
.tofw-admin-shell .wps-tofwp-wrap,
.tofw-admin-shell .wps_tofwp_wrapper,
.tofw-admin-shell .table-responsive {
  background: #ffffff;
  border: 1px solid #efd8fb;
  border-radius: 14px;
  box-shadow: none;
}

.tofw-admin-shell .wps-wetm-wrap,
.tofw-admin-shell .wps-tofwp-wrap {
  max-width: none;
}

.tofw-admin-shell .thirty-days-notice {
  background: #fffafc;
  border: 1px solid #efd8fb;
  border-radius: 14px;
  margin: 0 0 12px;
  padding: 14px 16px;
}

.tofw-admin-shell .button,
.tofw-admin-shell .button-primary,
.tofw-admin-shell .button-secondary,
.tofw-admin-shell input[type="button"],
.tofw-admin-shell input[type="submit"] {
  appearance: none;
  background: #050505 !important;
  border: 1px solid #050505 !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  min-height: 44px;
  padding: 10px 18px;
  text-shadow: none !important;
  transition: 0.2s ease;
}

.tofw-admin-shell .button:hover,
.tofw-admin-shell .button:focus,
.tofw-admin-shell .button-primary:hover,
.tofw-admin-shell .button-primary:focus,
.tofw-admin-shell .button-secondary:hover,
.tofw-admin-shell .button-secondary:focus,
.tofw-admin-shell input[type="button"]:hover,
.tofw-admin-shell input[type="button"]:focus,
.tofw-admin-shell input[type="submit"]:hover,
.tofw-admin-shell input[type="submit"]:focus {
  background: #050505 !important;
  border-color: #050505 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  outline: none;
}

.tofw-admin-shell .button[disabled],
.tofw-admin-shell .button-primary[disabled],
.tofw-admin-shell input[type="button"][disabled],
.tofw-admin-shell input[type="submit"][disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

.tofw-admin-shell form {
  margin: 0;
}

.tofw-admin-shell .wps-form-group {
  align-items: flex-start;
  border-bottom: 1px solid #f1e3f8;
  margin: 0;
  padding: 18px 0;
}

.tofw-admin-shell .wps-form-group:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.tofw-admin-shell .wps-form-group__label {
  max-width: 320px;
}

.tofw-admin-shell .wps-form-group__label .wps-form-label {
  color: #31144a;
  font-family: "NunitoSans-Bold";
  font-size: 14px;
  line-height: 1.45;
}

.tofw-admin-shell .wps-form-group__control {
  max-width: calc(100% - 320px);
}

.tofw-admin-shell .wps-wpg-temp-select .wps-form-group__control {
  display: flex;
  flex-wrap: wrap;
}

.tofw-admin-shell .wpg_invoice_preview_options {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  max-width: 620px;
  width: 100%;
}

.tofw-admin-shell .wpg_invoice_preview_wrap {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.tofw-admin-shell .wpg_invoice_preview_card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #ead5f8;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  min-height: 104px;
  padding: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.tofw-admin-shell .wpg_invoice_preview_wrap:hover .wpg_invoice_preview_card {
  border-color: #d8b5f0;
  transform: translateY(-1px);
}

.tofw-admin-shell .wpg_invoice_preview_wrap img {
  cursor: pointer;
  display: block;
  height: 78px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.tofw-admin-shell .wpg_invoice_preview_meta {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 18px;
}

.tofw-admin-shell .wpg_invoice_preview_meta input[type="radio"] {
  border-color: #c9bdd9;
  margin: 0;
}

.tofw-admin-shell .wpg_invoice_preview_wrap:has(input[type="radio"]:checked) .wpg_invoice_preview_card {
  border-color: #d99300;
  box-shadow: 0 0 0 2px rgba(217, 147, 0, 0.14);
}

.tofw-admin-shell .wps-wpg-temp-select .mdc-text-field-helper-line {
  margin-top: 14px;
  width: 100%;
}

.tofw-admin-shell .wps-helper-text,
.tofw-admin-shell .mdc-text-field-helper-text--persistent {
  color: #9b8cae;
  font-family: "NunitoSans-Regular";
  font-size: 15px;
  line-height: 1.65;
}

.tofw-admin-shell .mdc-text-field,
.tofw-admin-shell select,
.tofw-admin-shell textarea,
.tofw-admin-shell input[type="text"],
.tofw-admin-shell input[type="number"],
.tofw-admin-shell input[type="email"],
.tofw-admin-shell input[type="password"] {
  max-width: 100%;
}

.tofw-admin-shell .mdc-text-field {
  width: min(100%, 430px);
}

.tofw-admin-shell .mdc-text-field--outlined .mdc-notched-outline__leading,
.tofw-admin-shell .mdc-text-field--outlined .mdc-notched-outline__notch,
.tofw-admin-shell .mdc-text-field--outlined .mdc-notched-outline__trailing {
  border-color: #ead5f8 !important;
}

.tofw-admin-shell .mdc-text-field__input,
.tofw-admin-shell select,
.tofw-admin-shell textarea,
.tofw-admin-shell input[type="text"],
.tofw-admin-shell input[type="number"],
.tofw-admin-shell input[type="email"],
.tofw-admin-shell input[type="password"] {
  color: #4e4260;
}

.tofw-admin-shell .mdc-switch {
  align-items: center;
  display: inline-block;
  flex: 0 0 auto;
  gap: 10px;
  height: 28px;
  margin-right: 34px;
  overflow: visible;
  position: relative;
  transform: none;
  transform-origin: left center;
  width: 52px;
}

.tofw-admin-shell .mdc-switch::after {
  color: #b3b0cd;
  content: "off";
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  left: 64px;
  min-width: 18px;
  line-height: 1;
  position: absolute;
  text-transform: lowercase;
  top: 50%;
  transform: translateY(-50%);
}

.tofw-admin-shell .wps-form-group__control > div:has(> .mdc-switch),
.tofw-admin-shell .wps-form-group__control .wps-tofw-switch-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  min-height: 28px;
  width: fit-content;
}

.tofw-admin-shell .mdc-switch:has(.mdc-switch__native-control:checked)::after {
  color: #d99300;
  content: "on";
}

.tofw-admin-shell .mdc-switch__track {
  background: #ffffff !important;
  border: 2px solid #cbcbe0;
  border-radius: 999px;
  box-sizing: border-box;
  height: 28px;
  inset: 0;
  opacity: 1 !important;
  position: absolute;
  width: 52px;
}

.tofw-admin-shell .mdc-switch__thumb-underlay {
  height: 20px;
  left: 4px !important;
  position: absolute;
  right: auto !important;
  top: 4px !important;
  transform: none !important;
  transition: left 90ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 20px;
}

.tofw-admin-shell .mdc-switch__thumb {
  background: #9c9ebb !important;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  height: 20px;
  width: 20px;
}

.tofw-admin-shell .mdc-switch .mdc-switch__native-control {
  cursor: pointer;
  height: 28px;
  left: -4px;
  opacity: 0;
  position: absolute;
  right: auto !important;
  top: -4px;
  transform: none !important;
  width: 60px;
  z-index: 3;
}

.tofw-admin-shell .mdc-switch:has(.mdc-switch__native-control:checked) .mdc-switch__track {
  border-color: #ffb400;
}

.tofw-admin-shell .mdc-switch.mdc-switch--checked .mdc-switch__thumb-underlay,
.tofw-admin-shell .mdc-switch:has(.mdc-switch__native-control:checked) .mdc-switch__thumb-underlay {
  left: 28px !important;
  transform: none !important;
}

.tofw-admin-shell .mdc-switch.mdc-switch--checked .mdc-switch__native-control,
.tofw-admin-shell .mdc-switch:has(.mdc-switch__native-control:checked) .mdc-switch__native-control {
  transform: none !important;
}

.tofw-admin-shell .mdc-switch:has(.mdc-switch__native-control:checked) .mdc-switch__thumb {
  background: #ffb400 !important;
}

.tofw-admin-shell .mdc-switch:has(.mdc-switch__native-control:disabled) {
  opacity: 0.55;
}

.tofw-admin-shell .mdc-button,
.tofw-admin-shell button.button,
.tofw-admin-shell button.button-primary,
.tofw-admin-shell .button-primary.woocommerce-save-button {
  background: #050505;
  border-color: #050505;
  border-radius: 12px !important;
  box-shadow: none !important;
  color: #ffffff;
  min-height: 36px;
  padding: 8px 18px !important;
  text-transform: none;
}

.tofw-admin-shell .mdc-button:hover,
.tofw-admin-shell .mdc-button:focus,
.tofw-admin-shell button.button:hover,
.tofw-admin-shell button.button:focus,
.tofw-admin-shell button.button-primary:hover,
.tofw-admin-shell button.button-primary:focus,
.tofw-admin-shell .button-primary.woocommerce-save-button:hover,
.tofw-admin-shell .button-primary.woocommerce-save-button:focus {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.tofw-admin-shell .wps_tofw_rows_wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.tofw-admin-shell #wps_tofw_create_role_box,
.tofw-admin-shell #wps_tofw_create_custom_order_status,
.tofw-admin-shell #wps_tofw_create_custom_order_status_edit,
.tofw-admin-shell input.role_box_open {
  min-width: 180px;
}

.tofw-admin-shell .wps_notices_order_tracker {
  margin-bottom: 16px;
}

.tofw-admin-shell .wps_notices_order_tracker .notice {
  margin: 0;
}

.tofw-admin-shell #wps_tofw_create_box {
  background: #ffffff;
  border: 1px solid #efd8fb;
  border-radius: 24px;
  margin-top: 0;
  padding: 22px 18px 18px;
}

.tofw-admin-shell #wps_tofw_create_box h3 {
  color: #2b0b49;
  font-family: "NunitoSans-ExtraBold";
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table {
  background: transparent;
  border: 1px solid #efd8fb;
  border-radius: 18px;
  box-shadow: none;
  margin: 0;
  overflow: hidden;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table tbody {
  display: block;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table tr {
  align-items: start;
  border-top: 1px solid #f1e3f8;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table tr:first-child {
  border-top: 0;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table th,
.tofw-admin-shell #wps_tofw_create_box table.wp-list-table td {
  background: transparent;
  border-bottom: 0;
  color: #31144a;
  display: block;
  margin: 0;
  padding: 18px 16px;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table th {
  font-family: "NunitoSans-Bold";
  font-size: 16px;
  line-height: 1.5;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table td {
  border-left: 1px solid #f1e3f8;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table th label {
  color: inherit;
  display: inline;
  font-family: inherit;
  font-size: inherit;
}

.tofw-admin-shell #wps_tofw_create_box table.wp-list-table input[type="text"] {
  min-height: 52px;
  width: 100%;
}

.tofw-admin-shell #wps_tofw_create_box .wps_tofw_other_setting_upload_logo_value {
  margin-bottom: 10px;
}

.tofw-admin-shell #wps_tofw_create_box .wps_tofw_other_setting_upload_logo.button {
  justify-content: center;
  width: 100%;
}

.tofw-admin-shell #wps_tofw_create_box .woocommerce-help-tip {
  color: #9b67c6;
  margin-left: 8px;
}

.tofw-admin-shell #wps_tofw_other_setting_remove_logo {
  margin: 12px 0 0;
}

.tofw-admin-shell #wps_tofw_other_setting_upload_image {
  border: 1px solid #efd8fb;
  border-radius: 14px;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.tofw-admin-shell #wps_tofw_send_loading {
  margin-left: 10px;
  vertical-align: middle;
}

.tofw-admin-shell .save_section {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: 18px 0 0;
}

.tofw-admin-shell .wp-list-table.widefat {
  background: #ffffff;
  border: 1px solid #efd8fb;
  border-radius: 20px;
  box-shadow: none;
  overflow: hidden;
}

.tofw-admin-shell .wp-list-table.widefat thead th,
.tofw-admin-shell .wp-list-table.widefat tfoot th {
  background: #fff8fd;
  border-bottom: 1px solid #efd8fb;
  color: #31144a;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  padding: 16px 14px;
}

.tofw-admin-shell .wp-list-table.widefat tbody td,
.tofw-admin-shell .wp-list-table.widefat tbody th {
  border-bottom: 1px solid #f1e3f8;
  color: #4e4260;
  font-family: "NunitoSans-Regular";
  font-size: 15px;
  padding: 16px 14px;
}

.tofw-admin-shell .wp-list-table.widefat tbody tr:last-child td,
.tofw-admin-shell .wp-list-table.widefat tbody tr:last-child th {
  border-bottom: 0;
}

.tofw-admin-shell .wp-list-table.widefat strong {
  color: #31144a;
  font-family: "NunitoSans-Bold";
  font-weight: 700;
}

.tofw-admin-shell .tablenav {
  margin: 0 0 14px;
}

.tofw-admin-shell .tablenav.top,
.tofw-admin-shell .tablenav.bottom {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 0;
}

.tofw-admin-shell .bulkactions,
.tofw-admin-shell .tablenav-pages {
  float: none;
}

.tofw-admin-shell .tablenav .actions,
.tofw-admin-shell .bulkactions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.tofw-admin-shell .tablenav .actions select,
.tofw-admin-shell .search-box input[type="search"] {
  min-height: 44px;
}

.tofw-admin-shell .bulkactions select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ffffff;
  background-image: linear-gradient(45deg, transparent 50%, #6f2ca7 50%), linear-gradient(135deg, #6f2ca7 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  border: 1px solid #d9c2ea;
  border-radius: 14px;
  box-shadow: none;
  color: #4e4260;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  line-height: 1.2;
  margin: 0;
  min-height: 50px;
  min-width: 124px;
  padding: 0 42px 0 16px;
}

.tofw-admin-shell .bulkactions select:focus {
  border-color: #6f2ca7;
  box-shadow: 0 0 0 1px #6f2ca7;
  outline: none;
}

.tofw-admin-shell .bulkactions .button,
.tofw-admin-shell .bulkactions .button.action {
  align-items: center;
  background: #050505;
  border: 1px solid #050505;
  border-radius: 14px;
  box-shadow: none;
  color: #ffffff;
  display: inline-flex;
  font-family: "NunitoSans-Bold";
  font-size: 15px;
  justify-content: center;
  margin: 0;
  min-height: 40px;
  padding: 4px 31px;
  text-shadow: none;
}

.tofw-admin-shell .bulkactions .button:hover,
.tofw-admin-shell .bulkactions .button:focus,
.tofw-admin-shell .bulkactions .button.action:hover,
.tofw-admin-shell .bulkactions .button.action:focus {
  background: #050505;
  border-color: #050505;
  box-shadow: none;
  color: #ffffff;
  outline: none;
}

.tofw-admin-shell .tablenav-pages .button,
.tofw-admin-shell .tablenav-pages .button-secondary {
  min-width: 44px;
  padding-left: 12px;
  padding-right: 12px;
}

.tofw-admin-shell .subsubsub {
  margin: 0 0 16px;
}

.tofw-admin-shell .dataTables_wrapper {
  padding: 0;
}

.tofw-admin-shell .dataTables_wrapper .dataTable tr,
.tofw-admin-shell .dataTables_wrapper .dataTable tr td,
.tofw-admin-shell .dataTables_wrapper .dataTable thead th {
  background: #ffffff !important;
}

.tofw-admin-shell .dataTables_wrapper .dataTable thead th {
  color: #31144a;
}

.tofw-admin-shell .wp-list-table.widefat {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
}

.tofw-admin-shell .wp-list-table.widefat tfoot {
  display: none;
}

.tofw-admin-shell .wp-list-table.widefat .check-column {
  padding-left: 16px;
  padding-right: 8px;
  width: 48px;
}

.tofw-admin-shell .wp-list-table.widefat thead .check-column,
.tofw-admin-shell .wp-list-table.widefat tfoot .check-column {
  vertical-align: middle;
}

.tofw-admin-shell .wp-list-table.widefat th.column-name,
.tofw-admin-shell .wp-list-table.widefat td.column-name {
  width: 52%;
}

.tofw-admin-shell .wp-list-table.widefat th.column-image,
.tofw-admin-shell .wp-list-table.widefat td.column-image {
  min-width: 180px;
}

.tofw-admin-shell .wp-list-table.widefat td.column-name,
.tofw-admin-shell .wp-list-table.widefat td.column-image {
  vertical-align: middle;
}

.tofw-admin-shell .wp-list-table.widefat tbody td,
.tofw-admin-shell .wp-list-table.widefat tbody th {
  min-height: 92px;
}

.tofw-admin-shell .wp-list-table.widefat td.column-image {
  text-align: center;
}

.tofw-admin-shell .wp-list-table.widefat td.column-image img {
  background: #f8f2ff;
  border: 1px solid #efd8fb;
  border-radius: 16px;
  display: block;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
  padding: 8px;
  width: 68px;
}

.tofw-admin-shell .wp-list-table.widefat .row-actions {
  margin-top: 8px;
}

.tofw-admin-shell .wp-list-table.widefat .row-actions .delete a {
  color: #b42345;
}

.tofw-admin-shell .tablenav.bottom {
  margin-top: 14px;
}

.tofw-admin-shell .tablenav.bottom .tablenav-pages:empty,
.tofw-admin-shell .tablenav.top .tablenav-pages:empty {
  display: none;
}

@media (max-width: 1280px) {
  .tofw-admin-shell__content-grid {
    grid-template-columns: 1fr;
  }

  .tofw-admin-shell__sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tofw-admin-shell__sidebar {
    grid-template-columns: 1fr;
  }

  .pgfw-expert-modal {
    padding: 14px;
  }

  .pgfw-expert-modal__header,
  .pgfw-expert-modal__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pgfw-expert-form {
    padding: 16px;
  }

  .pgfw-expert-form__grid,
  .pgfw-expert-form__checkbox-group {
    grid-template-columns: 1fr;
  }

  .tofw-admin-shell #wps_tofw_create_box table.wp-list-table tr {
    grid-template-columns: 1fr;
  }

  .tofw-admin-shell #wps_tofw_create_box table.wp-list-table td {
    border-left: 0;
    border-top: 1px solid #f1e3f8;
  }

  .tofw-admin-shell .save_section,
  .tofw-admin-shell .wps_tofw_rows_wrap {
    justify-content: flex-start;
  }

  .tofw-admin-shell .tablenav.top,
  .tofw-admin-shell .tablenav.bottom {
    align-items: stretch;
    gap: 12px;
  }

  .tofw-admin-shell .tablenav .actions,
  .tofw-admin-shell .bulkactions {
    width: 100%;
  }

  .tofw-admin-shell .wpg_invoice_preview_options {
    grid-template-columns: repeat(2, minmax(118px, 1fr));
    max-width: 420px;
  }

  .tofw-admin-shell .bulkactions select,
  .tofw-admin-shell .bulkactions .button,
  .tofw-admin-shell .bulkactions .button.action {
    width: 100%;
  }

  .tofw-admin-shell .wps-form-group__label,
  .tofw-admin-shell .wps-form-group__control {
    max-width: 100%;
  }

  .tofw-admin-shell .wps-form-group {
    gap: 10px;
  }
}

@media (max-width: 782px) {
  .tofw-admin-shell {
    margin-right: 0;
  }

  .tofw-admin-shell__frame {
    padding: 0 6px;
  }

  .tofw-admin-shell__masthead,
  .tofw-admin-shell__tabs,
  .tofw-admin-shell__content-card,
  .tofw-admin-sidecard {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tofw-admin-shell__brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .pgfw-expert-modal__header {
    padding-top: 18px;
  }

  .tofw-admin-shell__tabs {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .tofw-admin-shell__tab-list {
    width: 100%;
  }

  .tofw-admin-shell__more-menu {
    left: 0;
    min-width: min(280px, calc(100vw - 48px));
    right: auto;
  }

  .tofw-admin-shell .wp-list-table.widefat th.column-image,
  .tofw-admin-shell .wp-list-table.widefat td.column-image {
    min-width: 140px;
  }

  .tofw-admin-shell .wpg_invoice_preview_options {
    max-width: 100%;
  }

  .tofw-admin-shell .wpg_invoice_preview_card {
    min-height: 96px;
  }
}

@media (max-width: 520px) {
  .tofw-admin-shell .wpg_invoice_preview_options {
    grid-template-columns: 1fr;
  }
}
