._pt-modal {
  --pt-primary: var(--primary, #9997f2);
  --pt-secondary: var(--secondary, #e9ecf0);
  --pt-success: var(--success, #3cd458);
  --pt-danger: var(--danger, #ff4954);
  --pt-warning: var(--warning, #ffba00);
  --pt-dark: var(--dark, #343a40);
  --pt-light: var(--light, #f8f9fa);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  line-height: 1.2 !important;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s;
}
._pt-modal ._pt-modal-fluid-container {
  padding: 15px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
._pt-modal.active {
  z-index: 99999;
  opacity: 1;
  pointer-events: all;
}
._pt-modal.active ._pt-modal-fluid-container {
  opacity: 1;
  transform: translateY(0);
}
._pt-modal ._pt-modal-wrapper {
  max-width: 812px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-header {
  padding: 20px 15px;
  border-bottom: 1px solid #ededed;
  flex: 0 0 100%;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-sidebar {
  flex: 0 0 100%;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-sidebar ._pt-modal-tab-items-buttons {
  display: none;
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-sidebar ._pt-modal-tab-items-buttons {
    display: block;
  }
}
._pt-modal ._pt-modal-wrapper ._pt-modal-content {
  overflow-x: hidden;
  height: calc(100vh - 220px);
  height: calc(100svh - 220px);
  min-height: 150px;
  width: 100%;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-content ._pt-modal-tab ._pt-modal-tab-text-wrapper {
  padding: 15px 15px 25px;
  display: none;
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-content ._pt-modal-tab ._pt-modal-tab-text-wrapper {
    padding: 15px 25px;
  }
}
._pt-modal ._pt-modal-wrapper ._pt-modal-content ._pt-modal-tab ._pt-modal-tab-text-wrapper ._pt-modal-tab-title {
  font-size: 18px;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-content ._pt-modal-tab ._pt-modal-tab-settings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-content ._pt-modal-tab.active ._pt-modal-tab-text-wrapper {
  display: block;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions {
  position: relative;
  width: 100%;
  padding: 15px;
  display: flex;
  flex-flow: column-reverse;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-primary-outline {
  color: var(--pt-primary);
  display: block;
  text-align: center;
  padding: 9px 24px;
  border: 1px solid var(--pt-primary);
  text-transform: uppercase;
  transition: all 0.3s;
  margin-bottom: 2px;
  border-radius: 50px;
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-primary-outline {
    margin: 0 15px 0 0;
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-primary-outline:hover {
    filter: brightness(50%);
  }
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-primary {
  display: block;
  background-color: var(--pt-primary);
  color: #fff;
  padding: 9px 24px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--pt-primary);
  transition: all 0.3s;
  border-radius: 50px;
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-primary:hover {
    filter: brightness(1.1);
  }
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-danger {
  display: block;
  background-color: var(--pt-danger);
  color: #fff;
  padding: 9px 24px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--pt-danger);
  transition: all 0.3s;
  border-radius: 50px;
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-danger:hover {
    filter: brightness(1.1);
  }
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-danger-outline {
  display: block;
  color: var(--pt-danger);
  padding: 9px 24px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--pt-danger);
  transition: all 0.3s;
  border-radius: 50px;
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-modal-button-danger-outline:hover {
    filter: brightness(1.1);
  }
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-buttons {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-buttons > a {
  text-decoration: none;
  line-height: 1;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-copyright {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  font-weight: 500;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-buttons-left {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  font-weight: 500;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-buttons-left > a {
  text-decoration: none;
  line-height: 1;
}
@media only screen and (max-width: 759px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-buttons {
    justify-content: center;
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-copyright {
    margin-top: 10px;
    text-align: center;
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions ._pt-buttons-left {
    margin-top: 10px;
    text-align: center;
  }
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-sidebar {
    flex: 0 0 260px;
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-content {
    height: 375px;
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-sidebar + ._pt-modal-content {
    flex: 0 0 calc(100% - 260px);
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-actions {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ededed;
    flex-flow: row;
  }
}
._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid #ededed;
  border-width: 1px 0 0 0;
  background-color: #f7f7f7;
  font-size: 15px;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
  color: var(--pt-dark);
}
._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--pt-primary);
  opacity: 0;
  transition: opacity 0.4s;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link.active:before {
  opacity: 1;
}
._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link:last-child {
  border-width: 1px 0 1px 0;
}
@media only screen and (min-width: 760px) {
  ._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link {
    border-width: 0 1px 1px 0;
    padding: 15px;
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link.active {
    background-color: #fff;
    border-right: 0;
    color: var(--pt-primary);
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link:last-child {
    border-width: 0 1px 1px 0;
  }
  ._pt-modal ._pt-modal-wrapper ._pt-modal-tab-link._pt-modal-mobile-tab-button {
    display: none;
  }
}
._pt-modal ._pt-modal-wrapper a {
  color: var(--pt-primary);
}

._pt-dropdown-arrow {
  position: relative;
  width: 4px;
  height: 2px;
  right: 4px;
}
._pt-dropdown-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 2px;
  background-color: var(--pt-primary);
  transform: rotate(-45deg);
}
._pt-dropdown-arrow:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 2px;
  background-color: var(--pt-primary);
  transform: rotate(45deg);
}

._pt-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
._pt-switcher .toggle {
  margin-right: 5px;
  color: #7f7f7f;
}
._pt-switcher ._pt-switcher-view {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #dedede;
  display: block;
  line-height: 1;
  transition: background-color 0.3s;
}
._pt-switcher ._pt-switcher-view:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 16px;
  height: 16px;
  background-color: #ccc;
  border-radius: 50px;
  border: 1px solid #fafafa;
  transition: left 0.3s;
}
._pt-switcher ._pt-modal-switcher-input {
  display: none;
}
._pt-switcher.active ._pt-switcher-view {
  background-color: var(--pt-success);
}
._pt-switcher.active .on {
  display: inline-flex;
}
._pt-switcher.active .off {
  display: none;
}
._pt-switcher.active ._pt-switcher-view:after {
  background-color: #f5f0f0;
  left: 20px;
}
._pt-switcher .on {
  display: none;
}

._pt-modal-cookies-list {
  margin-top: 15px;
}
._pt-modal-cookies-list ._pt-modal-cookies-list-title {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 7px;
  border-bottom: 1px solid #ccc;
}
._pt-modal-cookies-list ._pt-modal-list {
  padding: 7px 0;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: #7f7f7f;
}

._pt-checkout ._pt-section {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  padding: 7px 15px;
}
._pt-checkout ._pt-section-shipping {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 7px 15px;
  border-bottom: 0;
  position: relative;
  transition: all 1.7s, background-color 0.3s;
}
._pt-checkout ._pt-section-shipping .iti {
  width: 100%;
}
._pt-checkout ._pt-section-shipping:hover:not(.opened) {
  background-color: #e8ffe6;
}
._pt-checkout ._pt-section-shipping .bootstrap-select .btn,
._pt-checkout ._pt-section-shipping textarea,
._pt-checkout ._pt-section-shipping input[type=text] {
  box-shadow: unset !important;
  border-radius: 0;
}
._pt-checkout ._pt-section-shipping .bootstrap-select .btn,
._pt-checkout ._pt-section-shipping textarea:not([disabled]),
._pt-checkout ._pt-section-shipping input[type=text]:not([disabled]) {
  background: #fff;
}
._pt-checkout ._pt-section-shipping .bootstrap-select .btn:focus,
._pt-checkout ._pt-section-shipping textarea:not([disabled]):focus,
._pt-checkout ._pt-section-shipping input[type=text]:not([disabled]):focus {
  border-color: var(--pt-primary);
}
._pt-checkout ._pt-section-shipping ._pt-section-body {
  display: none;
  padding: 10px;
  transition: display 1s ease-in-out;
}
._pt-checkout ._pt-section-shipping.opened {
  background-color: #f7f7f7;
}
._pt-checkout ._pt-section-shipping.opened ._pt-section-body {
  display: block;
  transition: display 0.3s ease-in;
}
._pt-checkout ._pt-section-shipping:last-of-type {
  border-bottom: 1px solid #ddd;
}

._pt-form-floating {
  --pt-primary: var(--primary, #9997f2);
  --pt-secondary: var(--secondary, #e9ecf0);
  --pt-success: var(--success, #3cd458);
  --pt-danger: var(--danger, #ff4954);
  --pt-warning: var(--warning, #ffba00);
  --pt-dark: var(--dark, #343a40);
  --pt-light: var(--light, #f8f9fa);
  --pt-border: #ededed;
  position: relative;
}
._pt-form-floating input::placeholder, ._pt-form-floating input::-webkit-input-placeholder, ._pt-form-floating input::-moz-placeholder, ._pt-form-floating input:-ms-input-placeholder, ._pt-form-floating input:-moz-placeholder,
._pt-form-floating .form-control::placeholder,
._pt-form-floating .form-control::-webkit-input-placeholder,
._pt-form-floating .form-control::-moz-placeholder,
._pt-form-floating .form-control:-ms-input-placeholder,
._pt-form-floating .form-control:-moz-placeholder {
  color: transparent !important;
  visibility: hidden;
}
._pt-form-floating > .form-control,
._pt-form-floating > .form-control-plaintext,
._pt-form-floating > .form-select {
  height: calc(3.5rem + 2px);
  min-height: calc(3.5rem + 2px);
  line-height: 1.25;
}
._pt-form-floating > .form-control:focus,
._pt-form-floating > .form-control-plaintext:focus,
._pt-form-floating > .form-select:focus {
  border-color: var(--pt-primary);
  border-width: 1px;
  outline: 1px solid var(--pt-primary);
  box-shadow: unset;
}
._pt-form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  ._pt-form-floating > label {
    transition: none;
  }
}
._pt-form-floating > .form-control,
._pt-form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
._pt-form-floating > .form-control:not(:-moz-placeholder-shown),
._pt-form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
._pt-form-floating > .form-control:focus, ._pt-form-floating > .form-control:not(:placeholder-shown),
._pt-form-floating > .form-control-plaintext:focus,
._pt-form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
  line-height: 1.25;
}
._pt-form-floating > .form-control:-webkit-autofill,
._pt-form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
._pt-form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
._pt-form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  color: rgba(var(--pt-dark), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
._pt-form-floating > .form-control:focus ~ label,
._pt-form-floating > .form-control:not(:placeholder-shown) ~ label,
._pt-form-floating > .form-control-plaintext ~ label,
._pt-form-floating > .form-select ~ label {
  color: rgba(var(--pt-dark), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  font-weight: 600;
}
._pt-form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--pt-border);
  border-radius: 7px;
}
._pt-form-floating > .form-control:focus ~ label::after,
._pt-form-floating > .form-control:not(:placeholder-shown) ~ label::after,
._pt-form-floating > .form-control-plaintext ~ label::after,
._pt-form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
}
._pt-form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
._pt-form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}
._pt-form-floating > :disabled ~ label,
._pt-form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}
._pt-form-floating > :disabled ~ label::after,
._pt-form-floating > .form-control:disabled ~ label::after {
  background-color: var(--pt-secondary);
}

.alertify .ajs-modal {
  z-index: 999999 !important;
}

/*# sourceMappingURL=scripts.css.map */
