@charset "UTF-8";
.mt-5px {
  margin-top: 7px;
  display: inline-block;
}

label.radio-inline {
  padding-left: 8px;
}

.wp2fa-modal {
  font-family: helvetica;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  background-color: #fff;
  padding: 40px 40px 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 1500;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #222;
  box-sizing: border-box;
}

.modal__close {
  border: 0;
  outline: none;
  z-index: 10;
}

.modal__close:hover {
  cursor: pointer;
}

.modal__header .modal__close:before,
.wp2fa-modal .modal__close:before {
  content: "✕";
}

.modal__content {
  font-size: 13px;
  font-weight: 500;
  height: 100%;
  line-height: 24px;
  margin-bottom: 2px;
  color: #222;
  margin-top: 0;
  word-break: keep-all;
  width: 100%;
}

.modal__content p {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 2px;
  color: #222;
  margin-top: 0;
  word-break: keep-all;
  width: 100%;
}

.modal__content label {
  font-size: 14px;
  line-height: 28px;
  color: #222;
  margin-top: 0;
  word-break: keep-all;
  width: 100%;
  display: block;
}

.modal__content p.description {
  font-size: 12px;
  line-height: 24px;
  opacity: 0.9;
}

.modal__content .apps-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
}

.modal__content .apps-wrapper .app-logo {
  display: flex;
  align-self: center;
  flex: 1;
  padding: 0 13px;
}

.modal__content .apps-wrapper .app-logo img {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}

.modal__content .wp2fa-setup-actions {
  clear: both;
}

.modal__content .iti--allow-dropdown {
  width: 100%;
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

.enable_styling .modal__content input[type=radio] {
  margin-left: 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: auto;
  height: auto;
  background: transparent;
}

.enable_styling .modal__content input[type=radio]:after {
  display: none;
}

.enable_styling .modal__content input[type=radio]:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.enable_styling .modal__content input:not([type=radio]):not(.app-key) {
  line-height: 1;
  margin-bottom: 10px;
  min-height: 2pc;
  min-width: 15pc;
  padding: 5px;
  margin: 0px;
  border: none;
  border-bottom: 3px solid #d0e5ff;
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #4498ff;
  box-shadow: none;
}

.enable_styling .modal__content input:not([type=radio]):focus-visible {
  border-bottom: 3px solid #4498ff;
  outline: none;
}

.enable_styling .modal__content input:not([type=radio]):-internal-autofill-selected {
  background-color: transparent;
}

.wizard-step .iti--allow-dropdown input[type=tel] {
  z-index: 100;
  background: transparent;
}

.wizard-step .iti__flag-container {
  width: auto;
  z-index: 101;
}

.wizard-step.expand-panel .iti__flag-container {
  width: 100%;
}

.mepr-form .iti__country-list,
.mepr-form .iti__flag-container {
  width: auto;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.danger-zone-wrapper {
  padding: 15px;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 3px;
  margin-top: 15px;
}

.learn_more_link {
  display: inline-block;
  margin-left: 10px;
  margin-top: 6px;
}

.wp-2fa-settings-wrapper .disabled {
  opacity: 0.5;
  pointer-events: none;
}

.wp-2fa-settings-wrapper .disabled * {
  pointer-events: none;
}

.wp2fa-modal .modal__container {
  max-height: 70vh;
  max-width: 872px;
  min-width: 30vw;
  position: relative;
}

.wp2fa-modal .modal__close {
  background: transparent;
  color: var(--wp--preset--color--primary) !important;
  font-size: 15px;
  font-weight: 700;
  position: absolute;
  right: 20px;
  text-decoration: none;
  top: 20px;
  background-color: transparent !important;
}

.wp2fa-modal .modal__close :hover {
  color: #888;
  cursor: pointer;
}

.wp2fa-modal input[type=radio]:checked:before {
  display: none;
}

.wizard-step:not(.active),
.step-setting-wrapper:not(.active) {
  display: none;
}

.wizard-step.active,
.step-setting-wrapper.active {
  animation: fadein 0.5s;
}

#configure-2fa .wp2fa-setup-actions,
#configure-2fa-backup-codes .wp2fa-setup-actions {
  margin-top: 25px;
}

.modal__btn + .modal__btn {
  margin-left: 10px;
}

.wp-2fa-configuration-form td.backup-methods-label,
.wp-2fa-configuration-form th {
  display: none;
}

.wp2fa-modal h4,
.wp2fa-modal h3 {
  word-wrap: break-word;
  font-family: helvetica;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
  margin: 0 0 10px 0;
}

.wp2fa-modal.enable_styling h4,
.wp2fa-modal.enable_styling h3 {
  font-family: helvetica !important;
}

.wp2fa-modal fieldset {
  padding: 0;
  border: 0;
}

.wp2fa-modal ol {
  margin: 0 0 15px;
  padding-left: 17px;
}

.wp2fa-modal ol li {
  position: relative;
  padding: 6px;
}

.wp2fa-modal .modal__content code.app-key {
  font-size: 16px;
  padding: 7px 12px;
  word-break: break-all;
  background: #efefef;
  color: #222;
}

label + .verification-response {
  margin-top: 20px;
}

.verification-response:not(:empty) {
  border: 3px solid red;
  font-size: 9pt;
  margin-bottom: 15px;
  padding: 10px;
  background: #ffe4e4;
  border-radius: 10px;
  font-size: 9pt;
  line-height: 24px;
  width: 100%;
}

.default_styling .verification-response:not(:empty) {
  width: calc(100% - 30px);
}

.wp-2fa-configuration-form .button.enable_styling {
  background-color: #fff !important;
  color: #3e6bff !important;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
  outline: none;
  padding: 13px 13pt;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  border: 3px solid #3e6bff !important;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.wp-2fa-configuration-form .button.enable_styling:hover {
  background-color: #3e6bff !important;
  color: #fff !important;
  border: 3px solid #3e6bff !important;
}

.wp2fa-modal.enable_styling .modal__content .wp2fa-setup-actions .button:focus,
.wp2fa-modal.enable_styling .modal__content .modal__btn:focus,
.wp2fa-modal.enable_styling .modal__content .modal__btn.button-confirm:focus,
.wp2fa-modal.enable_styling .modal__content .modal__btn.button-decline:focus {
  box-shadow: none;
}

.wp2fa-modal.enable_styling .button + .button {
  margin-left: 10px;
}

.modal__footer {
  margin-top: 20px;
}

.enable_styling .wp-2fa-button-primary,
.enable_styling .wp-2fa-button-secondary,
.enable_styling #wizard-api-key button,
.enable_styling #wizard-sid-key button {
  background-color: #fff;
  color: #3e6bff;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
  outline: none;
  padding: 13px 13pt;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  border: 3px solid #3e6bff;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s ease-in-out;
}

.enable_styling .wp-2fa-button-secondary {
  color: #555;
  border: 3px solid #555;
}

.enable_styling .wp-2fa-configuration-form .button.wp-2fa-button-secondary {
  color: #555 !important;
  border: 3px solid #555 !important;
}

.enable_styling .wp-2fa-button-primary:focus,
.enable_styling .wp-2fa-button-secondary:focus {
  box-shadow: none;
}

.enable_styling .wp-2fa-button-primary:hover,
.enable_styling .wp-2fa-button-primary:focus {
  background-color: #3e6bff;
  color: #fff;
  border: 3px solid #3e6bff;
  transition: all 0.4s ease-in-out;
}

.enable_styling .wp-2fa-button-secondary:hover,
.enable_styling .wp-2fa-button-secondary:focus {
  background-color: #555;
  color: #fff;
  border: 3px solid #555;
  transition: all 0.4s ease-in-out;
}

.enable_styling .wp-2fa-configuration-form .button.wp-2fa-button-secondary:hover,
.enable_styling #wizard-api-key button:hover,
.enable_styling #wizard-sid-key button:hover {
  background-color: #555 !important;
  color: #fff !important;
  border: 3px solid #555 !important;
}

.wp-2fa-configuration-form .button {
  margin-right: 10px;
}

.wp-2fa-configuration-form .button:hover {
  cursor: pointer;
}

.qr-code-wrapper {
  position: relative;
  overflow: hidden;
  float: right;
}

#notify-users .modal__container * {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#notify-users .modal__container.saving * {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.qr-code-wrapper.regenerating img {
  visibility: hidden;
}

#backup-codes-wrapper {
  border: none;
  min-height: 2pc;
  min-width: 15pc;
  padding: 10px 0;
  width: 100%;
  background-color: transparent !important;
}

#backup-codes-wrapper :focus-visible {
  outline: none;
}

#backup-codes-wrapper:focus-visible {
  outline: none;
}

.qr-code-wrapper.regenerating:before,
#notify-users .modal__container.saving:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #000;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.default_styling .radio-cells .option-pill {
  position: relative;
  margin-bottom: 11px;
}

.default_styling .radio-cells .option-pill label {
  padding-right: 40px;
  font-size: 12px;
}

.default_styling .wizard-tooltip {
  display: none !important;
}

.default_styling input[type=checkbox],
.default_styling input[type=radio] {
  -webkit-appearance: auto;
}

@media screen and (max-width: 1299px) {
  .wp2fa-modal .modal__container {
    max-width: 96vw;
  }
  #wp-2fa-totp-qrcode {
    max-width: 100%;
    text-align: center;
    margin: 15px auto;
    display: block;
  }
  .qr-code-wrapper {
    float: none;
  }
  .step-setting-wrapper br {
    display: none;
  }
  .enable_styling .radio-cells {
    flex-wrap: wrap;
    margin: 0px 0 20px;
    width: calc(100% + 10px);
    position: relative;
    left: -5px;
    flex-wrap: wrap;
  }
  .enable_styling .radio-cells input:not([type=radio]) {
    margin-top: 5px;
  }
  .enable_styling .radio-cells .option-pill {
    flex-basis: 0;
    flex-grow: 1;
    border: 3px solid #eee;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    font-size: 11px;
    position: relative;
  }
  .enable_styling .radio-cells .option-pill p {
    height: 100%;
  }
  .enable_styling .radio-cells.max-3 .option-pill {
    flex: 33.333%;
    display: flex;
    flex-direction: column;
  }
  .enable_styling .radio-cells.max-3 .option-pill p {
    flex: 1;
  }
  .enable_styling .radio-cells .option-pill.isSelected {
    border: 3px solid #007cba;
  }
  .enable_styling .radio-cells .option-pill label {
    display: block;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 2px;
    height: 100%;
    max-width: calc(100% - 20px);
  }
  .enable_styling .radio-cells .option-pill p {
    font-size: 12px;
    line-height: 23px;
    opacity: 0.9;
    height: auto;
  }
  .enable_styling .option-pill {
    margin-bottom: 15px;
  }
  .enable_styling .tooltip-content-wrapper {
    display: none;
  }
  .wp2fa-modal .modal__content code br {
    display: block !important;
  }
  .wp2fa-modal .modal__content code.app-key {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    background: #efefef;
    padding: 5px;
    word-break: break-all;
  }
  .wp2fa-modal .modal__content .apps-wrapper {
    margin: 10px 0;
  }
  .wp2fa-modal .modal__content a.app-logo {
    padding: 0 5px;
  }
  .wp2fa-modal .modal__content .wizard-tooltip {
    background: #3e6bff;
    color: white;
    height: 18px;
    display: inline-block;
    width: 18px;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    text-align: center;
    line-height: 18px;
    font-weight: 700;
    margin-left: 4px;
    margin-top: 3px;
    bottom: 10px;
    right: 17px;
  }
  .wp2fa-modal .modal__content .inline-helper {
    background: #eee;
    padding: 10px;
    border-radius: 10px;
    display: block;
    margin-top: 10px;
    font-size: 12px;
    line-height: 24px;
    display: none;
  }
  .wp2fa-modal .modal__content .click-to-copy {
    border: 2px solid #3e6bff;
    border-radius: 14px;
    display: inline-block;
    font-size: 10px;
    padding: 0 9px;
    font-weight: 700;
    line-height: 16px;
  }
  .wp2fa-modal .modal__content .click-to-copy.done {
    background-color: green !important;
    border: 2px solid green;
    color: white;
  }
  .wp2fa-modal .modal__content .click-to-copy:hover {
    background-color: #3e6bff;
    color: white;
    cursor: pointer;
    opacity: 0.5;
  }
  .wp2fa-modal .modal__content .app-key-wrapper {
    background: #eee;
    border-radius: 4px;
    margin: 10px 0 5px;
    overflow: hidden;
    padding: 3px 7px;
  }
  .wp2fa-modal .modal__content .app-key-wrapper input {
    background: transparent;
    border: none;
    display: inline-block;
    font-size: 9pt;
    margin: 0 10px 0 0;
    max-width: 15pc;
    min-height: 0;
    min-width: 200px;
    padding: 0;
    color: #888;
  }
  .wp2fa-modal .modal__content .app-key-wrapper input:focus-visible,
  .wp2fa-modal .modal__content .app-key-wrapper input:focus {
    border: none;
    background-color: transparent;
    outline: none;
  }
  .wp-2fa-configuration-form .button {
    width: auto;
    display: block;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    text-align: center;
  }
  .wp2fa-modal .modal__content .wp2fa-setup-actions .button,
  .wp2fa-modal .modal__content .modal__btn {
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    text-align: center;
  }
  .modal__content input:not([type=radio]) {
    width: 100%;
    margin-bottom: 10px;
  }
  .hide-on-mobile {
    display: none;
  }
  .wp2fa-modal h4,
  .wp2fa-modal h3 {
    font-size: 20px;
  }
  .wp2fa-modal h4 {
    clear: both;
  }
}
@media screen and (min-width: 1300px) {
  .wp2fa-modal .clear-both {
    clear: both;
    display: block;
    overflow: hidden;
  }
  .wp2fa-modal .modal-50 {
    width: 50%;
    display: inline-block;
    float: left;
  }
  .wp2fa-modal .modal-60 {
    width: 70%;
    display: inline-block;
    float: left;
  }
  .wp2fa-modal .modal-60 .radio-cells {
    width: 100%;
    padding-left: 10px;
  }
  .wp2fa-modal .modal-40 {
    width: 30%;
    float: left;
    display: flex;
    justify-content: center;
  }
  .wp2fa-modal .mb-20 {
    margin-bottom: 20px;
  }
  .wp2fa-modal.enable_styling p + .radio-cells,
  .wp2fa-modal.enable_styling p + fieldset {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .wp2fa-modal.enable_styling .radio-cells {
    flex-wrap: wrap;
    margin: 0px 0 20px;
    width: calc(100% + 10px);
    position: relative;
    left: -5px;
    flex-wrap: wrap;
  }
  .wp2fa-modal.enable_styling .radio-cells input:not([type=radio]) {
    margin-top: 5px;
  }
  .wp2fa-modal.enable_styling .radio-cells .option-pill {
    flex-basis: 0;
    flex-grow: 1;
    border: 3px solid #eee;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    font-size: 11px;
    position: relative;
  }
  .wp2fa-modal.enable_styling .radio-cells .option-pill p {
    height: 100%;
  }
  .wp2fa-modal.enable_styling .radio-cells.max-3 .option-pill {
    flex: 33.333%;
    display: flex;
    flex-direction: column;
  }
  .wp2fa-modal.enable_styling .radio-cells.max-3 .option-pill p {
    flex: 1;
  }
  .wp2fa-modal.enable_styling .radio-cells .option-pill.isSelected {
    border: 3px solid #007cba;
  }
  .wp2fa-modal.enable_styling .radio-cells .option-pill label {
    display: block;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 2px;
    height: 100%;
    max-width: calc(100% - 20px);
  }
  .wp2fa-modal.enable_styling .radio-cells .option-pill p {
    font-size: 12px;
    line-height: 23px;
    opacity: 0.9;
    height: auto;
  }
  .wp2fa-modal .wizard-tooltip {
    background: #3e6bff;
    color: white;
    height: 18px;
    display: inline-block;
    width: 18px;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    text-align: center;
    line-height: 18px;
    font-weight: 700;
    margin-left: 4px;
    margin-top: 3px;
    bottom: 10px;
    right: 17px;
  }
  .wp2fa-modal .inline-helper {
    background: #eee;
    padding: 10px;
    border-radius: 10px;
    display: block;
    margin-top: 10px;
    font-size: 12px;
    line-height: 24px;
    display: none;
  }
  .wp2fa-modal.enable_styling .tooltip-content-wrapper {
    display: none;
  }
  .wp2fa-modal .click-to-copy {
    border: 2px solid #3e6bff;
    border-radius: 14px;
    display: inline-block;
    font-size: 10px;
    padding: 0 9px;
    font-weight: 700;
    line-height: 16px;
  }
  .wp2fa-modal .click-to-copy.done {
    background-color: green !important;
    border: 2px solid green;
    color: white;
  }
  .wp2fa-modal .click-to-copy:hover {
    background-color: #3e6bff;
    color: white;
    cursor: pointer;
    opacity: 0.5;
  }
  .wp2fa-modal .app-key-wrapper {
    background: #eee;
    border-radius: 4px;
    margin: 10px 0 5px;
    overflow: hidden;
    padding: 3px 7px;
  }
  .wp2fa-modal .app-key-wrapper input {
    background: transparent;
    border: none;
    display: inline-block;
    font-size: 9pt;
    margin: 0 10px 0 0;
    max-width: 15pc;
    min-height: 0;
    min-width: 200px;
    padding: 0;
    color: #888;
  }
  .wp2fa-modal .app-key-wrapper input:focus-visible,
  .wp2fa-modal .app-key-wrapper input:focus {
    border: none;
    background-color: transparent;
    outline: none;
  }
  .wp2fa-modal .option-pill {
    margin-bottom: 15px;
  }
  .wp2fa-modal .qr-code {
    float: left;
    width: 100%;
    position: relative;
    left: -2%;
  }
  .wp2fa-modal .mb-30 {
    margin-bottom: 30px;
  }
  .show-on-mobile {
    display: none;
  }
}
@media (max-width: 500px) {
  .modal__container {
    padding: 25px;
  }
  .option-pill:not(last-of-type) {
    margin-bottom: 40px;
  }
  .wp2fa-modal .modal__content .apps-wrapper {
    display: block;
  }
  .wp2fa-modal .modal__content a.app-logo {
    width: calc(33.33333% - 13px);
    display: inline-block;
    margin-bottom: 5px;
  }
  .wp2fa-modal h4,
  .wp2fa-modal h3 {
    font-size: 18px;
    margin-bottom: 9px;
  }
  #configure-2fa-backup-codes .wp2fa-setup-actions,
  #configure-2fa .wp2fa-setup-actions {
    margin-top: 15px;
  }
  .wp2fa-modal .modal__content .modal__btn,
  .wp2fa-modal .modal__content .wp2fa-setup-actions .button,
  .wp-2fa-configuration-form .button {
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: auto;
    padding: 10px 15px;
    font-size: 12px;
  }
  .wp2fa-modal .modal__content .radio-cells .option-pill {
    flex-basis: unset;
    flex-grow: 1;
  }
  .wp2fa-modal .modal__content p + .radio-cells {
    margin-top: 20px;
  }
}
@media screen and (min-width: 801px) and (max-width: 1299px) {
  .wp2fa-modal .modal__content p + .radio-cells {
    margin-top: 20px;
  }
  .modal-50 {
    width: 50%;
    display: inline-block;
    float: left;
  }
  .mb-20 {
    margin-bottom: 20px;
  }
  .modal-60 {
    width: 70%;
    display: inline-block;
    float: left;
  }
  .modal-60 .radio-cells {
    width: 100%;
    padding-left: 10px;
  }
  .modal-40 {
    width: 30%;
    float: left;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .wp2fa-modal .modal__container {
    min-width: 768px;
  }
}
@media screen and (min-width: 501px) and (max-width: 800px) {
  .modal-50 {
    width: 50%;
    display: inline-block;
    float: left;
  }
  .modal-60 {
    width: 60%;
    display: inline-block;
    float: left;
  }
  .modal-60 .radio-cells {
    width: 100%;
    padding-left: 10px;
  }
  .mb-20 {
    margin-bottom: 20px;
  }
  .modal-40 {
    width: 40%;
    float: left;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  .wp2fa-modal .modal__container {
    max-width: 95vw;
    min-width: 80vw;
  }
  .wp2fa-modal .modal__content .wp2fa-setup-actions .button,
  .wp2fa-modal .modal__content .modal__btn {
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    text-align: center;
  }
  .wp2fa-modal .modal__close {
    right: 15px;
    top: 15px;
  }
}
@media screen and (max-width: 500px) {
  .mb-20 {
    margin-bottom: 15px;
  }
  .wp2fa-modal .modal__content .app-key-wrapper input {
    max-width: 200px;
  }
  .enable_styling .wp-2fa-button-primary,
  .enable_styling .wp-2fa-button-secondary {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0;
    width: 100% !important;
  }
  .wp2fa-modal .modal__content .wizard-tooltip {
    right: 5px;
    bottom: 5px;
  }
  .verification-response:not(:empty) {
    width: auto;
  }
}
.wizard-custom-counter {
  counter-reset: step-counter;
  list-style: none;
  margin-bottom: 0 !important;
}

.wizard-custom-counter li {
  counter-increment: step-counter;
}

.wizard-custom-counter li:last-of-type {
  margin-bottom: 0 !important;
}

.enable_styling .wizard-custom-counter li::before {
  content: counter(step-counter);
  background: #3e6bff;
  width: 20px;
  height: 20px;
  color: white;
  text-align: center;
  display: inline-block;
  line-height: 20px;
  position: absolute;
  left: -20px;
  top: 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
}

.enable_styling #backup-codes-wrapper {
  border: none;
  border-bottom: 3px solid #d0e5ff;
  color: #4498ff;
  font-size: 1pc;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  min-height: 2pc;
  min-width: 15pc;
  padding: 10px 0;
  width: 100%;
  line-height: 26px;
  background-color: transparent !important;
}

.enable_styling #backup-codes-wrapper :focus-visible {
  border-bottom: 3px solid #4498ff;
  outline: none;
}

.enable_styling #backup-codes-wrapper:focus-visible {
  border-bottom: 3px solid #4498ff;
  outline: none;
}

.default_styling .wizard-custom-counter li::before {
  content: counter(step-counter);
  width: 20px;
  height: 20px;
  text-align: center;
  display: inline-block;
  line-height: 20px;
  position: absolute;
  left: -20px;
  top: 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.wp-2fa-user-profile-form {
  margin: 0;
}

.wp-2fa-user-profile-form:first-of-type {
  margin-top: 20px;
}

.wp-2fa-user-profile-form:last-of-type {
  margin-bottom: 20px;
}

.wp-2fa-user-profile-form tr + tr th,
.wp-2fa-user-profile-form tr + tr td {
  padding-top: 0;
}

.remove-tr-padding th,
.remove-tr-padding td {
  padding-bottom: 0;
}

body:not(.wp-admin) .wp-2fa-user-profile-form td,
body:not(.wp-admin) .wp-2fa-user-profile-form th {
  padding: 0;
  border: none;
}

.wp-2fa-user-profile-form {
  border: none;
}

.wp-2fa-button-primary + .wp-2fa-button-secondary {
  margin-left: 10px;
}

.modal-logo-wrapper {
  text-align: center;
  padding: 0;
  margin: 0;
}

.wizard-step label[for=authy-token] {
  min-height: 70px;
  transition: min-height 0.2s ease-in-out;
}

.wizard-step.expand-panel label[for=authy-token] {
  min-height: 300px;
  transition: min-height 0.2s ease-in-out;
}

.wizard-step.expand-panel .authy-step-setting-wrapper {
  overflow: hidden;
}

.wizard-step.expand-panel .iti__country-list {
  width: 100%;
  max-height: 240px;
}

[aria-describedby=authy-diag],
[aria-describedby=twilio-diag] {
  min-width: 400px;
  padding: 10px;
}

[aria-describedby=authy-diag] .ui-dialog-titlebar,
[aria-describedby=twilio-diag] .ui-dialog-titlebar {
  background: #fff;
  border-bottom: none;
  height: auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  padding: 10px 36px 0 16px;
  word-wrap: break-word;
  font-family: helvetica;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
  margin: 0 0 10px 0;
}

[aria-describedby=authy-diag] .ui-dialog-buttonpane,
[aria-describedby=twilio-diag] .ui-dialog-buttonpane {
  background: #fff;
  border-top: none;
  padding: 16px;
}

[aria-describedby=authy-diag] .ui-dialog-buttonset .ui-button,
[aria-describedby=twilio-diag] .ui-dialog-buttonset .ui-button {
  background-color: #fff;
  color: #3e6bff;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
  outline: none;
  padding: 13px 13pt;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  border: 3px solid #3e6bff;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s ease-in-out;
  height: auto;
  margin-left: 0;
}

[aria-describedby=authy-diag] .ui-dialog-buttonset .ui-button:hover,
[aria-describedby=twilio-diag] .ui-dialog-buttonset .ui-button:hover {
  background-color: #3e6bff;
  color: #fff;
}

[aria-describedby=authy-diag] .ui-dialog-buttonpane .ui-dialog-buttonset,
[aria-describedby=twilio-diag] .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: left;
}

[aria-describedby=authy-diag] .ui-dialog-content,
[aria-describedby=twilio-diag] .ui-dialog-content {
  padding: 0 16px 9px;
  overflow: auto;
}