/*$Id$*/
:root{
  --token-input-item-height: 18px;
  --token-input-item-width: 18px;
  --token-input-img-width: 18px;
  --token-input-img-height: 18px;
}
.ZT-dflex {
display: flex
}
.ZT-dInlineFlex {
  display: inline-flex
}
.ZT-posAb{
    position: absolute;
}.ZT-posRel{
    position: relative;
}
.ZT-dflexAligncenter{
    align-items: center;
}

.ZT-dflexCenterCenter{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ZT-dflexCenterSpaceBetween {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ZT-textHighlightWhite{
  color: #fff;
}
.ZT-dflexFlexEnd{
    justify-content: flex-end;
}
.ZT-fontSemiBold{
  font-weight: 500;
}  
.textcenter {
text-align: center;
}
.ZT-textCenter {
    text-align: center;
  }
.ZT-textLeft{
  text-align: left;
}
.ZT-textRight{
  text-align: right;
}
.ZT-vertical-middle{
  vertical-align: middle;
}
.ZT-cursorNodrop{
  cursor: no-drop;
  opacity: .5;
}
.zt-disable-attr-cursor[disabled=""] {
  cursor: no-drop;
}
.ZT-cursorDefault{
  cursor: default;
}
.textleft {
text-align: left;
}

.textright {
text-align: right;
}

.ZT-fullWidth {
  width: 100%;
}

.fullHeight {
height: 100%;
}
.zt-width-50{
  width: 50%;
}
.zt-gap-lg{
  gap: 12px;
}
.ZT-m-0{
margin: 0;
}

.ZT-mt-0{
margin-top: 0;
}

.ZT-mr-5{
    margin-right: 5px;
}
.ZT-ml-5{
    margin-left: 5px;
}
.ZT-mt-5{
    margin-top: 5px;
}
.ZT-mt-20{
    margin-top: 20px;
}
.ZT-mb-6{
    margin-bottom: 6px;
}
.ZT-mb-15{
    margin-bottom: 15px;
}
.ZT-mb-10{
    margin-bottom: 10px;
}
.ZT-mx-10{
    margin-left: 10px;
    margin-right: 10px;
}
.ZT-m0{
  margin: 0;
}
.ZT-mR8{
  margin-inline-end: 8px;
}
.ZT-mRL10{
    margin: 0 10px;
}
.ZT-mRL16{
  margin: 0 16px;
}
.ZT-mRL12{
  margin: 0 12px;
}
.ZT-mRL5{
    margin: 0 5px;
}
.ZT-mRL8{
    margin: 0 8px
}
.ZT-mRL4{
  margin: 0 4px
}
.ZT-mT15{
  margin-top: 15px;
}
.ZT-mL8{
  margin-inline-start: 8px;
}
.ZT-mT8{
  margin-top: 8px;
}
.ZT-mT12{
  margin-top: 12px;
}
.ZT-mT20{
  margin-top: 20px;
}
.ZT-mT8{
  margin-top: 8px;
}
.ZT-my-15{
    margin-top: 15px;
    margin-bottom: 15px;
}
.ZT-mrl-8{
    margin: 0 8px
}
.ZT-mRL10{
    margin: 0 10px;
}
.ZT-mRL5{
    margin: 0 5px;
}
.ZT-mRL8{
    margin: 0 8px
}

.ZT-m0{
    margin: 0;
}
.ZT-mB8{
  margin-bottom: 8px
}
.ZT-mB10{
    margin-bottom: 10px
}
.ZT-mB12{
  margin-bottom: 12px
}
.ZT-mB16{
  margin-bottom: 16px
}
.ZT-mB24{
margin-bottom: 24px
}
.zt-m-auto{
    margin: auto;
}
.ZT-my-20{
    margin-top: 20px;
    margin-bottom: 20px;
}
.ZT-px-5{
    padding-left: 5px;
    padding-right: 5px;
}

.ZT-font-normal{
    font-weight: normal;
}
.ZT-font-semibold{
    font-weight: 500;
}  
.ZT-font-bold{
    font-weight: 600;
}

.ZT-font12{
  font-size: 12px;
}

.ZT-font14{
  font-size: 14px;
}
.zt-font15{
  font-size: 15px;
}
/*** color ***/
.text-grey85{
    color: var(--lightGrey85);
}   
.zt-text-grey53{
  color: var(--lightGrey53);
}
.icon-grey85{
    fill: var(--lightGrey85);
}
.icon-grey53{
  fill: var(--lightGrey53);
}

.ZT-whiteColor{
    color: #fff
}

.ZT-textBlack{
    color: #282828;
}
.zt-icon-black{
  fill: #282828;
}

.ZT-textPrimary3E{
    color: var(--color3E);
}
.ZT-textSecondary7C{
    color: var(--color7C);
}
.ZT-bgWhite{
    background-color: #fff;
}

.ZT-bgGrey{
    background-color: #858585;
}

.ZT-bgTransparent{
    background: transparent;
}

/*** layout style start ***/
.ZT-height-inherit {
    height: inherit;
  }

.ZT-d-table {
display: table;
}

.ZT-d-inline-flex {
display: inline-flex;
}

.ZT-d-inline {
display: inline;
}

.ZT-inlineBlock{
display: inline-block
}


.ZT-dflex {
display: flex
}

.ZT-align-center{
    align-items: center;
}

.ZT-dflex-center-center{
display: flex;
align-items: center;
justify-content: center;
}

.ZT-dflex-center-spacebetween {
display: flex;
align-items: center;
justify-content: space-between;
}

/* flexbox */
.ZT-flex-row {
  flex-direction: row;
}

.ZT-flex-column {
  flex-direction: column;
}

.ZT-flex-row-reverse {
  flex-direction: row-reverse;
}

.ZT-flex-column-reverse {
  flex-direction: column-reverse;
}

.ZT-flex-wrap {
  flex-wrap: wrap;
}

.ZT-flex-nowrap {
  flex-wrap: nowrap;
}

.ZT-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.ZT-flex-1 {
  flex: 1;
}


.ZT-justify-content-start {
justify-content: flex-start;
}

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

.ZT-justify-content-center {
justify-content: center;
}

.ZT-justify-content-between {
justify-content: space-between;
}

.ZT-justify-content-around {
justify-content: space-around;
}

.ZT-element-center{
top:50%;
left: 50%;
transform: translate(-50%,-50%);
}

/*** overflow ***/
.ZT-overflow-auto {
  overflow: auto;
}

.ZT-overflow-hidden {
  overflow: hidden;
}

.ZT-overflow-visible {
  overflow: visible;
}

.ZT-overflow-scroll {
  overflow: scroll;
}

.ZT-overflow-x-auto {
  overflow-x: auto;
}

.ZT-overflow-y-auto {
  overflow-y: auto;
}

.ZT-overflow-x-hidden {
  overflow-x: hidden;
}

.ZT-overflow-y-hidden {
  overflow-y: hidden;
}

.ZT-overflow-x-visible {
  overflow-x: visible;
}

.ZT-overflow-y-visible {
  overflow-y: visible;
}

.ZT-overflow-x-scroll {
  overflow-x: scroll;
}

.ZT-overflow-y-scroll {
  overflow-y: scroll;
}

.ZT-boxSize-borderBox{
    box-sizing: border-box;
}

/*** layout style end ***/


/**** gutter style start ***/

.ZT-m-0{
margin: 0;
}

.ZT-mb-16{
    margin-bottom: 16px;
}

.ZT-mb-32{
    margin-bottom: 32px;
}

.ZT-mt-0,
.ZT-my-0 {
margin-top: 0;
}

.ZT-mr-0,
.ZT-mx-0 {
margin-right: 0;
}

.ZT-mb-0,
.ZT-my-0 {
margin-bottom: 0;
}

.ZT-ml-0,
.ZT-mx-0 {
margin-left: 0;
}

.ZT-m-5 {
margin: 5px;
}

.ZT-mt-5,
.ZT-my-5 {
margin-top: 5px;
}

.ZT-mr-5,
.ZT-mx-5 {
margin-right: 5px;
}

.ZT-mb-5,
.ZT-my-5 {
margin-bottom:5px;
}

.ZT-ml-5,
.ZT-mx-5 {
margin-left: 5px;
}

.ZT-m-10 {
margin: 10px;
}

.ZT-mt-10,
.ZT-my-10 {
margin-top: 10px ;
}

.ZT-mr-10,
.ZT-mx-10 {
margin-right: 10px ;
}

.ZT-mb-10,
.ZT-my-10 {
margin-bottom: 10px ;
}

.ZT-ml-10,
.ZT-mx-10 {
margin-left: 10px ;
}

.ZT-m-15 {
margin: 15px ;
}

.ZT-mt-15,
.ZT-my-15 {
margin-top: 15px ;
}

.ZT-mr-15,
.ZT-mx-15 {
margin-right: 15px ;
}

.ZT-mb-15,
.ZT-my-15 {
margin-bottom: 15px ;
}

.ZT-ml-15,
.ZT-mx-15 {
margin-left: 15px ;
}

.ZT-m-20 {
margin: 20px;
}

.ZT-mt-20,
.ZT-my-20 {
margin-top: 20px;
}

.ZT-mr-20,
.ZT-mx-20 {
margin-right: 20px;
}

.ZT-mb-20,
.ZT-my-20 {
margin-bottom: 20px;
}

.ZT-ml-20,
.ZT-mx-20 {
margin-left: 20px;
}

.ZT-m-25 {
margin: 25px ;
}

.ZT-mt-25,
.ZT-my-25 {
margin-top: 25px ;
}

.ZT-mr-25,
.ZT-mx-25 {
margin-right: 25px ;
}

.ZT-mb-25,
.ZT-my-25 {
margin-bottom: 25px ;
}

.ZT-ml-25,
.ZT-mx-25 {
margin-left: 25px ;
}

.ZT-mt-30,
.ZT-my-30 {
margin-top: 30px ;
}

.ZT-mr-30,
.ZT-mx-30 {
margin-right: 30px ;
}

.ZT-mb-30,
.ZT-my-30 {
margin-bottom: 30px ;
}

.ZT-ml-30,
.ZT-mx-30 {
margin-left: 30px ;
}

.ZT-m-40 {
margin: 40px ;
}

.ZT-mt-40,
.ZT-my-40 {
margin-top: 40px ;
}

.ZT-mr-40,
.ZT-mx-40 {
margin-right: 25px ;
}

.ZT-mb-40,
.ZT-my-40 {
margin-bottom:40px ;
}

.ZT-ml-40,
.ZT-mx-40 {
margin-left: 40px ;
}

.ZT-m-8 {
  margin: 8px;
  }

  .ZT-mt-8,
  .ZT-my-8 {
  margin-top: 8px;
  }

  .ZT-mr-8,
  .ZT-mx-8 {
  margin-right: 8px;
  }

  .ZT-mb-8,
  .ZT-my-8 {
  margin-bottom:8px;
  }

  .ZT-ml-8,
  .ZT-mx-8 {
  margin-left: 8px;
  }

  .ZT-m-16 {
  margin: 16px;
  }

  .ZT-mt-16,
  .ZT-my-16 {
  margin-top: 16px ;
  }

  .ZT-mr-16,
  .ZT-mx-16 {
  margin-right: 16px ;
  }

  .ZT-mb-16,
  .ZT-my-16 {
  margin-bottom: 16px ;
  }

  .ZT-ml-16,
  .ZT-mx-16 {
  margin-left: 16px ;
  }

  .ZT-m-24 {
  margin: 24px ;
  }

  .ZT-mt-24,
  .ZT-my-24 {
  margin-top: 24px ;
  }

  .ZT-mr-24,
  .ZT-mx-24 {
  margin-right: 24px ;
  }

  .ZT-mb-24,
  .ZT-my-24 {
  margin-bottom: 24px ;
  }

  .ZT-ml-24,
  .ZT-mx-24 {
  margin-left: 24px ;
  }

  .ZT-m-32 {
  margin: 32px;
  }

  .ZT-mt-32,
  .ZT-my-32 {
  margin-top: 32px;
  }

  .ZT-mr-32,
  .ZT-mx-32 {
  margin-right: 32px;
  }

  .ZT-mb-32,
  .ZT-my-32 {
  margin-bottom: 32px;
  }

  .ZT-ml-32,
  .ZT-mx-32 {
  margin-left: 32px;
  }

.ZT-p-0 {
padding: 0 ;
}

.ZT-pt-0,
.ZT-py-0 {
padding-top: 0 ;
}

.ZT-pr-0,
.ZT-px-0 {
padding-right: 0 ;
}

.ZT-pb-0,
.ZT-py-0 {
padding-bottom: 0 ;
}

.ZT-pl-0,
.ZT-px-0 {
padding-left: 0 ;
}

.ZT-p-5 {
padding: 5px ;
}

.ZT-pt-5,
.ZT-py-5 {
padding-top: 5px ;
}

.ZT-pr-5,
.ZT-px-5 {
padding-right: 5px ;
}

.ZT-pb-5,
.ZT-py-5 {
padding-bottom: 5px ;
}

.ZT-pl-5,
.ZT-px-5 {
padding-left: 5px ;
}

.ZT-p-10 {
padding: 10px ;
}

.ZT-pt-10,
.ZT-py-10 {
padding-top: 10px ;
}

.ZT-pr-10,
.ZT-px-10 {
padding-right: 10px ;
}

.ZT-pb-10,
.ZT-py-10 {
padding-bottom: 10px ;
}

.ZT-pl-10,
.ZT-px-10 {
padding-left: 10px ;
}

.ZT-p-15 {
padding: 15px ;
}

.ZT-pt-15,
.ZT-py-15 {
padding-top: 15px ;
}

.ZT-pr-15,
.ZT-px-15 {
padding-right: 15px ;
}

.ZT-pb-15,
.ZT-py-15 {
padding-bottom: 15px ;
}

.ZT-pl-15,
.ZT-px-15 {
padding-left: 15px ;
}

.ZT-p-20 {
padding: 20px;
}

.ZT-pt-20,
.ZT-py-20 {
padding-top: 20px;
}

.ZT-pr-20,
.ZT-px-20 {
padding-right: 20px;
}

.ZT-pb-20,
.ZT-py-20 {
padding-bottom: 20px;
}

.ZT-pl-20,
.ZT-px-20 {
padding-left: 20px;
}

.ZT-p-25 {
padding: 25px ;
}

.ZT-pt-25,
.ZT-py-25 {
padding-top: 25px ;
}

.ZT-pr-25,
.ZT-px-25 {
padding-right: 25px ;
}

.ZT-pb-25,
.ZT-py-25 {
padding-bottom: 25px ;
}

.ZT-pl-25,
.ZT-px-25 {
padding-left: 25px ;
}
.ZT-p-24{
  padding: 24px;
}
.ZT-gap-4{
  gap: 4px;
}
.ZT-gap-8{
  gap: 8px;
}
.ZT-gap-12{
  gap: 12px;
}
.ZT-gap-16{
  gap: 16px;
}
/**** gutter style end ***/

.ZT-img-responsive {
    max-width: 100%;
}


/*** cursor ***/
.ZT-cursor-auto {
  cursor: auto;
}

.ZT-cursor-default {
  cursor: default;
}

.ZT-cp{
    cursor: pointer;
}

.DG-cursor-text{
    cursor: text;
}

.ZT-cursor-wait {
  cursor: wait;
}

.ZT-cursor-move {
  cursor: move;
}

.ZT-cursor-not-allowed {
  cursor: not-allowed;
}

.ZT-pointer-events-none {
  pointer-events: none;
}

.ZT-pointer-events-auto {
  pointer-events: auto;
}

/*** user select ***/
.ZT-select-none {
  user-select: none;
}

.ZT-select-text {
  user-select: text;
}

/*** opacity ****/
.ZT-opacity-0 {
  opacity: 0;
}

.ZT-opacity-25 {
  opacity: 0.25;
}

.ZT-opacity-50 {
  opacity: 0.50;
}

.ZT-opacity-75 {
  opacity: 0.75;
}

.ZT-opacity-100 {
  opacity: 1;
}

/*** position ***/
.ZT-pos-sticky {
    position: sticky;
  }

  .ZT-pos-t {
    top: 0;
  }

  .ZT-pos-r {
    right: 0;
  }

  .ZT-pos-b {
    bottom: 0;
  }

  .ZT-pos-l {
    left: 0;
  }

  .ZT-pos-y {
    top: 0;
    bottom: 0;
  }

  .ZT-pos-x {
    right: 0;
    left: 0;
  }

  .ZT-pos {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }

  .ZT-pos-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  /*** border ***/
.ZT-border-0 {
border: 0 ;
}

.ZT-border-top-0 {
border-top: 0 ;
}

.ZT-border-right-0 {
border-right: 0 ;
}

.ZT-border-bottom-0 {
border-bottom: 0 ;
}

.ZT-border-left-0 {
border-left: 0 ;
}

.ZT-rounded-circle {
border-radius: 50%;
}

.ZT-rounded-0 {
border-radius: 0;
}

.ZT-text-lowercase {
text-transform: lowercase ;
}

.ZT-text-uppercase {
text-transform: uppercase ;
}

.ZT-text-capitalize {
text-transform: capitalize ;
}


.ZT-text-underline {
  text-decoration: underline;
}

.ZT-text-line-through {
  text-decoration: line-through;
}

.ZT-text-no-underline {
  text-decoration: none;
}

.ZT-z-index-neg-1{
    z-index: -1;
}

.ZT-z-index-0{
    z-index: 0;
}

.ZT-z-index-1{
    z-index: 1;
}

.ZT-z-index-2{
    z-index: 2;
}

.ZT-z-index-3{
    z-index: 3;
}

.ZT-z-index-4{
    z-index: 4;
}

.ZT-z-index-5{
    z-index: 5;
}

.ZT-z-index-9{
    z-index: 9;
}

.ZT-z-index-99{
    z-index: 99;
}

.ZT-z-index-999{
    z-index: 999;
}


/*** transform rotate ***/

.ZT-rotate-0 {
  transform: rotate(0deg);
}

.ZT-rotate-45 {
  transform: rotate(45deg);
}

.ZT-rotate-neg-45 {
  transform: rotate(-45deg);
}

.ZT-rotate-90 {
  transform: rotate(90deg);
}

.ZT-rotate-neg-90 {
  transform: rotate(-90deg);
}

.ZT-rotate-180 {
  transform: rotate(180deg);
  transition: transform .3s;
}

.ZT-rotate-neg-180 {
  transform: rotate(-180deg);
}

.ZT-vertical-flip {
  transform: rotateX(180deg);
}
.ZT-overlay:before{
    position: fixed;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 5;
}
.ZT-textUppercase{
    text-transform: uppercase
}
.ZT-flexAlignJusCenter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.ZT-pricingGraidentFill{
    fill:var(--pricingGradient);
}
.ZT-pricingGraidentBg{
background:var(--pricingGradient);
}
/*Info dialog(pricing storage)*/
.ZT-infoDropdown{
  /* border:1px solid var(--lightGreyE8);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.07);
  background: var(--whiteFF);
  padding: 20px;
  border-radius: 8px; */
  min-width: 50px;
  min-height: 50px;
  z-index: 2;
  width: 315px;
  padding-bottom: 8px;
}
.ZT-infoDropdownInner{
   border:1px solid var(--lightGreyE8);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.07);
  background: var(--whiteFF);
  padding: 20px;
  border-radius: 8px;
}

.ZT-zindex2{
    z-index: 2;
}
.zt-zindex3{
    z-index: 3;
}
/*text overflow*/
.ZT-textEllipsis{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*Focus*/
.ZT-outlineNone:focus{
  outline: none;
} /*dropdown arrow*/
 .ZT-dropbtnPanel{
  position: relative;
  display: inline-flex;
}
/*Border radius*/
.ZT-borderRadisPremium{
  border-radius: 16px;
}
.ZT-borderRadisExtraLarge{
  border-radius: 12px;
}
.ZT-borderRadisLarge{
  border-radius: 6px;
}
.ZT-borderRadisMedium{
  border-radius: 4px;
}
/*beta logo*/
.ZT-betaTag{
  background: var(--primaryGreen);
  height: 14px;
  outline: 1px solid #fff;
  outline-offset: 0px;
  padding: 0 5px;
  font-size: 10px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
/*Animation rotate*/
@-webkit-keyframes animationRotate{
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ZT-animationRotate {
  -webkit-animation: animationRotate 3s linear infinite;
  -moz-animation: animationRotate 3s linear infinite;
  -ms-animation: animationRotate 3s linear infinite;
  -o-animation: animationRotate 3s linear infinite;
  animation: animationRotate 3s linear infinite;
}
/*Line infinitie loader*/
.ZT-lineLoader {
  width: 100%;
  height: 5px;
  position: absolute;
  overflow: hidden;
  background: linear-gradient(90deg,#a056f7 0,#20c1e4 78%,#00d4ff 100%) padding-box,linear-gradient(0deg,#a6fcff 0,#db94ff 100%) border-box;
  /* border-radius: 20px; */
  top: 0px;
}
.ZT-lineLoader:before {
content: "";
position: absolute;
left: -50%;
height: 5px;
width: 40%;
background:linear-gradient(90deg,#a056f7 0,#db94ff 78%,#00d4ff 100%) padding-box,linear-gradient(0deg,#a6fcff 0,#a056f7 100%) border-box;
-webkit-animation: lineLoaderAnimation 1s linear infinite;
-moz-animation: lineLoaderAnimation 1s linear infinite;
animation: lineLoaderAnimation 1s linear infinite;
}

@keyframes lineLoaderAnimation {
0% {
    left: -40%;
}
50% {
    left: 20%;
    width: 80%;
}
100% {
    left: 100%;
    width: 100%;
}
}
.ZT-dropbtn{
  background-color: #fff;
  fill: var(--primaryGreen);
  color: var(--primaryGreen);
  border-color: #ddd;
  border-width: 1px;
  padding-right: 28px;
  box-shadow: none;
  padding-left: 8px;
}
.ZT-dropbtnArrow{
  background: var(--lightGreyf6);
  fill: var(--primaryGreen);
  position: absolute;
  top: 4px;
  right: 4px;
  height: 20px;
  width: 20px;
  z-index: 1;
  border-radius: 50%;
}
/*Dropdown inner loader*/
.ZT-dropOptionLoaderRec{
  width: 166px;
  height: 22px;
  border-radius: 4px;
  margin: 0 8px 0px;
}
.ZT-dropOptionLoaderCircle {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.ZT-dropOptionLoaderPanel .ZT-dropOptionLoader{
  display: none;
}
.ZT-delayLoaderDropDown ~ .ZT-dropOptionLoaderPanel .ZT-dropOptionLoader,
.ZT-delayLoaderDropDownEnd ~ .ZT-dropOptionLoaderPanel .ZT-dropOptionLoader{
  display: flex;
}
/* .ZT-delayLoaderDropDown ~ .ZT-dropOptionLoaderPanel{
  animation-name: delayloaderFadeIn;
  animation-delay: var(--circularLoaderTime);
  animation-fill-mode: forwards;
  visibility: hidden;
}
@keyframes delayloaderFadeIn {
  0% {
    visibility: hidden;

  }
  100% {
    visibility: visible;
  }

} */
.ZT-delayLoaderDropDown.ZT-dropDownOptionContainer,
.ZT-delayLoaderDropDownEnd.ZT-dropDownOptionContainer{
  display: none;
}
.Grid-cmDrop-panel ul .ZT-dropOptionLoader:hover {
  background: transparent;
}
/*Saving text loader*/
.ZT-savingTextLoader .ZT-name{
  color: var(	--lightGrey85);
  margin: 0 6px;
  font-size: 12px;
  font-style: italic;
}
.ZT-savingTextLoader{
  display: none;
}
.ZTTL-active.ZT-savingTextLoader{
  display: flex;
}
/*Border radius*/
.zt-border-radius-extra-max{
  border-radius: 12px;
}
.ZT-borderRadisExtraLarge{
  border-radius: 8px;
}
.ZT-borderRadisLarge{
  border-radius: 6px;
}
.ZT-borderRadisMedium{
  border-radius: 4px;
}
/*waring info box*/
.ZT-waringInfo{
  background: var(--warningYellow);
  padding: 6px 10px;
  line-height: 20px;
  color: var(--lightGrey53);
}
.zt-primary-info{
    background: rgba(0, 110, 194, 0.10);
}
/*star Mandatory*/
.ZT-starMandatory{
  color: var(--darkerrorRed);
  }
  .ZT-warningText{
    color: #B05807;
    fill: #B05807;
    font-size: 11px;
  }

/*time picker*/
.ZT-timePickerPanel{
  box-shadow: 2px 4px 13px 0px rgba(0, 0, 0, 0.10);
  background: #fff;
  padding: 14px 10px 10px;
}
.ZTTP-header {
  color: var(--lightGrey53);
  padding: 10px;
  border-bottom: 1px solid #E8E8E8;
}
.ZT-timePickerDrop{
  width: 70px;
  margin-inline-end: 8px;
}
.ZTTP-listOption,.ZTTP-listOptionBtn{
  width: 60px;
  height: 40px;
  font-size: 14px;
}
.ZTTP-listOption:hover{
  background: #F4F5F6;
}
.ZTTP-listOption.ZT-active .ZTTP-listOptionBtn{
  background:var(--primaryGreen);
  color: #fff;
}
.ZTTP-listPanel {
  overflow-y: auto;
  height: 250px;
}
/*Learn more*/
.ZT-learnMore{
  color: #006EC2;
  text-decoration: underline;
}
.ZT-textNoWrap{
  white-space: nowrap;
}
/*Note info*/
.zt-note-info{
  color: var(--lightGrey53);
}

/*Radio custom*/
.ZT-radioPanelInner {
    display: flex;
    position: relative;
    padding-inline-start: 19px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .ZT-radioPanelInner .ZTR-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  .ZTR-inputCustom {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #FAFAFA;
    border-radius: 50%;
    border: 1px solid #CCC;
  }
  .ZT-radioPanelInner:hover .ZTC-input ~ .ZTR-inputCustom {
    background-color: #ccc;
  }
  .ZT-radioPanelInner .ZTR-input:checked ~ .ZTR-inputCustom{
   border-color: var(--primaryGreen);
  }
  .ZTR-inputCustom:after {
    content: "";
    position: absolute;
    display: none;
  }
  .ZT-radioPanelInner .ZTR-input:checked ~ .ZTR-inputCustom:after {
    display: block;
  }
  .ZT-radioPanelInner .ZTR-inputCustom:after {
    transform: translate(2px,2px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondaryGreen);
  }
   /*placeholder*/
   .ZT-placeHolder,.ZT-placeHolderColor{
    color: #757575
  }
/*Accordion*/
.zt-edit-accordion{
  background: #F7F9FB;
  padding: 8px 10px 14px;
}
/*dropdown tab*/
.ZTDD-tabPanel {
  position: relative;
}
.ZTDD-tabPanel::before {
  content: "";
  border-bottom: 1px solid #ddd;
  width: 100%;
  position: absolute;
  top: 26px;
  z-index: 0;
}
.ZTDD-tabRadio{
  position: absolute;
  left: -100%;
}
.ZTDDT-headerLabel {
 border-bottom: 2px solid transparent; 
 padding: 8px 20px;
 position: relative;
}
.ZTDDT-content {
  height: 0em;
  overflow: hidden;
}
.ZTDD-tabRadio:checked + .ZTDDT-headerLabel {
  color: var(--primaryGreen);
  font-weight: var(--fontWeight500);
  border-bottom: 2px solid var(--primaryGreen); 
}
#ZTDD-tab1:checked ~ .ZTDD-tabContainer #ZTDD-tab1Container {
  height: auto;
  padding: 10px;
}

#ZTDD-tab2:checked ~ .ZTDD-tabContainer #ZTDD-tab2Container {
  height: auto;
  padding: 10px;
}

#ZTDD-tab3:checked ~ .ZTDD-tabContainer #ZTDD-tab3Container {
  height: auto;
  padding: 10px;
}
.ZTDD-tabContainer {
  margin-top: 10px;
}
 /*left right info*/
 .ZT-infoDialagRL{
  padding: 12px;
}
/*icon circle text*/
.ZT-iconTextOption .ZT-icon {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  overflow: hidden;
}
.ZT-iconTextOption .ZT-img{
  object-fit: contain;
  height: 13px;
}
/*divider*/
.ZT-divider{
  height: 1px;
  width: 100%;
}
/*secondary heading*/
.ZT-secondaryHeading{
  color: var(--lightGrey53);
  font-size: 12px;
}
/*token*/
.ZTT-option{
  background: #EBEDF5;
  padding: 3px 6px;
  font-size: 11px;
  display: inline-flex;
  white-space: nowrap;
  margin-inline-end: 8px;
}
.zt-token-img-text .dg-selectbox__inner{
  max-width: 265px;
}
.zt-token-img-text .dg-token-input{
  height: 26px;
  border-radius: 12px;
  padding-inline-start: 0;
  padding-inline-end: 0;
}
.zt-token-input__img{
  width: var(--token-input-img-width);
  height: var(--token-input-img-height);
}
.zt-token-img-text .zt-token-input__img{
  --token-input-img-width: var(--token-input-item-width);
  --token-input-img-height: var(--token-input-item-height);
  width: var(--token-input-img-width);
  height: var(--token-input-img-height);
  border-radius: 50%;
  margin: 0;
}
.ZTCL-channelToken .zt-token-input__img,.zt-token-input__icon-container .zt-token-input__icon{  
  width: 13px;
  height: 13px;
  border-radius: 0;
}
.zt-token-img-text .dg-token-input__label{
  padding-inline-start: 6px;
  padding-inline-end: 12px;
  flex: 1;
}
.zt-token-input__item-container {
  display: flex;
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 1px;
  width: var(--token-input-item-width);
  height: var(--token-input-item-height);
  /* overflow: hidden; */
}
.zt-token-img-text .zt-token-input__item-container{
  --token-input-item-width: 22px;
  --token-input-item-height: 22px;
}
.ZT-closeOnHover .dg-token-input__remove-icon{
  position: absolute;
  background: #e4e1f4;
  display: none;
  border-radius: 50%;
}
.ZT-closeOnHover .dg-token-input:hover .dg-token-input__remove-icon{
  display: flex;
}
/*dropdown tab */
.ZT-iconTextOption{
  height: 40px;
  padding: 0 8px;
  border-radius: 6px;
}
.ZT-iconTextOption:hover{
  background: var(--colorF4);
}
/*** hide the element using animation  style start***/
.zt-element-animation {
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  opacity: 1;
  max-height: 500px; /* Set to max expected height */
}

.zt-element-animation.zt-element-animation--active {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
}
/*** hide the element using animation  style end***/
/*temp code once merged version history code start*/
/*title description*/
.zt-list__description{
  color: var(--lightGrey53);
}
.zt-list__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lightblue);
  z-index: 1;
  fill:var(--lightGrey53)
}
/*info icon*/
.zt-info-icon .zt-icon{
  fill: var(--color7C);
}
/*temp code once merged version history code end*//*Pulse animation start*/
/*mesh animation*/
.zt-gradient-circle-animation {
  position: relative;
 left: 0;
  /* width: 100vw; */
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.ztg-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: alternate;
  animation-direction: alternate;
}

.ztgc-top-left {
  top: 20%; left: 20%;
  background: #D5E3F8;
  animation-name: ztg-anim1;
}
.ztgc-top-right {
  top: 5%; right: -10%;
  background: #F1D0EB;
  animation-name: ztg-anim2;
}
.ztgc-bottom-left {
  bottom: 50%; left: 20%;
  background: #F1D0EB;
  animation-name: ztg-anim3;
}
.ztgc-bottom-right {
  bottom: 50%; right: 20%;
  background: #d5e3f8;
  animation-name: ztg-anim4;
}

/* Keyframes must be outside any selectors */
@keyframes ztg-anim1 {
  0%   { transform: scale(1) translateY(0);}
  100% { transform: scale(1.3) translateY(-200px);}
}
@keyframes ztg-anim2 {
  0%   { transform: scale(1) translateX(0);}
  100% { transform: scale(1.2) translateX(-300px);}
}
@keyframes ztg-anim3 {
  0%   { transform: scale(1) translateY(0);}
  100% { transform: scale(1.4) translateY(500px);}
}
@keyframes ztg-anim4 {
  0%   { transform: scale(1) translateX(0);}
  100% { transform: scale(1.1) translateX(400px);}
}/*Pulse animation start*/
.zt-animation-pulse{
  animation: pulse .3s  ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.7); }
  to { transform: scale(1); }
}
/*Pulse animation end*/

.zt-cursor-progress{
  opacity: 0.5;
  cursor: progress;
}
/*show more button*/
.zt-show-more--active{
  max-height: 120px;
  overflow: hidden;
}
.zt-show-more--hidden{
  max-height: none;
}
.zt-show-more--active ~ .zt-show-more-btn{
  display: block;
}
.zt-show-more--hidden ~ .zt-show-more-btn{
  display: none;
}
.zt-show-more--hidden ~ .zt-show-less-btn{
  display: block;
}
.zt-show-more-btn,.zt-show-less-btn{
  font-size: 12px;
  text-decoration: underline;
  color: #757575;
  display: none;
}
