:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.tgwcfb_form_page_settings #wpwrap{background:#fafafc}#tgwcfb-settings{margin-left:-10px;padding-inline:10px}@media(min-width: 782px){#tgwcfb-settings{margin-left:-20px}}#tgwcfb-settings .components-form-toggle.is-checked .components-form-toggle__track{background:#3858e9}#tgwcfb-settings .components-toggle-group-control{border:none !important}#tgwcfb-settings .components-toggle-group-control:focus{border:none !important;outline:none}#tgwcfb-settings .components-toggle-group-control:active{border:none !important;outline:none}#tgwcfb-settings .components-toggle-group-control:focus-within{box-shadow:0 0 0 0 var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));outline:none}#tgwcfb-settings .components-base-control__help{font-style:italic}#tgwcfb-settings .tgwcfb-container{max-width:780px;margin:auto;padding:28px 32px;background-color:#fff;border:1px solid #edf2f7;border-radius:8px}#tgwcfb-settings .tgwcfb-header{background-color:#fff;margin-left:-10px;margin-right:-10px;margin-bottom:32px;border:1px solid #dcdcde;display:flex;padding-inline:24px;flex-wrap:wrap}@media(max-width: 768px){#tgwcfb-settings .tgwcfb-header{padding-inline:16px}}#tgwcfb-settings .tgwcfb-header .tgwcfb-logo{display:flex;align-items:center;padding-right:24px;border-right:1px solid #edf2f7}#tgwcfb-settings .tgwcfb-settings{min-height:150px;position:relative}#tgwcfb-settings .tgwcfb-settings .dashicons-info-outline{font-size:16px !important}#tgwcfb-settings .tgwcfb-settings .components-button{outline:0 solid rgba(0,0,0,0)}#tgwcfb-settings .tgwcfb-settings>.components-spinner{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting .components-text-control__input,#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting .components-input-control__backdrop{min-height:38px !important;max-width:100%;padding:0 16px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;font-size:14px;border-color:#e1e1e1}#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting .tgwcfb-setting .components-select-control__input,#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting .tgwcfb-setting .components-text-control__input{min-height:38px !important;max-width:100%;padding:0 16px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;font-size:14px;border-color:#e1e1e1}#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting .tgwcfb-setting .components-input-control__backdrop{border-color:#e1e1e1;border-radius:4px}#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting label:not(.components-checkbox-control__label),#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting .components-base-control__label{display:inline-flex;align-items:center;font-weight:500;text-transform:capitalize;font-size:16px;color:#383838}#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting label:not(.components-checkbox-control__label).no-margin,#tgwcfb-settings .tgwcfb-settings .tgwcfb-setting .components-base-control__label.no-margin{margin:0}#tgwcfb-settings .tgwcfb-settings>.components-base-control{margin-bottom:20px}#tgwcfb-settings .tgwcfb-settings>.components-base-control>.components-base-control__field{margin-bottom:0}#tgwcfb-settings .tgwcfb-settings>.components-base-control>.components-base-control__help{margin:10px 0 0}#tgwcfb-settings .tgwcfb-settings .is-primary{background:#2563eb;font-size:14px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin-top:20px}#tgwcfb-settings .tgwcfb-editor-body{padding:20px;min-height:240px;width:100%}#tgwcfb-settings .tgwcfb-container{align-items:center;justify-content:space-between}#tgwcfb-settings .tgwcfb-header nav{display:flex;margin-left:24px;column-gap:30px}#tgwcfb-settings .tgwcfb-header nav a{padding-bottom:30px;padding-top:30px;text-decoration:none;color:#383838;font-weight:500;position:relative}#tgwcfb-settings .tgwcfb-header nav a:focus{box-shadow:0 0 0 0 #2271b1}#tgwcfb-settings .tgwcfb-header nav a.active{color:#2563eb}#tgwcfb-settings .tgwcfb-header nav a.active:after{content:"";width:100%;height:2px;background-color:#2563eb;position:absolute;bottom:0;left:0}#tgwcfb-settings table .components-base-control__field{margin-bottom:0 !important}#tgwcfb-settings table.widefat .check{width:40px}.tgwcfb-captcha{gap:12px !important}.tgwcfb-captcha::before{background:none !important;border:none !important}.tgwcfb-captcha>div{background:#fff !important}.tgwcfb-recaptcha{background:rgba(0,0,0,0) !important;color:#424242 !important;border:1px solid #e1e1e1 !important;border-radius:4px !important;transition:none !important;justify-content:flex-start !important}.tgwcfb-recaptcha:hover{background:rgba(0,0,0,0) !important}.tgwcfb-recaptcha:focus{background:rgba(0,0,0,0) !important;box-shadow:none !important}.tgwcfb-recaptcha[data-active-item=true]{background:rgba(0,0,0,0) !important;border:1px solid #2563eb !important;color:#424242 !important}.tgwcfb-recaptcha[data-active-item=true]:hover{background:rgba(0,0,0,0) !important}.tgwcfb-recaptcha[data-active-item=true]:focus{background:rgba(0,0,0,0) !important;box-shadow:none !important}.tgwcfb-tooltip-content{display:block;white-space:normal;padding:16px;font-weight:normal}.tgwcfb-panel{margin:0 0 20px;transition:all 300ms}.tgwcfb-panel .components-button{display:flex;width:100%;flex-direction:row-reverse;justify-content:space-between !important;padding:16px;outline:none;font-weight:500;text-align:left;color:#1e1e1e;border:none;box-shadow:none;transition:.1s background ease-in-out;height:auto}.tgwcfb-panel .components-button:hover{background-color:#f6f7f7}.tgwcfb-panel .components-button:focus{box-shadow:none}.tgwcfb-panel .tgwcfb-panel-content-inner{padding:0 16px 16px}.tgwcfb-input-to{width:100%;display:block;margin-top:5px}.tgwcfb-input-control-wrapper-to{margin-bottom:10px;display:flex;direction:row;gap:5px}.tgwcfb-pro{position:relative;display:inline-flex;align-items:center;vertical-align:middle}.tgwcfb-pro:hover .tgwcfb-pro__popup,.tgwcfb-pro .tgwcfb-pro__popup:hover{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}.tgwcfb-pro__crown{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;background:#ff8c39;border-radius:4px;color:#fff;cursor:pointer;flex-shrink:0}.tgwcfb-pro__crown svg{width:12px;height:12px}.tgwcfb-pro__crown svg path{stroke:#fff}.tgwcfb-pro__popup{position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(6px);width:240px;padding:20px;background:#fff;border:1px solid #e5e7eb;border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.12);z-index:999999;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .15s ease,transform .15s ease,visibility .15s ease;text-align:left;white-space:normal}.tgwcfb-pro__popup::before{content:"";position:absolute;top:-10px;left:0;right:0;height:10px}.tgwcfb-pro__popup::after{content:"";position:absolute;top:-7px;left:50%;transform:translateX(-50%);width:0;height:0;border-style:solid;border-width:0 7px 7px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;filter:drop-shadow(0 -1px 0 #e5e7eb)}.tgwcfb-pro__popup-msg{display:block;font-size:13px;color:#374151;margin:0 0 12px;line-height:1.5;font-weight:normal;text-transform:none}.tgwcfb-pro__popup-btn{display:inline-flex;align-items:center;gap:6px;padding:8px 14px;background:#ff8c39;color:#fff !important;border-radius:6px;font-size:13px;font-weight:500 !important;text-decoration:none !important;text-transform:none;line-height:1;transition:background .15s ease}.tgwcfb-pro__popup-btn:hover{background:#e87b2a;color:#fff !important}.tgwcfb-pro__popup-btn svg path{stroke:#fff}.tgwcfb-pro__popup-btn-icon{display:inline-flex;align-items:center;justify-content:center;width:14px;height:14px;flex-shrink:0}.tgwcfb-pro__popup-btn-icon svg{width:12px;height:12px}
