.custom-form label,
form.custom-form label {
  font-size: 1em;
  font-weight: var(--medium-font-weight);
  color: #0a2c3d;
  width: 100%;
}

.custom-form input:not([type=checkbox]),
.custom-form textarea,
.custom-form select,
form.custom-form input:not([type=checkbox]),
form.custom-form select,
form.custom-form textarea {
  font-family: var(--font-regular);
  color: #494c54;
  font-size: 1rem;
  padding: 10px;
  width: 100%;
  min-height: 40px;
  margin-top: 4px;
  border: 1px solid #d9dce1;
  border-radius: 4px;
  background: white;
  transition: all 150ms ease;
  resize: none;
}

.custom-form select, form.custom-form select {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  appearance: none;
}

.custom-form input.input-small, .custom-form textarea.input-small,
form.custom-form input.input-small,
form.custom-form textarea.input-small {
  max-width: 100px;
  padding: 0.5rem;
}

.custom-form input:focus-visible, .custom-form input:focus, .custom-form input:focus-within, .custom-form textarea:focus-visible, .custom-form textarea:focus, .custom-form textarea:focus-within,
form.custom-form input:focus-visible,
form.custom-form input:focus,
form.custom-form input:focus-within,
form.custom-form textarea:focus-visible,
form.custom-form textarea:focus,
form.custom-form textarea:focus-within {
  outline: none !important;
  border: 1px solid #494c54;
  border-radius: 4px;
  box-shadow: none;
}

form.custom-form .checkbox-wrapper label {
  margin-bottom: 0;
  margin-left: 4px;
  cursor: pointer;
  margin-top:0;
}

.custom-form .input-forms-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
@media (min-width: 991px) {
  .custom-form .input-forms-wrapper {
    grid-template-columns: 1fr 1fr 2fr;
  }
}

@media (max-width: 990px) {
  .custom-form .select,
form.custom-form .select {
    width: 100%;
  }
}
.custom-form input[type=checkbox],
form.custom-form input[type=checkbox] {
  transform: scale(1) !important;
  min-height: 16px;
}

.tabs-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: fit-content;
}

.tabs-form-sidebar {
  overflow: auto;
}

.tabs-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  margin-left: 0;
}
.tabs-form-wrapper .tab-form-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: var(--medium-font-weight);
  width: 90%;
  min-height: 75px;
  text-align: center;
  color: var(--blueish-dark-grey);
  border: 1px solid #d9dce1;
  border-radius: 4px;
  padding: 0.75rem;
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
  background-color: white;
  margin-right: 1.5rem;
}
.tabs-form-wrapper .tab-form-link i {
  font-size: 1.35rem;
  line-height: 1.5;
}
.tabs-form-wrapper .tab-form-link:not(.active) i, .tabs-form-wrapper .tab-form-link:not(.active) span {
  opacity: 0.7;
  transition: all 200ms ease-in-out;
}

.tabs-form-wrapper .tab-form-link:hover i, .tabs-form-wrapper .tab-form-link:hover span {
  opacity: 1;
}
.tabs-form-wrapper .radio-circle {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid var(--black);
  border-radius: 100px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}
.tabs-form-wrapper .radio-circle::after {
  content: "";
  position: absolute;
  background-color: var(--black);
  height: 10px;
  width: 10px;
  border-radius: 150px;
}

.tabs-form-wrapper a.tab-form-link {
  text-decoration: none !important;
}

.tabs-form-wrapper .tab-form-link.active {
  color: var(--black);
  border: 1px solid var(--black);
  z-index: 2;
}
.tabs-form-wrapper .tab-form-link.active .radio-circle {
  visibility: visible;
  opacity: 1;
}

.tab-form-item {
  display: none;
  padding: 0;
}

.tab-form-item.active {
  display: block;
}

/* Responsive table */
table.responsive-table {
  border-collapse: collapse;
  padding: 0;
  width: 100%;
  /*table-layout: fixed;*/
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

table.responsive-table .table-head .title {
  cursor: pointer;
}

table.responsive-table .table-head .title .ico-info-circle {
  line-height: 0;
  margin-left: 4px;
}

table.responsive-table::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}

table.tabs-header tr:first-child {
  border-top: none;
}

table tr {
  background-color: white;
  border-bottom: 1px solid #eee;
  padding: 0.35em;
}

@media (min-width: 768px) {
  table tr {
    border: none;
    border-bottom: 1px solid #eee;
  }
}
table th,
table td {
  padding: 0.62rem 0;
  text-align: left;
}

@media (min-width: 768px) {
  table th,
table td {
    padding: 0.62rem;
  }
}
table th.disabled,
table td.disabled {
  background-color: #edf0f1;
}

table th {
  font-size: 1rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
}

/*table tr {
  font-size: 0.875rem;
}*/
@media screen and (max-width: 940px) {
  table.responsive-table tr {
    padding: 0.35em 1rem;
  }

  table.responsive-table .table-head {
    display: none;
  }

  table.border-radius th, table.border-radius td {
    border: none;
    display: flex;
    align-items: center;
    text-align: right;
  }

  table.border-radius .badge {
    padding: 0.3rem 1rem;
  }

  table.responsive-table {
    background: transparent;
    box-shadow: none;
  }

  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }

  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table tr {
    display: block;
    background: white;
    border-radius: 3px;
  }

  table td {
    font-size: 0.8em;
    text-align: right;
    display: flex;
    justify-content: space-between;
  }

  table td::before {
    display: none;
  }

  table td:last-child {
    border-bottom: 0;
  }
}

.tab-label-content {
  width: 100%;
}

.tab-label-content .tab-content {
  position: absolute;
  top: 100px;
  left: 16px;
  line-height: 130%;
  display: none;
}

table.border-radius {
  border-radius: 0 4px 4px 4px;
}

table.border-radius tr {
  transition: all 200ms ease-in-out;
}

table.border-radius tr.head:hover {
  background-color: rgba(246, 248, 251, 0.45);
}

table.border-radius tr:hover {
  background-color: rgba(234, 237, 239, 0.18);
  color: inherit;
  cursor: auto;
}

table.border-radius th, table.border-radius td {
  position: relative;
  color: #0A2C3D;
  font-size: 1rem;
  text-align: left;
}

table.border-radius th.text-left, table.border-radius td.text-left {
  text-align: right;
}

@media (min-width: 768px) {
  table.border-radius th.text-left, table.border-radius td.text-left {
    padding-left: 1rem;
    text-align: left;
  }
}
table.border-radius th.font-regular, table.border-radius td.font-regular {
  font-family: var(--font-regular);
}

@media (min-width: 941px) {
  table.border-radius th, table.border-radius td {
    height: 72px;
    border-bottom: 1px solid #F4F4F4;
  }
}
table.border-radius th .client-name, table.border-radius td .client-name {
  font-family: var(--font-regular);
}

table.border-radius th .company-name, table.border-radius td .company-name {
  font-family: var(--font-regular);
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0.25rem;
}

table.border-radius th .email-position, table.border-radius td .email-position {
  border: 1px solid rgba(10, 44, 61, 0.1);
  border-radius: 100px;
  height: 23px;
  width: 23px;
  padding-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-right: 0.25rem;
  line-height: 1;
}

table.border-radius .table-head th {
  font-family: var(--font-medium);
  font-weight: var(--medium-font-weight);
}

table.border-radius .table-head th:first-child {
  padding-left: 1.5rem;
}

table.border-radius .table-head th:last-child {
  text-align: center;
}

table.border-radius .send-title {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

/*table.border-radius .table-head  tr th {
    background-color: #f6f8fb;
}*/
.header {
  z-index: 99;
}

.text-center {
  text-align: center;
}

.block h2.h3-lg {
  font-size: 1.4rem;
}

a.button.pink:hover {
  color: white;
}

.btn {
  display: flex;
  align-items: center;
  width: auto;
}
.btn .ico-plus {
  margin-right: 0.5rem;
  line-height: 0;
}
.btn .ico-chevron {
  line-height: 0;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.position-relative {
  position: relative;
}

.mt-1_5 {
  margin-top: 1.5rem;
}

.justify-end {
  justify-content: end;
}

td a:hover {
  color: #485059;
}

.bp-add-button {
  text-decoration: none;
  text-align: center;
  color: #181c25;
  border-radius: 4px;
  height: 30px;
  width: 30px;
  font-size: 14px;
  background: #fff;
  transform: rotate(45deg);
  z-index: 8;
  transition: 0.4s;
  padding-top: 0;
  border: 1px solid #fff;
  cursor: pointer;
  line-height: 1.5em;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.2);
}
.bp-add-button .icon-plus {
  transform: rotate(-45deg);
  font-size: 14px;
  margin-right: 2px;
  margin-top: -1px;
}
.bp-add-button:hover {
  color: #fff;
  background: #3899ec;
  border: 1px solid #3899ec;
}
.bp-add-button.open {
  transform: rotate(0);
}

.blankslate {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blankslate .blankslate-copy {
  width: 90%;
}
.blankslate .ico.blankslate-icon {
  font-size: 50px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.block p.subtitle {
  font-family: var(--font-regular);
  color: var(--main-dark);
  text-align: center;
  opacity: 0.8;
  margin-bottom: 2rem;
}

#card-forms-wrapper--title {
  font-family: var(--font-regular);
  font-size: 20px;
  font-weight: var(--regular-font-weight);
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.card-icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 115px;
  width: 120px;
  height: 95px;
  margin: 0 20px 20px 0;
  background-color: #fff;
  color: var(--grey);
  border: 1px solid #e3e6ed;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
  transition: 0.2s;
}
.card-icon-content .ico {
  font-size: 1.8rem;
  line-height: 0;
}
.card-icon-content .ico.ico-plus {
  font-size: 1.6rem;
}
.card-icon-content img.form-icon {
  width: 27px;
  margin-bottom: 0;
  margin-top: 4px;
}
.card-icon-content:hover {
  background-color: var(--dark-grey);
  border: 1px solid var(--dark-grey);
  color: #fff;
}
.card-icon-content:not(.inactive):hover img {
  filter: brightness(100);
}
.card-icon-content span {
  font-family: var(--font-regular);
  font-weight: 300;
  font-size: 12px;
  margin-top: 10px;
}

form.custom-form label {
  margin-top: 1.5rem;
}
form.custom-form :first-child label {
  margin-top: 0;
}
form.custom-form .checkbox-wrapper {
  margin-top: 1.5rem;
}
form.custom-form .checkbox-wrapper label {
  margin-top: 0;
}

.form-buttons-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
.form-buttons-wrapper > .btn-group {
  display: flex;
  padding: 0.8rem;
  height: 40px;
  cursor: pointer;
  color: #494c54;
  background-color: white;
  border: 1px solid #181c25;
  border-bottom: 0;
  transition: all 0.2s ease;
}
.form-buttons-wrapper > .btn-group.save-input {
  color: white;
  background-color: var(--button-green);
}
.form-buttons-wrapper > .btn-group.save-input:hover {
  background-color: var(--button-green-hover);
}
.form-buttons-wrapper > .btn-group.drag-input {
  cursor: move !important;
}
.form-buttons-wrapper > .btn-group.cancel-input:hover {
  color: #494c54;
  background-color: #ebeef4;
}
.form-buttons-wrapper > .btn-group:first-child {
  border-radius: 0 0 0 4px;
}
.form-buttons-wrapper > .btn-group:hover {
  background-color: #181c25;
  color: white;
}
.form-buttons-wrapper > .btn-group i {
  margin-right: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
}

.editable-area .form-buttons-wrapper > .btn-group:first-child {
  border-radius: 4px 0 0 0;
}
.editable-area .form-buttons-wrapper > .btn-group:nth-child(2) {
  border-left: 0;
}
.editable-area .form-buttons-wrapper > .btn-group:last-child {
  border-radius: 0 4px 0 0;
  border-left: 0;
}

.add-icons-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.add-icons-wrapper div {
  margin: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 150px;
  border: 1px solid silver;
  border-radius: 0.2rem;
  cursor: pointer;
}
.add-icons-wrapper div:hover {
  border-color: var(--info-blue);
}

.add-new-input-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 25px;
}
.add-new-input-wrapper .btn-circle-plus {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 100px;
  background-color: white;
  border: 1px solid #ccc;
  cursor: pointer;
  box-shadow: 0 2px 8px 1px rgba(204, 204, 204, 0.5);
  transition: all 150ms ease-in-out;
}
.add-new-input-wrapper .btn-circle-plus i {
  line-height: 0;
}
.add-new-input-wrapper .btn-circle-plus:hover {
  color: var(--info-blue);
  border: 1px solid var(--info-blue);
}

.tab-form-item {
  width: 100%;
}

.button.pink {
  display: flex;
  align-items: center;
}
.button.pink .ico-chevron {
  font-size: 0.76rem;
  margin-left: 0.25rem;
  line-height: 0;
}

.button.white.delete-btn:hover {
  color: #d4294d;
  border: 1px solid #d4294d;
}

.editable-area {
  position: relative;
  padding: 12px;
  opacity: 1;
  z-index: 8;
  overflow: visible;
  border: 1px solid transparent;
  border-radius: 4px 0 4px 4px;
  transition: all 0.2s ease;
}
.editable-area.hide {
  opacity: 0;
  height: 0 !important;
  overflow: hidden;
}
.editable-area .form-buttons-wrapper {
  margin-top: -41px;
  margin-right: -0.75px;
  opacity: 0;
}
.editable-area:hover {
  border: 1px solid #546b77;
}
.editable-area:hover .form-buttons-wrapper {
  opacity: 1;
}
.editable-area.editing-mode {
  border: 1px solid #546b77;
  background-color: #fefeff;
  border-radius: 4px 0 4px 4px;
  margin-top: 3rem;
}
.editable-area.editing-mode .form-buttons-wrapper {
  opacity: 1;
}

.preview-area {
  position: relative;
  border: 1.5px solid transparent;
  opacity: 1;
  overflow: visible;
  height: inherit;
  margin-bottom: 1rem;
  transition: all 300ms ease-in-out;
}

form.custom-form .editable-area label {
  margin-top: 0;
}

.form-table tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: background 200ms ease-in-out;
}
@media (min-width: 768px) {
  .form-table tr {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1100px) {
  .form-table tr {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
  }
}
@media (min-width: 1200px) {
  .form-table tr {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
  }
}
.form-table th {
  border-bottom: 0;
}
.form-table td {
  width: 100%;
  padding: 10px 0;
  border-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align:left;
}
@media screen and (min-width: 768px) {
  .form-table td:last-child {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .form-table td:before {
    display: none;
  }
}
.form-table .button:last-child {
  margin-right: 0;
}
.form-table.responsive-table tr {
  padding: 0;
}
.form-table.responsive-table td {
  font-size: 1rem;
}
.form-table .table-head {
  display: block !important;
  overflow: auto;
  position: relative;
  height: auto;
  clip: auto;
  width: 100%;
}
.form-table .table-head tr {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .form-table .table-head tr {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .form-table .table-head {
    display: none !important;
  }
}
.form-table .button.white {
  display: flex;
  align-items: center;
}
.form-table .button.white.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.empty-form-label{
  font-size: small;
  font-style: italic;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .empty-form-label{
    display:block;
  }
}

#btn-editable {
  padding: 0;
  cursor: pointer;
}
#btn-editable input {
  font-family: var(--font-name);
  font-weight: var(--medium-font-weight);
  background-color: transparent;
  box-sizing: content-box;
  color: inherit;
  cursor: text;
  min-width: 48px;
  max-width: 100%;
  outline: 0;
  border: 1.5px solid transparent;
  min-height: auto;
}
#btn-editable input:focus {
  background-color: #235dd3;
  border: 1.5px solid #7cf0ff;
}
#btn-editable::placeholder {
  color: white;
}

.skeleton-loader-label {
  --l-h: 20px !important;
  --c-w: 150px !important;
  --shine: rgba(255,255,255, 0.6) !important;
  margin-top: 3px;
  margin-bottom: 1px;
}

.skeleton-loader-input {
  --l-h: 50px !important;
  --c-w: 100% !important;
  --shine: rgba(255,255,255, 0.6) !important;
  --t: 5s ;
}

.border-error {
  border: 1px solid #e8553e !important;
}

.omega.pop-up-open {
  overflow: hidden;
}

.omega.pop-up-open #form-preview-popup {
  transform: translateY(0);
  opacity: 1;
  z-index: 1000;
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*padding-left: 1.5rem;
  padding-right: 1.5rem;*/
  padding-bottom: 4rem;
}

.omega.pop-up-open::after {
  content: " ";
  background: rgba(0, 0, 0, 0.45);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  z-index: 999;
}

.omega.pop-up-open::after .pop-up {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#form-preview-popup {
  overflow: auto;
  position: absolute;
  transform: translateY(10px);
  padding: 0 1rem;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: transform 250ms ease-in-out;
}

#form-preview-popup.open {
  z-index: 99;
}

@media (min-width: 768px) {
  #form-preview-popup.open {
    transform: translateY(0);
  }
}
#form-preview-popup .pop-up {
  background-color: white;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border-radius: 4px;
  border: 1px solid rgba(10, 44, 61, 0.2);
  transform: translateY(2rem);
}
#form-preview-popup .pop-up .section-title {
  background-color: #fbfbfc;
  border-bottom: 1px solid #dedede;
  padding: 1rem 1.5rem;
}
#form-preview-popup .pop-up .custom-form {
  padding: 1.5rem;
}

#form-preview-popup .pop-up .btn {
  width: auto;
  font-size: 0.92rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#form-preview-popup .pop-up .btn.btn-success {
  margin-left: 1rem;
}

#form-preview-popup .pop-up h2.pop-up-title {
  font-size: 1.3rem;
  margin-bottom: 0;
  width: 100%;
  justify-content: space-between;
}
#form-preview-popup .pop-up .ico-cross {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 200ms ease-in-out;
}
#form-preview-popup .pop-up .ico-cross:hover {
  opacity: 0.8;
}

#form-preview-popup .pop-up .buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  #form-preview-popup .pop-up .buttons-wrapper {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  #form-preview-popup .pop-up .follow-up-title--wrapper {
    width: 100%;
    margin-right: 1rem;
  }
}
#form-preview-popup .pop-up .schedule-follow-up--wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 0.5rem;
  align-items: baseline;
}

@media (max-width: 767px) {
  #form-preview-popup .pop-up .follow-up-title--wrapper {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
}
.title-wrapper {
  margin-bottom: 1rem;
}
@media (max-width: 1154px) {
  .title-wrapper {
    display: flex;
  }
  .title-wrapper .form-title-wrapper {
    max-width: 100%;
  }
  .title-wrapper .button.white.settings-spacer {
    justify-content: center;
  }
  .title-wrapper .buttons-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 1rem;
  }
  .title-wrapper .buttons-wrapper .button {
    margin: 0;
  }
}
.title-wrapper .icon-edit {
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: 0.5rem;
}
.title-wrapper #form-name {
  font-family: var(--font-bold);
  color: var(--main-dark);
  padding: 7px 10px 7px 10px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  background: transparent;
  min-width: 180px;
  resize: none;
  font-weight: 600;
  font-size: 1.8em;
  line-height: 1.5;
  outline: none;
  width: 100%;
  transition: all 150ms ease;
  /*      max-width: 500px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;*/
}
.title-wrapper #form-name:hover {
  background-color: #e9ebf4;
}
.title-wrapper #form-name:focus-within, .title-wrapper #form-name:focus-visible {
  border-color: var(--info-blue);
  background-color: transparent;
}

#button-add-options.btn-circle-plus {
  opacity: 0;
  transform: scale(0) rotate(45deg);
  height: 0;
  padding: 0;
  border-width: 0;
  margin: 0;
  transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
}
#button-add-options.btn-circle-plus.visible {
  opacity: 1;
  transform: scale(1);
  height: 32px;
  border-width: 1px;
  padding: 0.45rem;
  margin: 1rem auto 0;
}

#button-close-options.btn-circle-plus {
  margin: 1rem auto 0;
}
#button-close-options.btn-circle-plus .ico.ico-plus {
  transform: rotate(0deg);
  transition: transform 200ms ease-in-out;
}
#button-close-options.btn-circle-plus.open .ico.ico-plus {
  transform: rotate(45deg);
}

#add-options-wrapper {
  opacity: 1;
  transform: scale(1);
  transition: all 400ms ease-in-out;
}
#add-options-wrapper h1 {
  font-family: var(--font-regular);
  font-size: 20px;
  font-weight: var(--regular-font-weight);
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}
#add-options-wrapper.hide {
  opacity: 0;
  transform: scale(0);
  transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
}

.card-btn-wrapper .btn {
  width: auto;
}

.card-title-wrapper {
  font-weight: var(--medium-font-weight);
  background-color: var(--main-dark);
  color: white;
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 4px 4px 0 0;
}

.cards-icon-wrapper {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-icon-content.inactive {
  color: #d9d9d9;
  cursor: inherit;
  background-color: white;
}
.card-icon-content .ico {
  font-size: 1.8rem;
  line-height: 0;
}
.card-icon-content .ico.ico-credit-card-alt {
  font-size: 2.7rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.card-icon-content .ico.ico-code {
  font-size: 2.15rem;
  margin-top: -0.1rem;
}
.card-icon-content .ico.ico-social-ad {
  font-size: 2.15rem;
  margin-bottom: 0.8rem;
  margin-top: -0.3rem;
}
.card-icon-content .ico.ico-note {
  font-size: 2.15rem;
  margin-top: -0.25rem;
}

.multiple-cards-icon-wrapper.cards-icon-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 0.65rem;
}
@media (min-width: 1366px) {
  .multiple-cards-icon-wrapper.cards-icon-wrapper {
    max-width: 1000px;
  }
}
.multiple-cards-icon-wrapper.cards-icon-wrapper .card-icon-content {
  height: 95px;
  min-width: 100px;
  width: auto;
  margin: 0;
}
.multiple-cards-icon-wrapper.cards-icon-wrapper .card-icon-content .ico.ico-note {
  font-size: 1.8rem;
  margin-top: 0;
}
.multiple-cards-icon-wrapper.cards-icon-wrapper .card-icon-content .numb-icon {
  font-family: var(--font-bold);
  font-size: 1.2rem;
  line-height: 1;
}

.inside-add-blocks.hide {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 400ms ease-in-out;
}

#tabs-form-container {
  height: 0;
  overflow: hidden;
  transition: all 400ms ease-in-out;
}

#card-forms-wrapper.hide {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 100ms ease-in-out, height 200ms ease-in-out;
}

/* Preview banner */
.ribbon-wrapper-preview {
  position: absolute;
  width: 185px;
  height: 188px;
  overflow: hidden;
  top: -12px;
  right: -26px;
  z-index: 999;
}
.ribbon-wrapper-preview .ribbon-preview {
  text-align: center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  padding: 6px 0;
  left: 0;
  top: 0;
  width: 230px;
  background-color: #7b8290;
  color: #fff;
  font-size: 0.72rem;
  margin-top: 45px;
}
.ribbon-wrapper-preview .ribbon-preview:before, .ribbon-wrapper-preview .ribbon-preview:after {
  content: "";
  border-top: 3px solid #6e8900;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Font */
@font-face {
  font-family: "bp-icomoon";
  src: url("/2/fonts/icomoon/fonts/icomoon.eot?pnmyfb");
  src: url("/2/fonts/icomoon/fonts/icomoon.eot?pnmyfb#iefix") format("embedded-opentype"), url("/2/fonts/icomoon/fonts/icomoon.ttf?pnmyfb") format("truetype"), url("/2/fonts/icomoon/fonts/icomoon.woff?pnmyfb") format("woff"), url("/2/fonts/icomoon/fonts/icomoon.svg?pnmyfb#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=bp-icon-], [class*=" bp-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "bp-icomoon" !important;
  speak: none;
  font-size: 0.9em;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-right: 10px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bp-icon-edit:before {
  content: "A";
}

.bp-icon-duplicate:before {
  content: "B";
}

.bp-icon-archive:before {
  content: "C";
}

.bp-icon-subscription:before {
  content: "D";
}

.bp-icon-save:before {
  content: "E";
}

.bp-icon-preview:before {
  content: "F";
}

.bp-icon-settings:before {
  content: "G";
}

.bp-icon-report:before {
  content: "H";
}

.bp-icon-upgrade:before {
  content: "I";
}

.bp-icon-trash:before {
  content: "J";
}

.bp-icon-connect1:before {
  content: "K";
}

.bp-icon-connect2:before {
  content: "L";
}

.bp-icon-connect3:before {
  content: "M";
}

.bp-icon-domain:before {
  content: "N";
}

.bp-icon-star:before {
  content: "O";
}

.bp-icon-new:before {
  content: "P";
}

.bp-icon-cancel:before {
  content: "Q";
}

.bp-icon-delete:before {
  content: "R";
}

.bp-icon-tick:before {
  content: "S";
}

.bp-icon-sync:before {
  content: "T";
}

.bp-icon-rightsolid:before {
  content: "W";
}

.bp-icon-leftsolid:before {
  content: "X";
}

.bp-icon-rightthin:before {
  content: "Y";
}

.bp-icon-leftthin:before {
  content: "Z";
}

.bp-icon-rightcircle:before {
  content: "a";
}

.bp-icon-leftcircle:before {
  content: "b";
}

.bp-icon-rename:before {
  content: "c";
}

@media (max-width: 767px) {
  .tabs-form-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap:0;
    justify-items: center;
  }

  .tabs-form-wrapper .tab-form-link {
    margin-right: 0;
  }

  .tabs-form-wrapper .tab-form-link span {
    font-size: .6rem;
  }

  .ribbon-wrapper-preview {
    top: 0;
    right: 0;
  }
}