@keyframes loading-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-spinner-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.button_container .cancel_anytime {
  font-weight: 500;
}
.button_container .button_container {
  margin-top: 0;
}
.button_container.mt0 {
  margin-top: 0 !important;
}
.button_container.center {
  text-align: center;
}

.tw_button {
  display: inline-block;
  width: 220px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 13px 0;
  border-radius: 6px;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  box-sizing: border-box;
  color: #000000;
}
.tw_button .loading-circular-spinner,
.tw_button .new-loader {
  display: none;
}
.tw_button.link {
  padding: 0;
  text-decoration: underline;
}
.tw_button.link.black {
  color: #000000;
}
.tw_button.link:hover {
  text-decoration: none;
}
.tw_button.button_disabled {
  opacity: 0.5;
  pointer-events: none;
}
.tw_button.loading {
  opacity: 0.8;
  pointer-events: none;
}
.tw_button.loading .text {
  display: none !important;
}
.tw_button.loading .loading-circular-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.tw_button.loading .loading-circular-spinner > .loader {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
.tw_button.loading .loading-circular-spinner > .loader.white .path {
  stroke: #ffffff;
}
.tw_button.loading .loading-circular-spinner > .loader.black .path {
  stroke: #000000;
}
.tw_button.loading .loading-circular-spinner .circular {
  animation: loading-spinner-rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.tw_button.loading .loading-circular-spinner .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: loading-spinner-dash 1.5s ease-in-out infinite;
}
.tw_button.loading .new-loader {
  display: inline-block;
  background: url(https://10web.io/wp-content/themes/10web-theme/images/icons/loading.svg);
  background-size: contain;
  box-sizing: border-box;
  animation: loading-spinner-rotate 1s linear infinite;
}
.tw_button.blue_bg {
  background-color: #3339F1;
  color: #FFFFFF;
  border: 1px solid #3339F1;
}
.tw_button.blue_bg span {
  color: #FFFFFF;
}
.tw_button.blue_bg:hover {
  background-color: rgba(51, 57, 241, 0.8);
  border-color: rgba(51, 57, 241, 0.8);
}
.tw_button.palatinate_blue_bg {
  background: #3339f0 !important;
  color: #ffffff;
}
.tw_button.palatinate_blue_bg:hover {
  opacity: 0.8;
}
.tw_button.white_bg {
  background-color: #FFFFFF;
  color: #000000;
  cursor: pointer;
}
.tw_button.white_bg.blue_text {
  color: #3339f0;
}
.tw_button.white_bg.outline {
  border: 1px solid #000000;
  padding: 13px 20px;
}
.tw_button.white_bg.outline:hover {
  background-color: #000000;
  color: #FFFFFF;
  opacity: 1;
}
.tw_button.white_bg span {
  color: #000000;
}
.tw_button.white_bg:hover {
  opacity: 0.8;
}
.tw_button.black_bg {
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}
.tw_button.black_bg:hover {
  opacity: 0.8;
}
.tw_button.white_transparent_bg {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  color: #ffffff;
}
.tw_button.white_transparent_bg:hover {
  background: rgba(255, 255, 255, 0.2);
}
.tw_button.transparent_bg:hover {
  color: rgba(0, 0, 0, 0.5);
}
.tw_button.black_border {
  border: 1px solid #000000;
}
.tw_button.black_border:hover {
  background-color: #000000;
  color: #FFFFFF;
  opacity: 1;
}
.tw_button.rounded {
  border-radius: 23px;
}
.tw_button.blur {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.tw_button.white_outline {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.tw_button.white_outline:hover {
  color: #000000;
  background: #ffffff;
}
.tw_button.dark_outline {
  color: #000000;
  border: 1px solid #000000;
  background-color: transparent;
  box-sizing: border-box;
}
.tw_button.dark_outline:hover {
  color: #fff;
  background: #000000;
}
.tw_button.black_outline {
  border: 1px solid #000000;
}
.tw_button.black_outline:hover {
  color: #ffffff;
  background: #000000;
}
.tw_button.with-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.tw_button.with-stars:before {
  content: "";
  background: url(https://10web.io/wp-content/themes/10web-theme/images/icons/ai.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}

@media screen and (min-width: 1261px) {
  .button_container {
    margin-top: 48px;
  }
  .button_container .cancel_anytime {
    font-size: 12px;
    line-height: 18px;
    margin-top: 12px;
  }
  .button_container.bottom {
    margin-top: 64px;
  }
  .tw_button.loading .new-loader {
    width: 20px;
    height: 20px;
  }
  .tw_button.with-stars {
    padding: 16px 0;
    font-size: 16px;
    line-height: 26px;
    width: 260px;
  }
  .tw_button.with-stars:before {
    width: 24px;
    height: 24px;
  }
  .buttons-container {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1260px) and (min-width: 768px) {
  .button_container {
    margin-top: 48px;
  }
  .button_container .cancel_anytime {
    font-size: 12px;
    line-height: 18px;
    margin-top: 12px;
  }
  .button_container.bottom {
    margin-top: 64px;
  }
  .tw_button.loading .new-loader {
    width: 20px;
    height: 20px;
  }
  .tw_button.with-stars {
    padding: 16px 0;
    font-size: 16px;
    line-height: 26px;
    width: 260px;
  }
  .tw_button.with-stars:before {
    width: 24px;
    height: 24px;
  }
  .buttons-container {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .button_container {
    margin-top: 32px;
  }
  .button_container .cancel_anytime {
    font-size: 10px;
    line-height: 16px;
    margin-top: 8px;
  }
  .tw_button.loading .new-loader {
    width: 17px;
    height: 17px;
  }
  .tw_button.with-stars {
    padding: 13px 0;
    font-size: 14px;
    line-height: 20px;
    width: 233px;
  }
  .tw_button.with-stars:before {
    width: 20px;
    height: 20px;
  }
  .buttons-container {
    margin-top: 32px;
  }
}
/*# sourceMappingURL=buttons.css.map */