@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

:root {
  --dh-white: #ffffff;
  --dh-light: #f7fafd;
  --dh-red: #d54c4b;

  --dh-green: #46c3b9;
  --dh-lightgreen: #BBE7E6;

  --dh-blue: #3e80ce;
  --dh-lightblue: #9ebfe6;
  --dh-lighterblue: rgba(121, 121, 211, 0.2);
  --dh-orange: #eda334;

  --dh-gray: #a3aeb1;
  --dh-midgray: #e7e7e7;
  --dh-lightgray: #f3f2ef;
  --dh-lightergray: #e9ece5;

  --dh-taghash: #34445d;

  --dh-fontfamily1: 'Poppins', san-serif;

  /* Primary Colors */
  --th-turquoise: #3CD4C8;
  --th-light-teal: #BBE7E6;
  --th-coolwhite: #F8F9FA;
  --th-white: #FFF;

  /* Accent Colors */
  --th-ultrablue: #006EF5;
  --th-sapphire: #245DDE;
  --th-cobalt: #2053C4;
  --th-cerulean: #3A8FF8;
  --th-sky: #D1E4FA;
  --th-lilac: #E8E8FC;
  --th-red: #EF3B3A;
  --th-orange: #FDA117;
  --th-teal: #009E8E;
  --th-d-grey: #B0B5B5;
  --th-m-grey: #D8D9D9;
  --th-l-grey: #EAEBEB;

  /* Typographic Inks */
  --th-navy: #152E55;
  --th-d-navy: #0A1629;
  --th-s-grey: #7A858D;

  /*--Shadows--*/
  --th-nav-shadow: 0px 4px 10px 0px #A6B2BF40;
  --th-dropdown-shadow: 0px 4px 10px 0px #00000040;
  --th-card-shadow: 2px 2px 10px 0px #A6B2BF40;
  --th-sidemenu-shadow: 0px 4px 10px 0px #A6B2BF33;
  --th-btn-shadow: 0px 0px 10px 0px #0000001F;
  --th-btn-hover-shadow: 0px 0px 10px 0px #00000026;

  --th-connector-shadow_grey: 0px 0px 10px 0px #0000001A;

  --th-connector-shadow_green: 0px 0px 10px 0px #009E8E33;

  --sub-domain-wrapper: 754px
}

.bg-gray {
  background-color: var(--dh-gray);
}

.bg-lightgray {
  background-color: var(--dh-lightgray);
}

.bg-lightergray {
  background-color: var(--dh-lightergray);
}

.bg-lightblue {
  background-color: var(--dh-lighterblue);
}

body {
  font-family: var(--dh-fontfamily1);
  background: var(--dh-lightgray);
}

.dh-nav.navbar {
  z-index: 992;
}

.dh-nav .dropdown>.dropdown-menu {
  position: absolute;

  &:focus-visible {
    outline: none !important;
  }
}

.modal-backdrop {
  background-color: #555 !important;
}

.modal-backdrop.show {
  opacity: 0.95 !important;
}

/*--Editable Inputs--*/
.dh-editView-inputs.inputEditable>.dh-editView-inputs__trigger--change {
  display: none;
}

.dh-editView-inputs>input,
.dh-editView-inputs__trigger--confirm {
  display: none;
}

.dh-editView-inputs.inputEditable>input,
.dh-editView-inputs.inputEditable>.dh-editView-inputs__trigger--confirm {
  display: block;
}

.show-block {
  display: block;
}

.hide-block {
  display: none !important;
}

/*---Button--*/
.dh-btn {
  margin: auto;
  display: inline-block;
  border-radius: 4px;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  outline: 0;
  border: 0;
  transition: all ease 0.2s;
}

.dh-btn.dh-btn--main {
  background: var(--dh-blue);
}

.dh-btn.dh-btn--main:hover {
  color: #fff;
  box-shadow: 0 0 0 0.25rem var(--dh-lightblue);
}

.dh-btn.dh-btn--main>span {
  width: 0;

  display: inline-block;
  transition: all ease 0.4s;
  opacity: 0;
  margin-left: 0px;
}

.dh-btn.dh-btn--main:hover>span,
.dh-btn.dh-btn--main:focus>span {
  width: 16px;
  opacity: 1;
  margin-left: 2.5px;
}

.dh-btn.dh-btn--dh-lightblue {
  background: var(--dh-lightblue);
}

.dh-btn.dh-btn--dh-lightblue:hover {
  color: #fff;
  box-shadow: 0 0 0 0.25rem var(--dh-lightgray);
}

.dh-btn.dh-btn--dh-green {
  background: var(--dh-green);
}

.dh-btn.dh-btn--dh-gray {
  background: var(--dh-gray);
}

.dh-btn.dh-btn--dh-green:hover {
  color: #333;
  box-shadow: 0 0 0 0.25rem var(--dh-lightgray);
}

button:disabled,
button[disabled] {
  border: 1px solid #999999;
  background-color: #cccccc !important;
  color: #666666;
  cursor: not-allowed;
}

/*---./button--*/

label.coming-soon,
label.tab-coming-soon {
  float: right;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
  vertical-align: middle;
  line-height: 20px;
  color: #3e80ce;
}

/*--dh-pills--*/
.dh-pills {
  border-bottom: 1px solid var(--dh-lightgray);
}

.dh-pills li>button {
  padding: 5px 12px;
  color: #000;
  background: transparent !important;
  font-size: 14px;
  position: relative;
}

.dh-pills li>button.active {
  color: var(--dh-blue) !important;
  font-weight: bold;
}

.dh-pills li>button.active:after {
  left: 10px;
  bottom: 0;
  position: absolute;
  width: calc(100% - 20px);
  height: 2px;
  border-radius: 20px;
  background: var(--dh-blue);
  content: "";
}

/*--dh-form-check--*/
.dh-form-check {
  position: relative;
  padding-left: 0;
}

.dh-form-check input[type="radio"] {
  position: absolute;
  right: 0;
}

.coming-soon-item {
  position: relative;
  display: inline-block;
}

.coming-soon-item .coming-soon__tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: rgba(121, 121, 211, 0.95);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 5px 0;
  font-size: 0.6em;
  /* Position the tooltip */
  position: absolute;
  z-index: 100;
  top: calc(100% - 5px);
  left: 50%;
  margin-left: -50px;
}

.coming-soon__tooltiptext.coming-soon__tooltiptext--top::after {
  content: "";
  position: absolute;
  top: calc(0% - 5px);
  left: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(121, 121, 211, 1);
}

.coming-soon-item:hover .coming-soon__tooltiptext {
  visibility: visible;
}

/*--./dh-pills--*/

.dh-sidemenu-open .dh-sidemenu {
  width: 240px;
}

.dh-sidemenu__trigger {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  outline: 0;
  padding: 4px;
  font-size: 12px;
  position: absolute;
  right: -12px;
  top: 50px;
  background: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  color: var(--dh-blue);
  z-index: 9;
  line-height: 1;
  border: 1px solid;
}

.dh-sidemenu__trigger:hover {
  background: var(--dh-blue);
  color: #fff;
}

.dh-sidemenu.dh-sidemenu--close .dh-sidemenu__trigger {
  transform: rotate(-180deg);
  z-index: 992;
}

.dh-sidemenu.dh-sidemenu--close ul li a>svg,
.dh-sidemenu.dh-sidemenu--close ul li a>img {
  margin-right: 0;
}

.dh-sidemenu.dh-sidemenu--close ul li a>.nav-link__text {
  display: none;
}

.dh-sidemenu {
  left: 0;
  /* transition: all ease .2s; */
  width: 80px;
  height: calc(100vh - calc(3rem + 30px));
  padding: 0 0 10px;
  position: fixed;
  z-index: 992;
  background: #fff;
  transition: all ease 0.25s;
  margin-top: calc(3rem + 30px);
}

.dh-sidemenu ul>li {
  padding: 1px 15px;
  position: relative;
}

.dh-sidemenu ul>li>hr,
.dh-switchprofile hr {
  background: var(--dh-gray);
}

.dh-sidemenu ul>li>a {
  color: #334d6e;
  border-radius: 2px;
  font-size: 13px;
  padding: 0.5rem 0.8rem;
  position: relative;
}

.dh-sidemenu ul>li>a>i,
.dh-sidemenu ul>li>a>svg,
.dh-sidemenu ul>li>a>img {
  margin-right: 0.8rem;
  color: var(--dh-gray);
}

.dh-sidemenu ul>li>a.nav-link.active,
.dh-sidemenu ul>li>a.nav-link:hover {
  /* background: var(--dh-lightgreen);
    color: var(--dh-taghash); */
  background: rgba(62, 128, 206, 0.2);
  color: #3e80ce;
}

.dh-sidemenu ul>li>a.nav-link.active>i,
.dh-sidemenu ul>li>a.nav-link.active>svg {
  color: #3e80ce;
}

.dh-sidemenu-open main.content-box {
  padding-left: 240px;
}

main.content-box {
  padding-left: 80px;
  padding-top: 66px;
  min-height: 100vh;
  background: var(--dh-light);
  transition: all ease 0.25s;
}

/*------Data Connections----*/
.taghash-engine {
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taghash-engine .rounded-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffff;
}

/*--------------------------*/
.dh-card--s:before {
  content: "";
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  position: absolute;
  left: -15px;
  top: -15px;
  border-radius: 3px;
  z-index: 991;
  box-shadow: 0 0 10000px 10000px #555555f0;

  transition: all ease 0.35s;
  opacity: 0;
}

.dh-popover-holder.open .dh-card--s:before {
  opacity: 1;
}

.dh-card--s {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--dh-lightgray);
  border-radius: 4px;
  padding: 15px 40px 15px 50px;
  position: relative;
  cursor: pointer;
  width: 100%;
  display: inline-block;
}

.dh-card--s>img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.dh-card--s img+label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

// .dh-card--s:last-of-type {
//   margin-bottom: 0 !important;
// }
.dh-card--s:after,
#taghash-engine-box:after {
  border: 2px solid #fff;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dh-lightgray);
  position: absolute;
  right: -7.5px;
  transform: translateY(-50%);
  top: 50%;

  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.dh-data-destinations .dh-card--s:after,
#taghash-engine-box:after {
  right: auto;
  left: -7.5px;
  box-shadow: -0.5px 0 4px 0 #0003;
}

#taghash-engine-box:after {
  border: 2px solid #fff;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dh-lightgray);
  position: relative;
  transform: translateY(-50%);
  top: 6px;
  right: auto;
  left: 26.5px;
  box-shadow: -0.5px 0 4px 0 #0003;
}

#taghash-engine-box:before {
  border: 2px solid #fff;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dh-lightgray);
  position: relative;
  transform: translateY(-50%);
  top: 6px;
  left: auto;
  right: 26.5px;
  box-shadow: -0.5px 0 4px 0 #0003;
}

#taghash-engine-box.connection-success-source:before {
  background: green;
}

#taghash-engine-box.connection-success-destination:after {
  background: green;
}

.dh-card--s img {
  width: 32px;
  margin-right: 10px;
  // border-radius: 50%;
}

.dh-popover-holder.open {
  z-index: 992;
}

.dh-popover-holder:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000a6;
  z-index: 990;
  transition: all ease 0.25s;

  visibility: hidden;
  opacity: 0;
}

.input-group-text.big {
  word-wrap: normal;
  max-height: 100px;
}

.dh-popover-holder.open .dh-card--s {
  border-color: var(--dh-blue);
  background-color: var(--dh-lighterblue);
}

.dh-popover-holder.open .dh-card--s:after {
  border-color: var(--dh-blue);
}

.dh-card--s.connection--success:after {
  background: green;
}

.dh-card--s.connection--pending:after {
  background: orange;
}

.dh-popover-holder.open:before,
.dh-popover-holder.open:after {
  visibility: visible;
}

.dh-popover-trigger {
  position: relative;
  z-index: 9991;
}

.dh-popover {
  position: absolute;
  width: 450px;
  background: #fff;
  /* border-radius: 3px; */
  transition: all ease 0.25s;

  z-index: 9992;

  opacity: 0;
  visibility: hidden;
  display: none
}

.dh-popover:after {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  content: "";
  position: absolute;
}

/*--for Sources--*/
.dh-data-sources .dh-popover {
  left: calc(100% + 40px);
  top: -130px;
}

.dh-data-sources .dh-popover:after {
  border-right: 10px solid #fff;
  left: -10px;
  top: 150px;
}

/*--for Sources--*/
.dh-data-destinations .dh-popover {
  right: calc(100% + 40px);
  top: -130px;
}

.dh-data-destinations .dh-popover:after {
  border-left: 10px solid #fff;
  right: -10px;
  top: 150px;
}

.dh-popover-holder.open .dh-popover {
  opacity: 1;
  visibility: visible;
  display: block;
  /* left: calc(100% + 30px); */
}

.dh-popover__head {
  padding: 10px 15px;
  background: var(--dh-blue);
  color: #fff;
}

.dh-popover__head button,
.dh-popover__head button:hover {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 1.5rem;
  outline: 0;
  box-shadow: none;
}

.dh-popover__body {
  padding: 20px;
}

.dh-popover__footer {
  padding: 10px 15px;
  box-shadow: 0px -2px 10px 2px rgba(0, 0, 0, 0.05);
}

/*--fb setup--*/
.fb-login--success .dh-btn.dh-btn--main {
  background: var(--dh-green) !important;
}

.fb-logout {
  visibility: hidden;
  padding: 0 20px;
  text-decoration: none;
}

.fb-login--success .fb-logout {
  visibility: visible;
}

/*--Help tag--*/
.helping-tag {
  cursor: pointer;
}

.helping-tag__hover {
  white-space: normal;
  text-align: left;
  font-size: 14px;
  position: absolute;
  width: 360px;
  left: -50%;
  top: 30px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all .1s ease;
  display: block;
  margin-left: -8px;
}

.helping-tag:hover>.helping-tag__hover {
  top: 35px;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.slick-slide img {
  width: 100%;
}

.slick-arrow {
  z-index: 2;
}

.slick-next {
  right: 0 !important;

  &::before {
    color: #33455a !important;
  }
}

.slick-prev {
  left: 0 !important;

  &::before {
    color: #33455a !important;
  }
}

/*--Onboarding Video Modal--*/
.onboarding-content {
  padding: 20px;
  color: #334d6e;
}

.onboarding-content .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

/*--Setup Process--*/
.dh-setup-process {
  border-radius: 4px;
  width: 220px;
  height: 64px;
  position: fixed;
  z-index: 888;
  right: 50px;
  bottom: 25px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 12px;
  justify-content: space-between;
  gap: 15px;
}

div.circular-chart-holder {
  width: 40px;
  height: 40px;
}

.circular-chart {
  display: block;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

.circular-chart.green .circle {
  stroke: var(--dh-green);
}

.dh-steps {
  fill: var(--dh-blue);
  font-family: sans-serif;
  font-size: 0.8em;
  text-anchor: middle;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

/*-------./----------------*/

@media (max-width: 900px) {
  .p-5 {
    padding: 1.2rem !important;
  }
}

// add css from developer
.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  opacity: 0.95;
}

.custom-control-input[type="checkbox"],
.custom-control-input[type="radio"] {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
}

.custom-control-input[type="checkbox"] {
  border-radius: 0.25em !important;
}

.custom-control-input[type="checkbox"],
.custom-control-input[type="radio"] {
  border-radius: 0.25em;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.custom-control-input[type="checkbox"]:checked,
.custom-control-input[type="radio"]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.custom-control-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.custom-control-input[type="radio"] {
  border-radius: 50% !important;
}

.custom-control-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.dh-card--s.open .dh-card--inner {
  border-color: var(--dh-blue);
  background-color: var(--dh-lighterblue);
  z-index: 992;
}

.dh-card--s.open:before {
  background-color: #ffffff;
  opacity: 1;
}

// .dh-card--s.open img, .dh-card--s.open label{
//   position: relative;
//   z-index: 992;
// }
.dh-message>img {
  width: 16px;
  border-radius: inherit;
  margin-right: 0;
}

.input-group-flex {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group select {
  height: 100%;
}

.activeCard.dh-card--s {
  z-index: 993;
}

.activeCard.dh-card--s::before {
  opacity: 1;
}

.activeCard.dh-card--s {
  border-color: var(--dh-blue);
  background-color: var(--dh-lighterblue);
}

.activeCard.dh-card--s:after {
  border-color: var(--dh-blue);
}

.verify--name--date .form-control,
.verify--name--date small.input-group-text,
.verify--name--date .custom-select {
  height: 38px;
}

.alert-dismissible {
  .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.75rem 1.25rem;
    float: right;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    background-color: transparent;
    border: 0;
  }
}

.el-loading-mask {
  position: fixed !important;
  background-color: transparent !important;
}

.custom-error-msg {
  font-size: 0.875em;
  color: #dc3545;
}

.set-scrollbar {
  height: 340px;
  overflow: scroll;
}

.custome-select-5 {
  span {
    width: 100%;

    .is-invalid {
      max-height: 38px !important;
    }
  }
}

@keyframes ldio-c4jdyeenh8h {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.ldio-c4jdyeenh8h div {
  left: 44.5px;
  top: 5.5px;
  position: absolute;
  animation: ldio-c4jdyeenh8h linear 1s infinite;
  background: #2f87b9;
  width: 11px;
  height: 31px;
  border-radius: 5.5px / 15.5px;
  transform-origin: 5.5px 44.5px;
  box-sizing: content-box;
}

.ldio-c4jdyeenh8h div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666666666666s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333333334s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666666666666s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333333334s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666666666667s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333333333s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.16666666666666666s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.08333333333333333s;
  background: #2f87b9;
}

.ldio-c4jdyeenh8h div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #2f87b9;
}

.loadingio-spinner-spinner-kkqzeg1sgmp {
  width: 41px;
  height: 41px;
  display: inline-block;
  overflow: hidden;
  background: #ffffff;
}

.ldio-c4jdyeenh8h {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.41);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.dns-setup-inputs {
  margin-left: -5px;
  margin-right: -5px;
  align-items: center;

  >[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.disableWin {
  pointer-events: none;
}

.dh-sidemenu.dh-sidemenu--close ul li a>.nav-link__text,
.dh-sidemenu.dh-sidemenu--close ul li a>.coming-soon {
  display: none;
}

.primary-text {
  color: var(--dh-blue);
}

.dh-editView-inputs__trigger--change {
  font-size: 0.875em;
}

.absolute-loader {
  .el-loading-mask {
    position: absolute !important;
  }
}

.custom-loader {
  .el-loading-parent--relative {
    position: static !important;

    .el-loading-mask {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;

      &:before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000000a6;
        z-index: 990;
        transition: all ease 0.25s;
        visibility: hidden;
      }

      .el-loading-spinner {
        width: auto;
        box-shadow: 0 0 10000px 10000px #000000a8;
        background: rgba(0, 0, 0, 0.66);
      }
    }
  }
}

.copy-to-clipboard {
  position: relative;
  overflow: hidden;
}

.copy-to-clipboard__action {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy-to-clipboard__action svg {
  display: block;
  margin: auto auto 5px;
}

.copy-to-clipboard__action--copy {
  //background: #7979d300;
  background: #7979d320;
  cursor: pointer;
}

.copy-to-clipboard__action--copy:hover {
  background: #7979d350;
}

.copy-to-clipboard__action--copied {
  background: #28a74580;
  visibility: hidden;
}

.copy-to-clipboard.copy-to-clipboard--success .copy-to-clipboard__action--copied {
  visibility: visible;
}

.copy-to-clipboard__action--copied>div {
  transition: all ease 0.35s;
  transform: translateY(100%);
}

.copy-to-clipboard.copy-to-clipboard--success .copy-to-clipboard__action--copied>div {
  transform: translateY(0);
}

.copy-to-clipboard.copy-to-clipboard--success .copy-to-clipboard__action--copy {
  visibility: hidden;
}

.dns-setup-help {
  font-size: 15px;
}

.dh-sidemenu ul>li.coming-soon-item>a,
.dh-card--s.coming-soon-item label:not(.coming-soon),
.source-card {
  color: #bbb !important;
}

.source-card {
  position: relative;

  &:hover {
    background-color: transparent !important;
    cursor: default;
  }
}

.coming-soon-item .coming-soon_tooltiptext,
.source-card~.coming-soon_tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: var(--dh-lightblue);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 5px 0;
  font-size: 0.6em;
  /* Position the tooltip */
  position: absolute;
  z-index: 100;
  top: calc(100% - 5px);
  left: 30%;
  margin-left: -50px;
}

.coming-soon_tooltiptext.coming-soon_tooltiptext--top::after,
.source-card~.coming-soon_tooltiptext::after {
  content: "";
  position: absolute;
  top: calc(0% - 5px);
  left: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--dh-lightblue);
}

.coming-soon-item:hover .coming-soon_tooltiptext,
.source-card:hover~.coming-soon_tooltiptext {
  visibility: visible;
}

label.coming-soon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

.dh-section-inner-title {
  font-size: 1rem;
  color: var(--dh-taghash);
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--dh-lightgray);
  margin: 0 -1rem;
}

.copy-c-name {
  position: relative;

  .copy {
    position: absolute;
    right: 20px;
    z-index: 1;
    top: 34px;
    cursor: pointer;
  }
}

.dh-sidemenu ul.navbar-nav>li>a {
  font-size: 16px !important;
  padding: 1px 15px !important;
}

.navbar-nav-left .dropdown-menu {
  min-width: 100% !important;
}

.dh-sidemenu ul.navbar-nav-left>li {
  border-bottom: 0.5px solid #eee !important;
  padding-bottom: 10px;
}

.navbar-nav-left {
  margin-bottom: 15px;
}

.copy-c-name .input-group-text {
  white-space: normal;
  word-break: break-all;
  padding-right: 85px !important;
  text-align: left;
}

.dh-switchprofile {
  padding: 15px 15px 0px 15px;
  position: relative;

  // z-index: 992;
}

.dh-switchprofile .el-select .el-input {
  border: 1px solid var(--dh-lightgreen);
  background: transparent;
  @include border-radius(0.25rem);

  .el-input__inner {
    background: #47c3b92b;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
}

.dh-switchprofile .dropdown-toggle:after {
  display: none;
}

.dh-switchprofile .el-select-dropdown.el-popper {
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  margin-top: 2px;
  z-index: 999 !important;
}

.dh-switchprofile .el-popper .popper__arrow::after {
  top: 15px !important;
  left: -51px !important;
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  border-right: 10px solid var(--dh-midgray);
}

.dh-switchprofile .el-input--suffix .el-input__inner {
  border: none;
  border-radius: 0;
  padding-left: 47.8px;
  position: relative;
}

.dh-switchprofile .el-input--suffix::after {
  content: "";
  display: block;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 20px;
  background: url("./img/icons/arrow.png");
}

.dh-switchprofile .el-select-dropdown {
  min-width: 200px !important;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.8rem;
  border-radius: 0;
  clear: both;
  font-weight: 400;
  color: var(--dh-taghash);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  height: auto;
  line-height: 1.5;
  font-size: 13px;
  position: relative;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item:first-child {
  border-radius: 2px 2px 0 0;
  overflow: hidden;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item.selected {
  background: rgba(62, 128, 206, 0.2);
  color: var(--dh-blue);
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item:hover {
  color: #1e2125;
  background-color: #e9ecef;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item.selected:hover,
.dh-switchprofile .el-select-dropdown .el-select-dropdown__item.selected:focus {
  background: rgba(62, 128, 206, 0.2);
  color: var(--dh-blue);
}

.dh-switchprofile .el-select-dropdown__list {
  transform: none !important;
  width: 200px;
  padding: 0 0;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item.selected::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  right: 20px;
  background: green;
  top: 50%;
  transform: translateY(-50%);
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item:last-child {
  padding: 0;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item:last-child .dropdown-item {
  color: var(--dh-taghash);
  padding: 0.5rem 0.8rem;
  display: block;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item:last-child .dropdown-item:focus {
  background: rgba(62, 128, 206, 0.2);
  color: var(--dh-blue);
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item .dropdown-item label.coming-soon {
  right: 10px;
}

.dh-switchprofile .el-select-dropdown .el-select-dropdown__item.selected:last-child:after {
  display: none;
}

// .dh-switchprofile .el-input__suffix{
//   display: none;
// }
.dh-switchprofile .el-input__suffix {
  .el-select__caret {
    transform: rotateZ(90deg) !important;
    font-weight: 700;
    color: var(--dh-taghash) !important;

    &.is-reverse {
      transform: rotateZ(-90deg) !important;
    }
  }
}

.dh-sidemenu--close {
  .dh-switchprofile {
    .el-input__suffix {
      display: none;
    }

    .el-input__inner {
      padding-right: 0;
    }
  }
}

.dh-switchprofile .el-input--suffix .el-input__inner:hover {
  color: #0a58ca;
}

text {
  font-family: var(--dh-fontfamily1);
}

.card-img-overlay {
  position: relative;
}

/*--Widgets--*/

.dh-page-title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--dh-taghash);
}

.dh-page-subtitle {
  font-size: 1rem;
  margin: 0 0 20px;
  color: var(--dh-gray);
}


.dh-nav li a {
  position: relative;
  color: #334d6e;
  padding: 1em;
}

.dh-nav li a.active {
  color: var(--dh-blue);
}

.dh-nav li a.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: -1px;
  background: var(--dh-blue);
  border-radius: 3px;
}

.dh-info-card {
  border-radius: 0.25rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);

  display: flex;
  gap: 15px;
}

.dh-info-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}

.dh-info-card__icon svg {
  fill: var(--dh-white);
}

.dh-info-card__detail h2 {
  margin: 0;
}

.plans-choose {
  .w-100 {
    display: flex;
    // justify-content: space-between;
    flex-wrap: wrap;

    .plan-radio {
      // flex-grow: 1;
      margin-top: 5px;
      margin-bottom: 5px;

      // text-align: center;
      &:not(:last-child) {
        margin-right: 20px;
      }
    }
  }
}

.radio-button-inline {
  margin-bottom: 15px;

  .custom-control-inline {
    display: inline-block;

    &:not(:last-child) {
      margin-right: 15px;
    }

    .custom-control-label {
      margin-left: 5px;
    }
  }
}

.is-invalid {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.copy-records {
  tr {
    td {
      word-break: break-all;

      &:first-child {
        word-break: normal;
      }
    }
  }
}

a.nav-link[disabled] {
  pointer-events: none;
  color: #bbb;
}

.ns-records-values {
  display: flex !important;
  font-size: 16px;
  align-items: center;
  width: 100%;
  max-height: 150px;
  min-height: 64px;
  height: auto;
  overflow-y: auto;
}

/* Choose & Compare Plan */

/* Switch */
.dh-switch {
  input {
    order: 2;
    border-color: #86b7fe;
    outline: 0;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e") !important;

    + {
      label {
        order: 1;
        color: blue;

        + {
          label {
            order: 3;
          }
        }
      }
    }

    &:checked {
      + {
        label {
          color: grey;

          + {
            label {
              color: blue;
            }
          }
        }
      }
    }
  }
}

.dh-plan {
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  height: 100%;

  .custom-control-label {
    cursor: pointer;
    height: 100%;
    padding-left: 34px;

    .label-card {
      height: 100%;
      background-color: transparent;
      border: 0;
      border-radius: 0;

      .card-body {
        padding: 0;
      }

      .card-header {
        background-color: transparent;
        padding: 0;
        border: 0;
      }

      .card-footer {
        background-color: transparent;
        padding: 0;
        border: 0;
      }
    }
  }

  .dh-plan__price {
    b {
      font-size: 2rem;
    }

    .dh-plan__price--annually {
      display: none;
    }

    &.dh-annualplan {
      .dh-plan__price--monthly {
        display: none;
      }

      .dh-plan__price--annually {
        display: block;
      }
    }
  }

  &.dh-plan--highlighted {
    background: var(--dh-green);
    color: white;

    .dh-plan__price {
      >b {
        color: white !important;
      }
    }

    ul {
      li {
        color: #fff;
      }
    }
  }

  .custom-control-input {
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    left: 1rem;
    z-index: 2;

    &:checked {
      background-image: url("./img/icons/green-check.svg");
      border: 0;
    }
  }

  .dh-plan__name {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
    font-size: 1.2rem !important;

    small {
      font-size: 55%;
    }
  }

  ul {
    li {
      min-height: 80px;
      display: flex;
      align-items: center;
    }
  }
}

.close-project {
  position: absolute;
  right: 12px;
}


.copy-to-clipboard {

  &.ns-records-copy {
    >.form-control {
      border: 0;
      white-space: nowrap;
      overflow: hidden;
      @include border-radius(0);
      background-color: #e9ecef;
    }

    .input-group-text {
      padding: 0;
      // margin: -2px;
      border-radius: .25rem !important;
      background-color: var(--dh-blue);

      .copy-to-clipboard__action {
        position: static;
        @include border-radius(0 0.25rem 0.25rem 0);
      }
    }

    .copy-clip-btn {
      width: auto;
      padding: .375rem .75rem;
      right: 0;
      left: auto;

      svg {
        margin-bottom: 0;
      }
    }

    &.dh-copyable-element {
      // border: 2px dashed lightgray;
      cursor: pointer;
      background: #e9ecef;
      max-width: 100%;
      width: 100%;
      // @include border-radius(0 0.25rem 0.25rem 0);
      overflow: initial;

      .dh-copyable-element__copied {
        display: none;
      }

      &.dh-copyable-element--copied {
        .dh-copyable-element__copied {
          display: block;
        }

        .dh-copyable-element__copy {
          display: none;
        }

        .input-group-text {
          background: green;
        }
      }
    }
  }
}

/* --Sources page -- */

.dh-connection-table thead {
  border-bottom: 15px solid var(--dh-lightgray);
}

.dh-connection-table tr:not(:last-child) {
  border-bottom: 8px solid var(--dh-lightgray);
}

.dh-connection-table tr td {
  color: var(--dh-taghash);
}

.dh-custom-checkbox .form-check-input {
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  right: 1rem;
  border-radius: 50%;
}

.dh-custom-checkbox .form-check-input:checked {
  background-color: #198754;
  border-color: #198754;
}

/* --./Sources page -- */
.sources-box {
  flex: 1;
  width: auto !important;
}

.online-api {
  height: 0px;

  .dh-card--s {
    background-color: transparent;
    border: 0;
    padding: 0;
    @include border-radius(0);
    width: 0;

    .dh-popover {
      // box-shadow: 0 0 10000px 10000px #555555f0;
      border-radius: 3px;
      transition: all ease 0.35s;

      &:after {
        display: none;
      }

      // &::before{
      //   content: "";
      //   width: 100%;
      //   height: 100%;
      //   position: absolute;
      //   left: 0;
      //   top: 0;
      //   border-radius: 3px;
      //   box-shadow: 0 0 10000px 10000px #555555f0;
      //   transition: all ease 0.35s;

      // }
    }

    img {
      width: auto;
      @include border-radius(0);
    }

    &::after {
      display: none;
    }

    &::before {
      width: 100%;
      height: 100%;
      transition: none;
    }

    // &.online-api{
    //   .dh-data-destinations{
    //     .dh-popover{
    //       &:after{
    //         display: none;
    //       }
    //     }
    //   } 
    // }
  }
}

.dh-card--s-2>img {
  cursor: pointer;
  width: 34px;


}

.dh-card--s-2 img+label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.dh-card--s-2>img {
  cursor: pointer;
  width: 34px;


}

.dh-card--s-2 img+label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.taghash-engine {
  .dh-card--s {
    width: 0;
    padding: 0;

    &:before {
      left: auto;
      top: auto;
    }
  }
}

/* -- dh-data Setup-- */
.dh-data-setup .dh-popover:after {
  border-right: 10px solid #fff;
  left: -10px;
  top: 164px;
}

.dh-data-setup .dh-popover {
  left: calc(100% + 20px);
  top: -160px;
}

.dh-card--s.dh-card--s--btn {
  padding: 0;
  display: inline-block !important;
}

.dh-card--s.dh-card--s--btn:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.dh-card--s.dh-card--s--btn:after {
  display: none;
}

.audience-type {
  &.is-invalid {
    color: inherit;
  }

  .custom-control {
    display: inline-block !important;
    margin-right: 10px;
    position: relative;

    &.custom-radio {
      .custom-control-label {
        margin-left: 5px;

      }

    }
  }
}

/* --./-- */
.dh-custom-checkbox.dh-custom-checkbox--setup {
  border: 2px dashed var(--dh-midgray) !important;
  background: #fafafa;
  box-shadow: none !important;
}

.dh-custom-checkbox.dh-custom-checkbox--setup label {
  cursor: pointer;
}

.dh-custom-checkbox .connection-status.text-success {
  display: none;
}

.dh-custom-checkbox .form-check-input:checked~label .connection-status.text-warning {
  display: none;
}

.dh-custom-checkbox .form-check-input:checked~label .connection-status.text-success {
  display: block;
}

.white-space-normal {
  white-space: normal !important;
}

.font24 {
  font-size: 1.5rem !important;
}

.dh-nav li a {
  position: relative;
  color: #334D6E;
  padding: 1em;

}

.dh-nav li.nav-item.dropdown {
  margin: 0px 15px;
}

.partner-type {
  .col-sm-6 {
    position: relative;
  }

  .form-check-input {
    position: absolute;
    top: 8px;

    ~.form-check-label {
      padding-left: 25px;
    }
  }
}

.taghash-engine .dh-popover {
  left: calc(50% - var(--sub-domain-wrapper)/2);
  top: 10px;
}

.taghash-engine .dh-popover:after {
  border-left: 10px solid #fff;
  right: -10px;
  top: 140px;
  border-top: 10px solid #fff;
  right: calc(50% - 10px);
  bottom: -20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

#sub-domain-1 {
  top: -260px;
}

#sub-domain-2 {
  top: -393px;
}

.taghash-engine.connected .rounded-circle {
  border: 2px solid green;
}




/*-----Data Engine------*/

.dh-card--engine:before {
  content: '';
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  position: absolute;
  left: -15px;
  top: -15px;
  border-radius: 50%;
  z-index: 991;
  box-shadow: 0 0 10000px 10000px #555555f0;
  transition: all ease .35s;
  opacity: 0;
}

.dh-popover-holder.open .dh-card--engine:before {
  opacity: 1;
}

.taghash-engine .dh-popover {
  // left: calc(50% - 300px);
  top: 10px;
}

.taghash-engine .dh-popover:after {
  border-top: 10px solid #fff;
  right: calc(50% - 10px);
  bottom: -20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  top: auto;
}

#sub-domain-1,
#sub-domain-2 {
  bottom: 190px;
  top: auto;
}

#sub-domain-2 {

  .dh-popover__body {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.taghash-engine.connected .rounded-circle {
  border: 2px solid green;
}

.taghash-engine.connected {
  .helping-tag__hover {
    width: 600px;
    margin-left: 0;
  }
}

#website-2 {
  .helping-tag__hover {
    width: 700px;
    margin-left: 0;
  }
}

/*--------------------------*/
// .dh-card--s:before {
// content: '';
// width: calc(100% + 30px);
// height: calc(100% + 30px);
// position: absolute;
// left: -15px;
// top: -15px;
// border-radius: 3px;
// z-index: 991;
// box-shadow: 0 0 10000px 10000px #555555f0;

// transition: all ease .35s;
// opacity:0;
// }
// .dh-popover-holder.open .dh-card--s:before{
// opacity:1;
// }
/*--------------------------*/
// .dh-card--s:before {

//   max-width: 320px;
//     width: 320px;
//     margin-bottom: 0.25rem !important;
// }

.table-overflow {
  .table-responsive {
    height: 150px;
    overflow-y: auto;

    .VueTables__table {
      overflow: initial !important;
      margin-bottom: 0;

      thead {
        tr {
          th {
            position: sticky !important;
            top: 0;
            background-color: #ffffff;
          }
        }
      }
    }
  }

  .VuePagination.row {
    margin-top: 10px !important;
  }

  th {
    &:first-child {
      width: 120px;

      .VueTables__heading {
        width: 120px;
      }
    }
  }

  .table-source {
    width: 120px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
  }
}

.subscription-page {
  .nav-tabs {
    border: 0;
    margin-bottom: 15px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.10);
    border: 0;
    background-color: #ffffff;
    border-radius: 5px;

    .nav-item {
      &:first-child {
        .nav-link {
          border-top-left-radius: 4px;
          border-bottom-left-radius: 4px;
        }
      }

      .nav-link {
        border: 0;
        color: #A9A9A9;
        border-bottom: 3px solid transparent !important;
        border-radius: 0;

        &.active {
          color: var(--dh-blue);
          border-color: var(--dh-blue) !important;
        }
      }
    }
  }

  .subscription-content {
    .contant-title {
      font-weight: 400;
      font-size: 15px;
      opacity: 0.8;
      margin: 0.35rem 0;
    }

    .content-label {
      font-weight: 500;
      margin: 0.35rem 0;
    }
  }

  .section-title {
    font-size: 18px;
    // font-weight: bold;
  }

  .preferred-pay-method {
    // background-color: var(--dh-lightblue);
    padding: 15px;
    @extend .bg-lightgray;
    margin-top: 15px;
  }
}

.content-card {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.10);
  border: 0;
  background-color: #ffffff;
  border-radius: 5px;
}

.modal-link {
  padding: 0;
  font-weight: normal !important;
}

.overlay {
  display: block;
  text-align: center;
  position: absolute;
  top: 82px;
  /* chartArea top  */
  left: 70px;
  /* chartArea left */
  font-size: 12px;
}

.plan-disabled {
  opacity: .5;
}

.b-table-sticky-header {
  overflow-y: auto;
  max-height: 300px;
}

.VuePagination__count {
  display: none;
}

table {
  tr {

    th,
    td {
      font-size: 0.85rem;
    }
  }
}

.dh-data-destinations,
.dh-data-sources {
  width: calc(50% - 230px);
}

// tag code copy
/*-- custom scroller --*/
.dh-overflow-scroll {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 20px;
}

.dh-overflow-scroll::-webkit-scrollbar {
  background: var(--dh-midgray);
  width: 5px;
  margin-right: 5px;
  border-radius: 20px;
}

.dh-overflow-scroll::-webkit-scrollbar-thumb {
  background: var(--dh-gray);
  border-radius: 20px;
}

/*--- dh-textdivider--*/

.dh-hr--with-text {
  border-bottom: 1px solid #707070;
  text-align: center;
  margin-bottom: 25px;

  span {
    padding: 0 10px;
    display: block;
    background: #fff;
    max-width: fit-content;
    margin: 0 auto -13px;
    text-align: center;
  }
}


/*--dh copyable content--*/

.dh-copy-button {
  width: 35px;
  height: 35px;
  padding: 5px 8px;
  cursor: pointer;
  position: relative;
}

.dh-copy-button svg {
  stroke: var(--dh-blue);
}

.dh-copy-button:hover {
  background: var(--dh-lighterblue);
}

.dh-copy-button:hover:before,
.dh-copy-button:hover:after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.dh-copy-button:active {
  background: var(--dh-blue);
}

.dh-copy-button:active svg {
  stroke: var(--dh-white);
}

.dh-copy-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(255, 255, 255, 1);
  text-shadow: 5px -3px 20px #00000047;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: all .35s ease;
}

.dh-copy-button:after {
  content: 'Copy Code';
  font-size: 10px;
  position: absolute;
  left: 47%;
  width: 70px;
  background: #fff;
  box-shadow: 2px 3px 4px 0 #00000047;
  z-index: 99;
  padding: 4px;
  text-align: center;
  bottom: -25px;
  color: var(--dh-blue);
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: all .35s ease;
}

.dh-copy-button.dh-copy-button--copied {
  background: var(--dh-lightgreen);
}

.dh-copy-button.dh-copy-button--copied svg {
  stroke: var(--dh-green);
}

.dh-copy-button.dh-copy-button--copied:after {
  content: 'Copied !';
  color: var(--dh-green);
}

.dh-copy-button.dh-copy-button--copied:before,
.dh-copy-button.dh-copy-button--copied:after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.dh-copyable-element {
  /* border: 2px dashed lightgray; */
  cursor: pointer;
  background: #e9ecef;

  max-width: 320px;
  width: 320px;
  margin-bottom: 0.25rem !important;
}

.dh-copyable-element input {
  border: 0;
}

.dh-copyable-element .input-group-text {
  background: var(--dh-blue);
  color: #fff;
  border: none;
  /* margin: -2px; */
}

.dh-copyable-element .dh-copyable-element__copied {
  display: none;
  ;
}

.dh-copyable-element.dh-copyable-element--copied .dh-copyable-element__copied {
  display: block;
}

.dh-copyable-element.dh-copyable-element--copied .dh-copyable-element__copy {
  display: none;
}

.dh-copyable-element.dh-copyable-element--copied .input-group-text {
  background: green;
}

.copy-script-modal {
  padding: 30px;
  word-break: break-word;
  white-space: pre-wrap;
  @include border-radius(10px)
}

.copy-script-popup {
  text-decoration: none;
  padding: 8px;

  &.dh-copy-button--copied {
    background: var(--dh-lightgreen);
    border-radius: 5px;

    svg {
      color: var(--dh-green);
    }

    span {
      color: var(--dh-green);
    }
  }
}

#script-copy-modal {
  fill: var(--dh-blue);
}

/*--New Form Fields--*/
.form-field {
  position: relative;
  margin: 0 0 24px;
  line-height: 16px;
  background-repeat: no-repeat;
}

.form-field:hover .form-field__input {
  border-color: var(--th-ultrablue);
}

.form-field:hover .form-field__label {
  color: var(--th-ultrablue);
}

.form-field.form-field--w-action {
  background-position-x: calc(100% - 35px);
}

.form-field--error {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.43734 9.979H9.68734V4.70817H8.43734V9.979ZM8.99984 13.1665C9.19428 13.1665 9.35748 13.1005 9.48942 12.9686C9.62137 12.8366 9.68734 12.6734 9.68734 12.479C9.68734 12.2846 9.62137 12.1214 9.48942 11.9894C9.35748 11.8575 9.19428 11.7915 8.99984 11.7915C8.80539 11.7915 8.6422 11.8575 8.51025 11.9894C8.37831 12.1214 8.31234 12.2846 8.31234 12.479C8.31234 12.6734 8.37831 12.8366 8.51025 12.9686C8.6422 13.1005 8.80539 13.1665 8.99984 13.1665ZM8.99984 17.3332C7.81928 17.3332 6.72206 17.1214 5.70817 16.6978C4.69428 16.2741 3.81234 15.6873 3.06234 14.9373C2.31234 14.1873 1.72553 13.3054 1.30192 12.2915C0.87831 11.2776 0.666504 10.1804 0.666504 8.99984C0.666504 7.83317 0.87831 6.74289 1.30192 5.729C1.72553 4.71512 2.31234 3.83317 3.06234 3.08317C3.81234 2.33317 4.69428 1.74289 5.70817 1.31234C6.72206 0.881782 7.81928 0.666504 8.99984 0.666504C10.1665 0.666504 11.2568 0.881782 12.2707 1.31234C13.2846 1.74289 14.1665 2.33317 14.9165 3.08317C15.6665 3.83317 16.2568 4.71512 16.6873 5.729C17.1179 6.74289 17.3332 7.83317 17.3332 8.99984C17.3332 10.1804 17.1179 11.2776 16.6873 12.2915C16.2568 13.3054 15.6665 14.1873 14.9165 14.9373C14.1665 15.6873 13.2846 16.2741 12.2707 16.6978C11.2568 17.1214 10.1665 17.3332 8.99984 17.3332ZM8.99984 16.0832C10.9443 16.0832 12.6109 15.3887 13.9998 13.9998C15.3887 12.6109 16.0832 10.9443 16.0832 8.99984C16.0832 7.05539 15.3887 5.38873 13.9998 3.99984C12.6109 2.61095 10.9443 1.9165 8.99984 1.9165C7.05539 1.9165 5.38873 2.61095 3.99984 3.99984C2.61095 5.38873 1.9165 7.05539 1.9165 8.99984C1.9165 10.9443 2.61095 12.6109 3.99984 13.9998C5.38873 15.3887 7.05539 16.0832 8.99984 16.0832Z' fill='%23EF3B3A'/%3E%3C/svg%3E%0A");
  background-position: right 10px;
}

.form-field--error .form-field__input,
.form-field--error:hover .form-field__input {
  border-color: var(--th-red);
}

.form-field--error,
.form-field--error:hover,
.form-field--error .form-field__label,
.form-field--error:hover .form-field__label,
.form-field--error .form-field__status,
.form-field--error:hover .form-field__status {
  color: var(--th-red);
}

.form-field--success {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.87467 9.87516L0.208008 5.2085L1.10384 4.31266L4.87467 8.0835L12.8747 0.0834961L13.7705 0.97933L4.87467 9.87516Z' fill='%23009E8E'/%3E%3C/svg%3E%0A");
  background-position: right 16px;
}

.form-field--success,
.form-field--success:hover .form-field--success .form-field__label,
.form-field--success:hover .form-field__label,
.form-field--success .form-field__status,
.form-field--success:hover .form-field__status {
  color: var(--th-teal);
}

.form-field--success .form-field__input,
.form-field--success:hover .form-field__input {
  border-color: var(--th-teal);
}

.form-field__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid;
  height: 40px;
  padding: 10px 20px 5px 0;
  outline: 0;
  background: transparent;
  line-height: 20px;
  margin: 0 0 8px;
  color: var(--th-navyl);
  border-radius: 0 !important;
  position: relative;
  z-index: 2;
}

.form-field__label {
  font-size: 14px;
  left: 0;
  position: absolute;
  top: 10px;
  transition: all ease .2s;
  cursor: text;
  color: var(--th-s-grey);
}

.form-field__status {
  font-size: 12px;
  color: var(--th-navy);
}

.form-field__must-include {
  padding-left: 20px;
  background: transparent;
  border: 0;
  outline: 0;
  // color: var(--th-d-grey);
}

.form-field__must-include.form-field__must-include--success {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.87467 9.87516L0.208008 5.2085L1.10384 4.31266L4.87467 8.0835L12.8747 0.0834961L13.7705 0.97933L4.87467 9.87516Z' fill='%23009E8E'/%3E%3C/svg%3E%0A");
}

.form-field__must-include.form-field__must-include--error {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.1124 7.4124L0.587402 6.8874L3.4749 3.9999L0.587402 1.1124L1.1124 0.587402L3.9999 3.4749L6.8874 0.587402L7.4124 1.1124L4.5249 3.9999L7.4124 6.8874L6.8874 7.4124L3.9999 4.5249L1.1124 7.4124Z' fill='%23EF3B3A'/%3E%3C/svg%3E%0A");
}

.form-field__action {
  position: absolute;
  right: 0;
  top: 10px;
  background: transparent;
  border: 0;
  outline: 0;
  z-index: 3
}

.form-field__input:not(:placeholder-shown)+label,
/* .form-field__input option:checked + label, */
.form-field__input:focus+label {
  top: -16px;
  font-size: 10px;
  cursor: pointer;
  color: var(--th-ultrablue);
}

.form-field__action--pwd-btn.slash-it:before {
  width: 22px;
  position: absolute;
  height: 2px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #000;
  content: '';
  transform: rotate(45deg);
  transform-origin: top left;
  left: 10px;
  outline: 0;
  transition: all ease .3s;
}

.th-box__content {
  padding: 24px;
  background: white;
  border-radius: 12px;
}

.th-box__content .th-btn--primary {
  width: 192px;
}

// ul.th-stepper {
//   list-style: none;
//   padding: 0;
//   display: flex;
//   justify-content: space-between;
//   max-width: 440px;
//   margin: 32px auto;
// }
// ul.th-stepper li {
//   padding-top: 40px;
//   font-size: 12px;
//   text-align: center;
//   position: relative;
//   flex: 1;
// }
// ul.th-stepper li:first-child {
//   color: var(--th-ultrablue);
// }
// ul.th-stepper li:after {
//   content: '';
//   position: absolute;
//   width: 50%;
//   left:0;
//   height: 4px;
//   background: var(--th-m-grey);
//   top: 14px;
// }
// ul.th-stepper li:first-child:after {
//   left: 50%;
// }
// ul.th-stepper.th-stepper--start li:first-child:after {
//   background: var(--th-ultrablue);
// }
// ul.th-stepper li:last-child:after {
//   right:50%;
//   left: auto;
// }
// ul.th-stepper.th-stepper--end li:last-child:after {
//   background: var(--th-ultrablue);
// }
// ul.th-stepper li span {
//   width: 32px;
//   height: 32px;
//   position: absolute;
//   z-index: 9;
//   border-radius: 50%;
//   top: 0;
//   left: 50%;
//   transform: translateX(-50%);
//   background: var(--th-m-grey);
//   display: flex;
//   align-items: center;
//   justify-content: center;
// }
// ul.th-stepper li:first-child span {
//   background: var(--th-ultrablue);
//   color: #fff;
// }
// ul.th-stepper.th-stepper--end li{
//   color: var(--th-ultrablue);
// }
// ul.th-stepper.th-stepper--end li:last-child span {
//   background: var(--th-ultrablue);
// }
// ul.th-stepper.th-stepper--end li:after {
//   background: var(--th-ultrablue);
// }
// /*--Stepper for Server Setup--*/
// ul.th-stepper.th-stepper--serversetup {
//     position: absolute;
//     right: 0;
//     top: 0;
//     width: 320px;
// }
// ul.th-stepper.th-stepper--serversetup li:after {
//   width:100%;
// }
// ul.th-stepper.th-stepper--serversetup.th-stepper--step2 li:first-child:after{
//   background: var(--th-ultrablue);
// }
// ul.th-stepper.th-stepper--serversetup.th-stepper--step2 li:nth-child(2):after,
// ul.th-stepper.th-stepper--serversetup.th-stepper--step2 li:nth-child(2) span {
//   background: var(--th-ultrablue);
//   color: var(--th-white);
// }
// ul.th-stepper.th-stepper--serversetup.th-stepper--step3 li:last-child:after,
// ul.th-stepper.th-stepper--serversetup.th-stepper--step3 li:last-child span {
//   background: var(--th-ultrablue);
//   color: var(--th-white);
// }


ul.th-stepper {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  max-width: 440px;

  margin: 32px auto;
  z-index: 1;
  position: relative;
}

ul.th-stepper li {
  padding-top: 40px;
  font-size: 12px;
  text-align: center;
  position: relative;
  color: var(--th-s-grey);
  flex: 1;
  white-space: nowrap;
}

ul.th-stepper li.th-step--active {
  color: var(--th-turquoise);
}


ul.th-stepper li:not(:last-child):after {
  content: '';
  position: absolute;
  width: 100%;
  left: 50%;
  height: 1px;
  background: var(--th-m-grey);
  top: 14px;
}

ul.th-stepper li.th-step--complete:after {
  background: var(--th-turquoise);
}

ul.th-stepper li span {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 9;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--th-m-grey);
  background: var(--th-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.th-stepper li.th-step--active span {
  color: var(--th-turquoise);
  border-color: var(--th-turquoise);
}

ul.th-stepper li.th-step--active.th-step--complete span {
  color: var(--th-white);
  border-color: var(--th-turquoise);
  background: var(--th-turquoise);
}

/*--Stepper for Server Setup--*/
ul.th-stepper.th-stepper--serversetup {
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
}

ul.th-stepper.th-stepper--serversetup li:after {
  width: 100%;
}

/* ul.th-stepper.th-stepper--serversetup.th-stepper--step2 li:first-child:after{
  background: var(--th-ultrablue);
}
ul.th-stepper.th-stepper--serversetup.th-stepper--step2 li:nth-child(2):after,
ul.th-stepper.th-stepper--serversetup.th-stepper--step2 li:nth-child(2) span {
  background: var(--th-ultrablue);
  color: var(--th-white);
}
ul.th-stepper.th-stepper--serversetup.th-stepper--step3 li:last-child:after,
ul.th-stepper.th-stepper--serversetup.th-stepper--step3 li:last-child span {
  background: var(--th-ultrablue);
  color: var(--th-white);
} */

.th-custom-checkbox {
  position: relative;
  padding-left: 35px;
}

.th-custom-checkbox input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  z-index: 19;
}

.th-custom-checkbox label:before {
  width: 24px;
  height: 24px;
  border: 1px solid var(--th-ultrablue);
  content: '';
  display: block;
  z-index: 99;
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.87467 9.87516L0.208008 5.2085L1.10384 4.31266L4.87467 8.0835L12.8747 0.0834961L13.7705 0.97933L4.87467 9.87516Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -3px;
  left: 0;
}

.th-custom-checkbox input[type="checkbox"]:checked+label:before {
  background-color: var(--th-ultrablue);
}

/*--Typography--*/
.th-heading--h1 {
  font-family: var(--dh-fontfamily1);
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0px;
}

.th-heading--h2 {
  font-family: var(--dh-fontfamily1);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
}

.th-heading--h3 {
  font-family: var(--dh-fontfamily1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0px;
}

.th-heading--h4 {
  font-family: var(--dh-fontfamily1);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0px;
}

.th-text--body1 {
  font-family: var(--dh-fontfamily1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.th-text--body2 {
  font-family: var(--dh-fontfamily1);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.th-text--body3 {
  font-family: var(--dh-fontfamily1);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.th-text--caption1 {
  font-family: var(--dh-fontfamily1);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.th-text--caption2 {
  font-family: var(--dh-fontfamily1);
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
}

.th-btn {
  padding: 12px 24px;
  border-radius: 4px;
  outline: 0;
  font-size: 14px;
  border: 0;
  line-height: 20px;
}

.th-btn--clear {
  background: transparent;
  color: var(--th-ultrablue);
}

.th-btn--clear:hover {
  background-color: rgba(209, 228, 250, 0.4);
}

.th-btn--clear:focus {
  background-color: var(--th-sky);
}

.th-btn--clear[disabled] {
  color: var(--th-s-grey);
  cursor: not-allowed;
}

.th-btn--primary {
  background-color: var(--th-ultrablue);
  color: var(--th-white);
}

.th-btn--primary:hover {
  background-color: var(--th-sapphire);
}

.th-btn--primary:focus {
  background-color: var(--th-cobalt);
}

.th-btn--primary[disabled] {
  background-color: var(--th-l-grey);
  color: var(--th-s-grey);
  cursor: not-allowed;
}

.th-btn--text {
  padding: 0;
  background: transparent;
  color: var(--th-ultrablue);
  text-decoration: none;
}

.th-btn--text:hover {
  color: var(--th-sapphire);
  text-decoration: underline;
}

.th-btn--text:focus {
  color: var(--th-cobalt);
  text-decoration: underline;
}

.th-btn--text[disabled] {
  color: var(--th-s-grey);
  cursor: not-allowed;
  text-decoration: line-through;
}

.th-bg--light-teal {
  background-color: var(--th-light-teal) !important;
}

.form-field__input:focus,
.form-field__input.form-control:focus,
.form-field__input.form-control.is-invalid:focus {
  box-shadow: none !important;
  outline: 0 !important;
}

.form-field.form-field--w-action .is-invalid~.form-field__action,
.form-field.form-field--w-action .is-valid~.form-field__action {
  right: 30px;
}

.setup {
  main {
    &.content-box {
      padding-left: 0;
      background-color: var(--dh-lightgreen);

      .th-box {
        background-color: transparent !important;
        border-radius: 0 !important;
        margin: 0 auto !important;
        padding: 40px 0 !important;

        .th-box__content {
          background: var(--dh-white);
          border-radius: 12px;
        }
      }
    }
  }
}

/*--Text Color--*/
.th-text-color--dark {
  color: var(--th-d-navy);
}

.th-text-color--medium {
  color: var(--th-navy);
}

.th-text-color--light {
  color: var(--th-s-grey);
}

/* Progress Loader */

.th-loader--square>div span {
  width: 10px;
  height: 10px;
  background-color: var(--dh-green);
  display: inline-block;
  margin: 0 5px;
  // animation: .8s th-loader--square linear infinite;
}

.th-loader--square>div span:first-of-type {
  animation-delay: .2s;
}

.th-loader--square>div span:nth-of-type(2) {
  animation-delay: .4s;
}

.th-loader--square>div span:last-of-type {
  animation-delay: .6s;
}

@keyframes th-loader--square {
  100% {
    background: var(--th-turquoise);
  }
}

.th-serversetup-progress--complete .th-loader--square>div span {
  background: var(--th-turquoise);
  animation: none;
}

.th-serversetup-progress__bar {
  width: 100%;
  height: 5px;
  background: #D8F6F4;
  display: flex;
  border-radius: 100px;
  position: relative;
}

.th-serversetup-progress__bar .th-serversetup-progress__bar-inner {
  width: 40%;
  background: var(--th-turquoise);
  transition: width .6s ease;
  border-radius: 100px;
}

/* Modal CSS */
.th-modal .modal-dialog {
  /* max-width: 90%; */
}

.th-modal .modal-content {
  border-radius: 8px;
  overflow: hidden;
}

.th-modal__head {
  padding: 12px 24px;
  background: var(--th-light-teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

/* AWS Setup Slider */

.th-slider__step {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  border-bottom: .5px solid var(--th-l-grey);
  margin-bottom: 32px;
}

.th-slider__step li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--th-s-grey);
  text-decoration: none;
  padding-bottom: 8px;
  cursor: pointer;
  display: inline-block;
}

.th-slider__step li a:hover {
  color: var(--th-ultrablue) !important;
}

.th-slider__step li a.th-slider__step--current {
  font-weight: 600;
  color: var(--th-ultrablue);
  border-bottom: 1px solid var(--th-ultrablue);
}

.th-carousel {
  padding-bottom: 65px;
}

.th-carousel .carousel-indicators {
  margin-bottom: 0;
}

.th-carousel .carousel-indicators button[data-bs-target] {
  text-indent: unset;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--th-s-grey);
  background-clip: padding-box;
}

.th-carousel .carousel-indicators button[data-bs-target]:hover {
  color: var(--th-coolwhite);
  background-color: var(--th-d-grey);
}

.th-carousel .carousel-indicators button[data-bs-target]:active,
.th-carousel .carousel-indicators button[data-bs-target].active {
  color: var(--th-ultrablue);
  background-color: var(--th-sky);
  font-weight: 600;
}

.th-carousel .carousel-control-prev-icon {
  background: var(--th-s-grey);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16L0 8L8 0L9.05 1.05L2.85 7.25H16V8.75H2.85L9.05 14.95L8 16Z' fill='%23B0B2B5'/%3E%3C/svg%3E%0A");
}

.th-carousel .carousel-control-next-icon {
  background: var(--th-s-grey);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16L6.95 14.925L13.125 8.75H0V7.25H13.125L6.95 1.075L8 0L16 8L8 16Z' fill='%23006EF5'/%3E%3C/svg%3E%0A");
}

.th-carousel .carousel-control-prev:hover span,
.th-carousel .carousel-control-next:hover span {
  background: var(--th-ultrablue);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

/* Modal CSS */
.th-modal .modal-dialog {
  /* max-width: 90%; */
}

.th-modal .modal-content {
  border-radius: 8px;
  overflow: hidden;
}

.th-modal__head {
  padding: 12px 24px;
  background: var(--th-light-teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

/* AWS Setup Slider */

.th-slider__step {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  border-bottom: .5px solid var(--th-l-grey);
  margin-bottom: 32px;
}

.th-slider__step li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--th-s-grey);
  text-decoration: none;
  padding-bottom: 8px;
  cursor: pointer;
  display: inline-block;
}

.th-slider__step li a:hover {
  color: var(--th-ultrablue) !important;
}

.th-slider__step li a.th-slider__step--current {
  font-weight: 600;
  color: var(--th-ultrablue);
  border-bottom: 1px solid var(--th-ultrablue);
}

.th-carousel {
  padding-bottom: 65px;
}

.th-carousel .carousel-indicators {
  margin-bottom: 0;
}

.th-carousel .carousel-indicators button[data-bs-target] {
  text-indent: unset;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--th-s-grey);
  background-clip: padding-box;
}

.th-carousel .carousel-indicators button[data-bs-target]:hover {
  color: var(--th-coolwhite);
  background-color: var(--th-d-grey);
}

.th-carousel .carousel-indicators button[data-bs-target]:active,
.th-carousel .carousel-indicators button[data-bs-target].active {
  color: var(--th-ultrablue);
  background-color: var(--th-sky);
  font-weight: 600;
}

.th-carousel .th-carousel-control .carousel-control-prev-icon {
  background: var(--th-m-grey);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16L0 8L8 0L9.05 1.05L2.85 7.25H16V8.75H2.85L9.05 14.95L8 16Z' fill='%23B0B2B5'/%3E%3C/svg%3E%0A");
}

.th-carousel .th-carousel-control .carousel-control-next-icon {
  background: var(--th-m-grey);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16L6.95 14.925L13.125 8.75H0V7.25H13.125L6.95 1.075L8 0L16 8L8 16Z' fill='%23006EF5'/%3E%3C/svg%3E%0A");
}

.th-carousel .th-carousel-control:hover span {
  background: var(--th-ultrablue);
}

.th-carousel .carousel-indicators {
  position: relative;
  margin-top: 30px;
}

.th-carousel .carousel-indicators li {
  margin: 10px;
  display: list-item !important;
  color: var(--th-s-grey);
  opacity: 0.5;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
}

.th-carousel .carousel-indicators li.active {
  opacity: 1;
  color: var(--th-ultrablue);
  background-color: var(--th-sky);
  font-weight: 600;
}

.th-btn--close {
  width: 24px;
  height: 24px;
  background: transparent;
  padding: 0;
  border-radius: 50%;
}

.th-btn--close:hover {
  background: var(--th-white);
}

.th-btn--close:active {
  box-shadow: inset 2px 0px 5px rgba(0, 0, 0, 0.1);
}

.cls-password-satisfied {
  font-weight: bold;
}

.dropdown-select-form {
  padding: 0;
  height: auto;
  border: 0;

  &.el-select {
    .el-input {
      width: 100% !important;

      .el-input__inner {
        border: 0;
        border-bottom: 1px solid #000000;
        @include border-radius(0);
        height: 40px;
        padding: 10px 35px 10px 0;
      }

      .el-select__caret {
        color: var(--dh-blue);
      }
    }
  }
}

.dropdown-select-form-2 {
  padding: 0;
  height: auto;
  border: 0;

  .multiselect__tags {
    border: 0;
    border-bottom: 1px solid #000000;
    @include border-radius(0);
    height: 40px;
    padding: 10px 35px 10px 0;
  }

  .multiselect__select {
    color: var(--dh-blue);
  }
}

.validation-label {
  font-weight: 400;

  &.cls-password-satisfied {
    color: var(--dh-green);
  }

  &.cls-password-not-satisfied {
    color: var(--dh-red);
  }
}

.validation-img {
  width: 12px;

  margin-right: 0.25rem;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: var(--dh-blue) !important;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: none !important;
}

.is-invalid {
  &.custom-invalid {
    background-image: none;
  }
}

//payment screen for signup
.pay-card {
  padding: 0;
  max-width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  border: 1px solid #e2f1ff;
  border-radius: 17px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);

}

.plans {
  font-family: 'Poppins', sans-serif;
  font-weight: lighter;
}

.plan-choose {
  height: 100%;
}

.payment-section .tab-content {
  height: 100%;
}

.plans .tab-content {
  padding: var(--section-py) 0 0 0;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.plans .tab-content .plan-div {
  height: 100%;
  padding: 25px 0;
}

.plans .tab-content .plan-item {
  position: relative;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(147, 154, 154, 0.3);
  box-shadow: 4px 4px 5px 0px rgba(147, 154, 154, 0.49);
  -webkit-box-shadow: 4px 4px 5px 0px rgba(147, 154, 154, 0.49);
  -moz-box-shadow: 4px 4px 5px 0px rgba(147, 154, 154, 0.49);
}

.plans .tab-content .card-header {
  text-align: center;
  background: none;
  color: var(--dh-white);
  border: none;
  border-radius: 10px 10px 0 0;
  background: var(--th-turquoise);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.plans .tab-content .sub-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 3px;
  padding-bottom: 10px;
  color: var(--dh-white);
}

.plans .tab-content .main-header {
  padding: 30px 0 10px 0;
  font-weight: 300;
  font-size: 45px;
  margin: 0;
  color: var(--dh-white);
}

.plans .tab-content .des-header {
  font-size: 10px;
  margin-bottom: 10px;
  color: var(--dh-white);
}

.plans .tab-content .card-body {
  background: var(--dh-white);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding: 1.25rem 1.25rem 0 1.25rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.plans .tab-content .plan-detail {
  padding: 0;
  list-style: none;
}

.form-card .plans .tab-content .plan-detail li {
  line-height: 18px;
}

.plans .tab-content .plan-detail li {
  padding: 0px 0 10px 20px;
  position: relative;
  font-size: 13px;
  line-height: 18px;
}

.plans .tab-content .plan-detail li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--th-turquoise);
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 10px;
}

.plans .tab-content .card-footer {
  border: none;
  border-radius: 0 0 10px 10px;
  background-color: var(--white-color);
  text-align: center;
}

.card-footer {
  padding: 0.75rem 1.25rem;
}

.form-card .custom-checkbox .custom-control-label {
  font-size: 13px;
  padding-top: 2px;
  display: inline;
}

.blue-text {
  color: #3e80ce;
}

.dh-green {
  color: var(--dh-green);
}

.div-not-popup-footer {
  display: flex;

  .div-1 {
    width: 80%;
    text-align: left;
    padding: 10px 0;

    span {
      width: 100%;
      font-size: 12px;
      display: block;
    }
  }

  .div-2 {
    width: 20%;
  }
}

.carousel-arrows-outside {
  .carousel-control-prev {
    left: -100px !important;
  }

  .carousel-control-next {
    right: -120px !important;
  }
}


.verify-otp-content .modal-content {
  background-color: transparent;
  padding: 0px;
  border: 0;
}

.verify-otp-content .modal-content .modal-body {
  padding: 0px;
}

.verify-code {
  margin: 0 auto;
  padding: 20px 30px;
  display: block;
  max-width: 500px;
  text-align: center;
  background: #fff;
  border: 1px solid #e2f1ff;
  border-radius: 17px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
}

.receive-code {
  margin-top: 30px;
}

.verify-code #form {
  max-width: 300px;
  margin: 25px auto 0;
}

.verify-code h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 28px;
}

.verify-code span {
  font-size: 0.85rem;
  display: block;
}

.dont-rcv-code {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.receive-code a {
  font-size: 13px;
}

.verify-inputs {
  max-width: 300px;
  margin: 25px auto 0 auto;
}

$otp-gutter: 10px;

.otp-input-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-left: -$otp-gutter;
  margin-right: -$otp-gutter;

  >div {
    flex: 1 0 0%;
    max-width: calc(50px + #{($otp-gutter * 2)});
    padding-left: $otp-gutter;
    padding-right: $otp-gutter;
    display: initial !important;
  }

  .form-control {
    padding: 0;
    text-align: center;
    border: 0px;
    border-bottom: 1px solid #b2b2b2 !important;
    border-radius: 0;

    &:focus {
      box-shadow: none;
      outline: none;
      border-color: var(--dh-blue) !important;
    }

    &::-webkit-inner-spin-button,
    &::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    &[type=number] {
      -moz-appearance: textfield;
    }
  }
}

.action-button,
.action-button-previous {
  padding: 0 20px;
  min-width: 205px;
  height: 48px;
  background-color: #3e80ce;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 150px;
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  border: 0;
}

.action-button:disabled {
  opacity: 0.5;
  cursor: auto;
  pointer-events: none;
}

.cls-aws-setup-block {
  div {
    background-color: #eee;
    padding: 10px;
    border-radius: 50%;
    display: inline;
    width: 30px;
    height: 30px;

    img {
      width: 20px;
    }
  }

  span {
    display: inline-block;
    width: 75%;
    margin-left: 5%;
    font-size: 13px;
    vertical-align: middle;
  }
}

.cls-gray-box {
  background-color: #eee;
  padding: 15px;
}

.dh-hr--with-text.cls-gray-or {
  border-bottom: 1px solid #bbb !important;
}

.cls-gray-or span {
  color: #bbb !important;
}

.multiselect__option--highlight {
  background: var(--dh-green) !important;
}

.modal-learn-more {
  @media (min-width: 1200px) {
    .modal-xl {
      max-width: 1260px;
    }
  }

  .modal-dialog {
    max-height: calc(100% - 0.5rem);

    .modal-content {
      .modal-body {
        .th-slider {
          width: 100%;
          max-height: calc(100vh - 3rem);

          .th-carousel {
            padding: 0 37px;
            max-height: calc(100% - 3rem);

            .carousel-inner {
              max-height: 400px;

              .carousel-item {
                width: 100%;

                img {
                  max-height: 400px;
                  width: auto;
                  max-width: 100%;
                }
              }
            }
          }
        }

        .carousel {

          .carousel-control-prev,
          .carousel-control-next {
            display: block;
          }

          .carousel-control-prev {
            left: -40px;
            width: 20px;
            height: 20px;
            top: 50%;
          }

          .carousel-control-next {
            right: -40px;
            width: 20px;
            height: 20px;
            top: 50%;
          }
        }
      }
    }
  }
}

.word-break {
  word-break: break-word;

}

.otp-screen {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -10px;
    margin-left: -10px;

    @include media-breakpoint-down(md) {
      margin-right: -5px;
      margin-left: -5px;
    }

    .card {
      @include box-shadow(none);
      border: 0;
      flex: 1 0 0%;
      margin-right: 10px;
      margin-bottom: 0;
      margin-left: 10px;

      @include media-breakpoint-down(sm) {
        margin-right: 5px;
        margin-left: 5px;
      }

      .card-body {
        padding: 0;
      }
    }
  }

  .form-control {
    padding: 0;
    text-align: center;
    border: 0px;
    border-bottom: 1px solid #b2b2b2 !important;
    border-radius: 0;

    &:focus {
      box-shadow: none;
      outline: none;
      border-color: var(--dh-blue) !important;
    }

    &::-webkit-inner-spin-button,
    &::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    &[type=number] {
      -moz-appearance: textfield;
    }
  }

  // .form-control{
  //   height: 50px;
  //   text-align: center;
  // }
}

.btn.btn-twitter {
  color: #fff;
  background-color: rgb(29, 155, 240);
}

.btn.btn-hubspot {
  color: #fff;
  background-color: rgb(255, 122, 89);
}

.btn.btn-zendesk {
  color: #fff;
  background-color: #14363C;
}

.btn.btn-zoho {
  color: #fff;
  background-color: #56c1e0;
}

.btn.btn-googleAds {
  color: #fff;
  background-color: #4285f4;
  padding-left: 1px;
  border-radius: 1px !important;
}

.btn.btn-tiktokAppCAPI {
  color: #fff;
  background-color: #000000;
}

.btn.btn-fbAppCapi {
  color: #fff;
  background-color: #3c57a4;
}

.btn.btn-salesforce {
  color: #fff;
  background-color: #56c1e0;
}

.btn.btn-msDynamic {
  color: #fff;
  background-color: #4285f4;
}

.custom-row-section {
  margin-left: -5px;
  margin-right: -5px;

  [class*="col"] {
    padding-left: 5px;
    padding-right: 5px;
    // align-self: center;
  }

  .form-control {
    margin-top: 0 !important;
  }
}

.event-value {
  .form-control {
    border-radius: 0.25rem !important;
  }

  height: 40px !important;
}

.el-select {
  &.is-invalid {
    margin-top: 0;
  }

  .el-select-dropdown__item {
    white-space: normal;
    height: auto;
    line-height: normal;
    padding: 5px 20px;
  }
}

.status-connected {
  color: var(--th-teal);
}

.status-pending {
  color: var(--th-orange);
}

.abcRioButton {
  border-radius: 1px;
  box-shadow: 0 2px 4px 0 (0, 0, 0, 0.25);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  -webkit-user-select: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  color: #262626;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  display: inline;
}

.form-field__input.multiselect {
  z-index: inherit;
}

.VuePagination__pagination {
  justify-content: center;

  .VuePagination__pagination-item {
    .page-link {
      line-height: 18px;
    }
  }
}

.VuePagination__pagination-item-prev-chunk.disabled,
.VuePagination__pagination-item-next-chunk.disabled {
  display: none;
}

.mw-800 {
  max-width: 800px;
}

.dns-slider {

  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    width: auto;
  }

  .carousel-control-prev {
    left: -30px;
  }

  .carousel-control-next {
    right: -30px;
  }
}

.th-grey {
  color: var(--th-s-grey);
}

.focus-placeholder::placeholder {
  opacity: 0;
}

.focus-placeholder:focus {
  &::placeholder {
    opacity: 1;
  }
}

.subdomain-popup-wrapper {
  width: var(--sub-domain-wrapper);
}

#website-1 .custom-control-input[type="checkbox"] {
  width: 22px;
  height: 22px;
  @include border-radius(2px !important);
  border: 0.5px solid #7A858D;
  margin-top: 0;
}

#website-1 .custom-control-input[type="checkbox"]:checked {
  border-color: #1977E5;
  background-color: #1977E5;
}