/*
    Main Style
    https://franken-ui.dev/docs/ 
*/
.progress-tracker {
  background-color: #F6F3F5;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  margin-top: 2rem;
}

.progress-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.progress-item span {
  font-size: 12px;
}

.progress-item img {
  width: 15px;
  height: 15px;
}

.progress-item.completed img {
  display: inline-block;
}

.progress-item .status {
  color: #aaa;
  font-size: 10px;
}

.circular-progress {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.circular-progress svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circular-progress circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}

.circular-progress .background-circle {
  stroke: #9B7E91;
}

.circular-progress .progress-circle {
  stroke: #301025;
  stroke-dasharray: 0 100;
  transition: stroke-dasharray 0.3s;
}

.circular-progress .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #301025;
}

.progress-tracker h2 {
  font-size: 13px;
  font-weight: 600;
}

.progress-box {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.progress-box .progress-tally {
  width: 60%;
  padding-right: 9px;
  border-right: solid 1px rgba(48, 16, 37, 0.1);
}
.progress-box .progress-percentage {
  width: 40%;
  padding-left: 9px;
}
.progress-box .progress-percentage p {
  font-size: 12px;
  margin-bottom: 10px;
}

body {
  color: #301025;
}

.form-section {
  display: flex;
  justify-content: space-evenly;
  margin-top: 4rem;
}
.form-section .form-column {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.form-section .form-column .form-width {
  max-width: 350px;
}
.form-section .bg-side {
  width: 40%;
  min-height: 80vh;
  background-image: url("../images/bg-form.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}

.form-card {
  max-width: 500px !important;
}

.credit-card {
  padding: 40px 25px 25px 25px;
  position: relative;
  background: linear-gradient(180deg, #FAFAFA 0%, #F8F8F8 100%);
  box-shadow: 0px 14px 19.3px -16px rgba(0, 0, 0, 0.7);
  border-radius: 16px;
}
.credit-card:before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 20px;
  top: 15px;
  height: 30px;
  width: 90px;
  background-image: url("../images/credit-card-group.png");
  background-size: contain;
  background-repeat: no-repeat;
}

body:not(.page-dashboard) .uk-input, .uk-select:not([multiple]):not([size]) {
  vertical-align: middle;
  display: inline-block;
  height: 2.5rem;
}

body:not(.page-dashboard) .uk-button:not(.uk-button-upload) {
  padding: 1.5rem 1rem;
  height: 2.5rem;
}

.content-with-preview {
  display: flex;
  flex-wrap: nowrap;
}
.content-with-preview .content {
  padding-top: 2rem;
  width: 60%;
  padding-right: 2rem;
  border-right: solid 1px rgba(48, 16, 37, 0.1);
}
.content-with-preview .preview {
  padding-top: 2rem;
  width: 40%;
  padding-left: 2rem;
}

.link-text {
  vertical-align: middle;
  text-decoration: none;
}
.link-text.with-icon {
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
}

#card-title {
  max-width: 300px;
  white-space: nowrap;
}

.card-theme .uk-button-primary[data-theme=light] {
  background-color: #FAF5ED;
}
.card-theme .uk-button-primary[data-theme=dark] {
  background-color: #301025;
}
.card-theme .uk-button.active {
  box-shadow: 0px 4px 4px -1px rgba(12, 12, 13, 0.1), 0px 4px 4px -1px rgba(12, 12, 13, 0.05);
  border-radius: 8px;
}

.share-button {
  max-width: 200px;
}

.preview-card-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview-card-phone img {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 70%;
}

.settings-button {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
}
.settings-button > img {
  width: 50px;
  height: 50px;
}
.settings-button:hover {
  background: #F6F3F5;
}
.settings-button .info {
  display: flex;
  flex-direction: column;
  color: #301025;
}
.settings-button-dropdown a {
  color: #301025;
}
.settings-button-dropdown a img {
  margin-right: 10px;
}

.uk-subnav > * > :first-child {
  padding: 0.5rem 1.3rem;
}

.spacer {
  height: 35px;
  width: 100%;
}

.progressBarContainer {
  width: 100%;
  max-width: 350px;
  height: 26px;
  height: 1.66em;
  background: #EFEFEF;
  overflow: hidden;
  border-radius: 5px;
}

.progressBarValue {
  height: 1.66em;
  float: left;
  background: #301025;
}

/* Allowed values for the css progress bars */
.value-00 {
  width: 0;
}

.value-10 {
  width: 10%;
}

.value-20 {
  width: 20%;
}

.value-30 {
  width: 30%;
}

.value-40 {
  width: 40%;
}

.value-50 {
  width: 50%;
}

.value-60 {
  width: 60%;
}

.value-70 {
  width: 70%;
}

.value-80 {
  width: 80%;
}

.value-90 {
  width: 90%;
}

.value-100 {
  width: 100%;
}

/*///////////////////////////////////////////////////
    // Animation \\ 
///////////////////////////////////////////////////*/
@keyframes slideIn {
  0% {
    width: 0;
  }
  25% {
    width: 100%;
  }
  100% {
    width: normal;
  }
}
.progressBarValue {
  animation: slideIn 2s;
}

.voice-catalog-grid {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}

.voice-row {
  padding: 15px 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: 0.4 ease-in-out;
  border-radius: 0px;
}
.voice-row:not(:last-child) {
  border-bottom: 1px solid rgba(48, 16, 37, 0.25);
}
.voice-row > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  min-width: 100px;
  font-size: 13px;
}
.voice-row.filter-row {
  padding-top: 0px;
}
.voice-row .gender, .voice-row .language {
  min-width: 60px;
}
.voice-row .voice-ai {
  min-width: 180px;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.voice-row .voice-ai .img {
  width: 45px;
  height: 45px;
  position: relative;
}
.voice-row .voice-ai .img img {
  width: -moz-fit-content;
  width: fit-content;
}
.voice-row .voice-ai .img:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -10px;
  bottom: -5px;
  background-image: url("../icons/icon-circle-waves.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.voice-row .actions a {
  min-width: 120px;
  text-align: center !important;
  align-items: center;
  justify-content: center;
}
.voice-row .actions a:hover, .voice-row .actions a.active {
  border: 1px solid #301025;
}
.voice-row .actions a.btn-catalog.active {
  background: #301025;
  color: #FFF !important;
}
.voice-row .actions a img {
  min-width: 10px;
}

.text-white {
  color: #FFF !important;
}

a[disabled], .disabled {
  background: rgba(48, 16, 37, 0.25);
}
a[disabled]:hover, .disabled:hover {
  cursor: not-allowed !important;
}

.script-row {
  width: 100%;
}
.script-row textarea {
  width: 100%;
  background-color: #FFF;
}
.script-row .actions {
  display: flex;
  justify-content: space-between;
}
.script-row .actions > div {
  min-width: 50%;
}
.script-row .actions .info {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.script-row .actions .assist {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.script-row .actions .assist a {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}/*# sourceMappingURL=impretza-v2.css.map */