* {
    padding: 0;
    margin: 0;
}

body {
    box-sizing: border-box;
    background: #ebebeb;
}

.container {
    transform: translate(120%,30px);
    
    border-radius: 20px;
    /* margin: auto; */
    background: #fff;
    width: 400px;
    height: 510px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.img-content img {
    border-radius: 10px;
    text-align: center;
    width: 360px;
    height: 200px;
    margin-left: 20px;
    margin-top: 20px;
}
.lower-content{
    background: rgb(238, 238, 238);
    border-left: 5px solid purple;
    border-radius: 10px;
    padding: 10px;
    margin:auto;
    width: 330px;
    height: auto;
    margin-top: 20px;
}
.btn{
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 3px;
    background: #ccc;
    color: #000;
}
.btn:hover{
    background: #000;
    color: #fff;
    transition: all .25s ease-in-out;
}
.button{
    text-align: center;
    margin: 30px 20px ;
    
}


/*
pricescard1///////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Rubik&display=swap");

/*==================== VARIABLES CSS ====================*/
:root {
  /*========== Colors ==========*/
  /* Change favorite color - Blue 210 - Purple 250 - Green 142 - Pink 340*/
  --hue-color: 210;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 96%, 54%);
  --first-color-light: hsl(var(--hue-color), 96%, 69%);
  --first-color-alt: hsl(var(--hue-color), 96%, 37%);
  --first-color-lighter: hsl(var(--hue-color), 14%, 96%);
  --title-color: hsl(var(--hue-color), 12%, 15%);
  --text-color: hsl(var(--hue-color), 12%, 35%);
  --text-color-light: hsl(var(--hue-color), 12%, 65%);
  --white-color: #FFF;
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Lato', sans-serif;
  --pricing-font: 'Rubik', sans-serif;
  --biggest-font-size: 1.75rem;
  --normal-font-size: .938rem;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --tiny-font-size: .625rem;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.125rem;
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
    --tiny-font-size: .688rem;
  }
}

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*==================== REUSABLE CSS CLASSES ====================*/
.container {
  max-width: 1024px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

/*==================== CARD PRICING ====================*/
.card {
  padding: 3rem 0;
}

.card__container {
  gap: 3rem 1.25rem;
}

.card__content {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 24px hsla(var(--hue-color), 61%, 16%, 0.1);
  transition: .4s;
}

.card__content:hover {
  box-shadow: 0 16px 24px hsla(var(--hue-color), 61%, 16%, 0.15);
}

.card__header-img {
  width: 30px;
  height: 30px;
}

.card__header-circle {
  width: 40px;
  height: 40px;
  background-color: var(--first-color-lighter);
  border-radius: 50%;
  margin-bottom: var(--mb-1);
  place-items: center;
}

.card__header-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  margin-bottom: var(--mb-0-25);
}

.card__header-title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.card__pricing {
  position: absolute;
  background: linear-gradient(157deg, var(--first-color-light) -12%, var(--first-color) 109%);
  width: 60px;
  height: 88px;
  right: 1.5rem;
  top: -1rem;
  padding-top: 1.25rem;
  text-align: center;
}

.card__pricing-number {
  font-family: var(--pricing-font);
}

.card__pricing-symbol {
  font-size: var(--smaller-font-size);
}

.card__pricing-number {
  font-size: var(--h2-font-size);
}

.card__pricing-month {
  display: block;
  font-size: var(--tiny-font-size);
}

.card__pricing-number, 
.card__pricing-month {
  color: var(--white-color);
}

.card__pricing::after, 
.card__pricing::before {
  content: '';
  position: absolute;
}

.card__pricing::after {
  width: 100%;
  height: 14px;
  background-color: var(--white-color);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.card__pricing::before {
  width: 14px;
  height: 16px;
  background-color: var(--first-color-alt);
  top: 0;
  left: -14px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.card__list {
  row-gap: .5rem;
  margin-bottom: var(--mb-2);
}

.card__list-item {
  display: flex;
  align-items: center;
}

.card__list-icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-right: var(--mb-0-5);
}

.card__button {
  padding: 1.25rem;
  border: none;
  font-size: var(--normal-font-size);
  border-radius: .5rem;
  background: linear-gradient(157deg, var(--first-color-light) -12%, var(--first-color) 109%);
  color: var(--white-color);
  cursor: pointer;
  transition: .4s;
}

.card__button:hover {
  box-shadow: 0 12px 24px hsla(var(--hue-color), 97%, 54%, 0.2);
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .card__content {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .card__content {
    grid-template-rows: repeat(2, max-content);
  }
  .card__button {
    align-self: flex-end;
  }
}

/* For large devices */
@media screen and (min-width: 968px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .card {
    height: 100vh;
    align-items: center;
  }
  .card__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .card__header-circle {
    margin-bottom: var(--mb-1-25);
  }
  .card__header-subtitle {
    font-size: var(--small-font-size);
  }
}




































.elementor-widget-dd-textseparator .elementor-widget-container {
    overflow: hidden;
  }
  .dd-d-textseparator {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    margin: auto;
  }
  body.rtl .dd-d-textseparator {
    flex-direction: row-reverse;
  }
  
  .d-separator-icon-inner i {
    height: 1em;
    width: 1em;
    text-align: center;
    position: relative;
    display: block;
  }
  
  .d-separator-icon-inner i:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .dd-d-textseparator .d-sep-holder {
    flex: 1 1 auto;
    height: 1px;
    min-width: 10%;
    position: relative;
  }
  
  .dd-d-textseparator .d-sep-holder .d-sep-lines {
    border-top-width: 1px;
    display: block;
    height: 1px;
    position: relative;
    top: 1px;
    width: 100%;
  }
  
  .d-separator-title {
    margin: 0;
    -moz-box-flex: 0;
    flex: 0 1 auto;
    line-height: 1em;
    margin: 0;
    overflow-wrap: break-word;
  }
  
  .sep-align-right .sep-right {
    display: none;
  }
  
  .sep-align-left .sep-left {
    display: none;
  }
  
  .d-icon-view-stacked i {
    color: #fff;
  }
  .d-icon-view-framed .d-separator-icon-inner {
    border: 1px solid;
  }
  .d-icon-shape-circle .d-separator-icon-inner {
    border-radius: 50%;
  }
  .d-separator-icon-wrapper,
  .d-separator-title {
    margin: 0 5px !important;
  }
  .d-separator-icon-inner {
    line-height: 1;
  }
  
  /**
  Price Table Css
  **/
  .dd-price-box-wrapper .d-pt-heading,
  .dd-price-box-wrapper .d-pt-sub-heading {
    margin: 5px 0;
    text-align: center;
  }
  .plan-price-shape {
    display: table;
    height: 6em;
    margin: auto;
    width: 6em;
  }
  
  .d-pt-price-box-shape-circle .plan-price-shape,
  .d-pt-price-box-shape-square .plan-price-shape {
    border: 1px solid;
  }
  .d-pt-price-box-shape-circle .plan-price-shape {
    border-radius: 50%;
  }
  .plan-price-block {
    padding: 10px 0;
  }
  .plan-price-shape-inner {
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
  }
  .plan-price-shape-inner > span {
    display: block;
    font-size: 1em;
    text-align: center;
  }
  
  .d-pt-feature-list {
    list-style: outside none none;
    text-align: center;
    margin: 10px 0;
  }
  .d-pt-button-wrapper > a {
    text-align: center;
    display: inline-block;
    line-height: 1;
  }
  .d-pt-button-wrapper {
    text-align: center;
  }
  
  .dd-price-box-wrapper .heading-wrapper,
  .dd-price-box-wrapper .plan-features-wrapper {
    padding: 10px 5px;
  }
  .d-pt-button-wrapper {
    padding: 15px 0;
  }
  .d-pt-button-wrapper a {
    padding: 5px 15px;
    border-radius: 3px;
  }
  .d-pt-align-icon-right {
    float: right;
  }
  .strike-feature {
    text-decoration: line-through;
  }
  
  /**
  Flip Box CSS
  **/
  .d-flip-box {
    width: 100%;
    text-align: center;
  }
  .d-flip-box-wrapper {
    display: inline-block;
    width: 100%;
  }
  .d-flip-box-inner {
    width: 100%;
    height: 200px;
    position: relative;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  
  .d-flip-box-inner .d-flip-box-front,
  .d-flip-box-inner .d-flip-box-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    padding: 10px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
  
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -ms-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }
  .d-flip-box-front {
    z-index: 2;
  }
  .d-flip-box-back {
    z-index: 1;
  }
  
  .d-fb-animate-vertical .d-flip-box-inner .d-flip-box-front {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    -ms-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
  .d-fb-animate-vertical .d-flip-box-inner .d-flip-box-back {
    -webkit-transform: perspective(1000px) rotateX(180deg);
    transform: perspective(1000px) rotateX(180deg);
    -ms-transform: perspective(1000px) rotateX(180deg);
  }
  .d-fb-animate-vertical .d-flip-box-inner:hover .d-flip-box-front {
    -webkit-transform: perspective(1000px) rotateX(180deg);
    transform: perspective(1000px) rotateX(180deg);
    -ms-transform: perspective(1000px) rotateX(180deg);
  }
  .d-fb-animate-vertical .d-flip-box-inner:hover .d-flip-box-back {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    -ms-transform: perspective(1000px) rotateX(0deg);
  }
  
  .d-fb-animate-horizontal .d-flip-box-inner .d-flip-box-front {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    -ms-transform: perspective(1000px) rotateY(0deg);
  }
  .d-fb-animate-horizontal .d-flip-box-inner .d-flip-box-back {
    -webkit-transform: perspective(1000px) rotateY(180deg);
    transform: perspective(1000px) rotateY(180deg);
    -ms-transform: perspective(1000px) rotateY(180deg);
  }
  .d-fb-animate-horizontal .d-flip-box-inner:hover .d-flip-box-front {
    -webkit-transform: perspective(1000px) rotateY(180deg);
    transform: perspective(1000px) rotateY(180deg);
    -ms-transform: perspective(1000px) rotateY(180deg);
  }
  .d-fb-animate-horizontal .d-flip-box-inner:hover .d-flip-box-back {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    -ms-transform: perspective(1000px) rotateY(0deg);
  }
  
  .d-fb-animate-fade .d-flip-box-inner .d-flip-box-front {
    opacity: 1;
  }
  .d-fb-animate-fade .d-flip-box-inner .d-flip-box-back {
    opacity: 0;
  }
  .d-fb-animate-fade .d-flip-box-inner:hover .d-flip-box-front {
    opacity: 0;
  }
  .d-fb-animate-fade .d-flip-box-inner:hover .d-flip-box-back {
    opacity: 1;
  }
  
  .d-flip-box-wrapper:hover .d-flip-box-back,
  .d-flip-box-wrapper:focus .d-flip-box-back {
    z-index: 2;
  }
  .d-flip-box-wrapper:hover .d-flip-box-front,
  .d-flip-box-wrapper:focus .d-flip-box-front {
    z-index: 1;
  }
  .fade .d-flip-box-wrapper .d-flip-box-front {
    opacity: 1;
    transition: 1s;
  }
  .fade .d-flip-box-wrapper .d-flip-box-back {
    opacity: 0;
    transition: 1s;
  }
  .fade .d-flip-box-wrapper:hover .d-flip-box-front,
  .fade .d-flip-box-wrapper:focus .d-flip-box-front {
    opacity: 0;
  }
  .fade .d-flip-box-wrapper:hover .d-flip-box-back,
  .fade .d-flip-box-wrapper:focus .d-flip-box-back {
    opacity: 1;
  }
  
  .d-fb-animate-flip .d-flip-box-wrapper {
    perspective: 800px;
  }
  .d-fb-animate-flip .d-flip-box-inner {
    transform-style: preserve-3d;
    transform: rotateX(0) rotateY(0) rotateZ(0);
    transition: 1s;
  }
  .d-fb-animate-flip .d-flip-box-front {
    transform: translate3d(0, 0, 1px);
  }
  .d-fb-animate-flip .d-flip-box-back {
    transform: rotateY(180deg) translate3d(0, 0, 0);
  }
  .d-fb-animate-flip .d-flip-box-wrapper:hover .d-flip-box-inner,
  .d-fb-animate-flip .d-flip-box-wrapper:focus .d-flip-box-inner {
    transform: rotateY(180deg);
  }
  .up .d-flip-box-front {
    transform: translate3d(0, 0, 1px);
  }
  .up .d-flip-box-back {
    transform: rotateX(180deg) translate3d(0, 0, 0);
  }
  .up .d-flip-box-wrapper:hover .d-flip-box-inner,
  .up .d-flip-box-wrapper:focus .d-flip-box-inner {
    transform: rotateX(180deg);
  }
  
  .box .d-flip-box-front {
    transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
  }
  .box .d-flip-box-back {
    transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
  }
  .box.up .d-flip-box-back {
    transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
  }
  
  .hideback .d-flip-box-front,
  .hideback .d-flip-box-back {
    backface-visibility: hidden;
  }
  .d-fb-animate-nananana .d-flip-box-wrapper {
  }
  .d-fb-animate-nananana .d-flip-box-wrapper:hover .d-flip-box-front,
  .d-fb-animate-nananana .d-flip-box-wrapper:focus .d-flip-box-front {
    z-index: 10;
    animation: batman 1s 2 alternate linear;
  }
  
  /* Cube Animation */
  
  .d-fb-animate-flipcard .d-flip-box-front,
  .d-fb-animate-flipcard .d-flip-box-back {
    transition: transform 0.4s ease;
    transform-origin: center center -150px;
    -webkit-transform-origin: center center -150px;
  }
  
  /* top to down */
  
  .flipcard-rotate-top-down .d-flip-box-front {
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  .flipcard-rotate-top-down .d-flip-box-back {
    transform: perspective(0px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-top-down
    .d-flip-box-wrapper:hover
    .d-flip-box-front {
    transform: perspective(0px) rotateX(-90deg) rotateY(0) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-top-down
    .d-flip-box-wrapper:hover
    .d-flip-box-back {
    z-index: 99999;
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0);
  }
  
  /* down to top */
  .flipcard-rotate-down-top .d-flip-box-front {
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  .flipcard-rotate-down-top .d-flip-box-back {
    transform: perspective(0px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-down-top
    .d-flip-box-wrapper:hover
    .d-flip-box-front {
    transform: perspective(0px) rotateX(90deg) rotateY(0) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-down-top
    .d-flip-box-wrapper:hover
    .d-flip-box-back {
    z-index: 99999;
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  
  /* left to right */
  
  .flipcard-rotate-left-right .d-flip-box-front {
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  .flipcard-rotate-left-right .d-flip-box-back {
    transform: perspective(0px) rotateX(0deg) rotateY(-90deg) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-left-right
    .d-flip-box-wrapper:hover
    .d-flip-box-front {
    transform: perspective(0px) rotateX(0deg) rotateY(90deg) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-left-right
    .d-flip-box-wrapper:hover
    .d-flip-box-back {
    z-index: 99999;
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  
  /* right to left */
  
  .flipcard-rotate-right-left .d-flip-box-front {
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  .flipcard-rotate-right-left .d-flip-box-back {
    transform: perspective(0px) rotateX(0deg) rotateY(90deg) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-right-left
    .d-flip-box-wrapper:hover
    .d-flip-box-front {
    transform: perspective(0px) rotateX(0deg) rotateY(-90deg) rotateZ(0deg);
  }
  .d-fb-animate-flipcard.flipcard-rotate-right-left
    .d-flip-box-wrapper:hover
    .d-flip-box-back {
    z-index: 99999;
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  
  @keyframes batman {
    0% {
      transform: scale(1, 1) rotateZ(0);
    }
    100% {
      transform: scale(0, 0) rotateZ(720deg);
      opacity: 0;
    }
  }
  
  .d-flip-box-front i,
  .d-flip-box-back i {
    font-size: 32px;
    height: 1em;
    width: 1em;
    position: relative;
    display: block;
  }
  
  .d-flip-box-front i:before,
  .d-flip-box-back i:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
  }
  .d-fb-icon-view-framed {
    border: 1px solid #92be43;
  }
  .d-fb-icon-shape-circle {
    border-radius: 50%;
  }
  .d-flip-box-wrapper .icon-wrapper {
    display: inline-block;
    padding: 10px;
    line-height: 1;
  }
  
  .d-flip-box-wrapper .front-icon-title,
  .d-flip-box-wrapper .back-icon-title {
    margin: 10px auto;
    color: #fff;
  }
  
  .d-flip-box-wrapper .flipbox-content {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .flipbox-content p {
    margin-bottom: 10px;
  }
  .d-fb-button {
    display: inline-block;
    padding: 5px 10px;
  }
  
  .d-flip-box-front {
    background: #a0ce4e;
  }
  .d-flip-box-back {
    background: #73b9dc;
  }
  
  @media only screen and (max-width: 768px) {
    .flipbox-content,
    .d-flip-box-front,
    .d-flip-box-back {
      cursor: pointer;
      overflow: visible !important;
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
    }
  }
  /**
  Shape Separator
  **/
  .elementor-widget-dd-shape-separator svg {
    display: block;
  }
  
  /**
      Post List
  **/
  .dd-d-pl-wrapper ul {
    margin: 0;
  }
  .dd-d-pl-wrapper ul li {
    list-style: none;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .d-pl-img-align-none .d-pl-image-wrapper a {
    text-align: center;
  }
  .d-pl-title {
    margin: 0;
  }
  .d-pl-title a {
    display: block;
  }
  
  .d-pl-readmore a {
    display: inline-block;
    border-radius: 2px;
    color: #fff;
    padding: 4px 8px;
  }
  
  /**
  Animated Text Styles
  **/
  /* --------------------------------
  Primary style
  -------------------------------- */
  
  .d-at-animation-text-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
  }
  
  .d-at-animation-text-wrapper .d-at-animation-text {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
  }
  [data-elementor-device-mode="mobile"] .d-at-animation-text {
    white-space: normal;
  }
  
  .d-at-animation-text-wrapper .d-at-animation-text.is-visible {
    position: relative;
  }
  .no-js .d-at-animation-text-wrapper .d-at-animation-text {
    opacity: 0;
  }
  .no-js .d-at-animation-text-wrapper .d-at-animation-text.is-visible {
    opacity: 1;
  }
  
  .d-animtext-wrapper {
    font-size: 40px;
  }
  
  /**
  Animated Text Styles
  **/
  .d-st-rest-text {
    display: inline-block;
  }
  .d-st-split-text {
    display: inline-block;
  }
  
  body.rtl .d-st-transform-text-title {
    display: flex;
    flex-direction: row-reverse;
  }
  body.rtl .d-text-align-left .d-st-transform-text-title {
    justify-content: flex-start;
  }
  body.rtl .d-text-align-right .d-st-transform-text-title {
    justify-content: flex-end;
  }
  body.rtl .d-text-align-center .d-st-transform-text-title {
    justify-content: center;
  }
  /* --------------------------------
  xtype
  -------------------------------- */
  .d-at-animation.type .d-at-animation-text-wrapper {
    vertical-align: bottom;
    overflow: hidden;
  }
  .d-at-animation.type .d-at-animation-text-wrapper::after {
    /* vertical bar */
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
  }
  .d-at-animation.type .d-at-animation-text-wrapper.waiting::after {
    -webkit-animation: cd-pulse 1s infinite;
    -moz-animation: cd-pulse 1s infinite;
    animation: cd-pulse 1s infinite;
  }
  
  .d-at-animation.type .d-at-animation-text-wrapper.selected::after {
    visibility: hidden;
  }
  
  .d-at-animation.type .d-at-animation-text {
    visibility: hidden;
  }
  .d-at-animation.type .d-at-animation-text.is-visible {
    visibility: visible;
  }
  .d-at-animation.type i {
    position: absolute;
    visibility: hidden;
  }
  .d-at-animation.type i.in {
    position: relative;
    visibility: visible;
  }
  
  @-webkit-keyframes cd-pulse {
    0% {
      -webkit-transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-50%) scale(0.9);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(-50%) scale(0);
      opacity: 0;
    }
  }
  @-moz-keyframes cd-pulse {
    0% {
      -moz-transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    40% {
      -moz-transform: translateY(-50%) scale(0.9);
      opacity: 0;
    }
    100% {
      -moz-transform: translateY(-50%) scale(0);
      opacity: 0;
    }
  }
  @keyframes cd-pulse {
    0% {
      -webkit-transform: translateY(-50%) scale(1);
      -moz-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
      -o-transform: translateY(-50%) scale(1);
      transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-50%) scale(0.9);
      -moz-transform: translateY(-50%) scale(0.9);
      -ms-transform: translateY(-50%) scale(0.9);
      -o-transform: translateY(-50%) scale(0.9);
      transform: translateY(-50%) scale(0.9);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(-50%) scale(0);
      -moz-transform: translateY(-50%) scale(0);
      -ms-transform: translateY(-50%) scale(0);
      -o-transform: translateY(-50%) scale(0);
      transform: translateY(-50%) scale(0);
      opacity: 0;
    }
  }
  
  /**
     After Before Image
  **/
  /* --------------------------------
  Primary style
  -------------------------------- */
  .d-img-comp-container {
    width: 100%;
    position: relative;
    text-align: center;
  }
  .d-img-comp-container img {
    vertical-align: middle;
  }
  .d-img-comp-img {
    /*position: absolute;
      width: 100%;
      height: 100%;
      overflow:hidden;*/
  
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transform: translateZ(0px);
    backface-visibility: hidden;
  }
  .d-img-comp-img img {
    display: block;
    max-width: 100%;
    width: 100%;
  }
  .d-img-comp-slider {
    position: absolute;
    z-index: 9;
    /*set the appearance of the slider:*/
    width: 40px;
    height: 40px;
    background-color: #2196f3;
    opacity: 1;
    border-radius: 50%;
  }
  .icon-horizontal {
    cursor: ew-resize;
  }
  .icon-vertical {
    cursor: n-resize;
  }
  
  .d-img-comp-overlay {
  }
  .mode-horizontal .d-img-comp-overlay img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: auto;
    height: 100% !important;
    max-width: none !important;
  }
  
  .mode-vertical .d-img-comp-overlay img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: auto !important;
    max-width: none !important;
  }
  
  .d-slider-icon,
  .d-img-comp-slider svg {
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 50%;
    color: white;
  }
  .elementor-widget-dd-ab-image {
    text-align: center;
  }
  .elementor-widget-dd-ab-image .elementor-widget-container {
    display: inline-block;
    margin: 0 auto !important;
    overflow: hidden;
  }
  
  .d-text-before {
    position: absolute !important;
    padding: 10px;
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
    color: #d36118;
    z-index: 0;
    background: rgba(255, 255, 255, 0.5);
    margin: 20px;
  }
  
  .d-text-after {
    position: absolute !important;
    padding: 10px;
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
    color: #d36118;
    z-index: 0;
    background: rgba(255, 255, 255, 0.5);
    margin: 20px;
  }
  
  /* Test CSS */
  
  .divTest {
    display: inline-block;
    background-color: #00a0d2;
    padding: 20px;
  }
  
  /*.d-particle-wrapper{*/
  /*    width:100%;*/
  /*    height:100%;*/
  /*    position: absolute;*/
  /*    left:0;*/
  /*    top:0;*/
  /*}*/
  
  /*.particles-js-canvas-el{ height:100%; position:absolute; }*/
  
  .d-particle-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
  .d-particle-wrapper.d-particle-area {
    width: 100%;
    height: 100%;
  }
  
  body:not(.elementor-editor-active) .d-particle-wrapper {
    width: 100%;
    height: 100%;
  }
  
  body:not(.elementor-editor-active)
    .d-particle-wrapper
    .particles-js-canvas-el {
    height: 100%;
    position: absolute;
    z-index: 0;
  }
  body:not(.elementor-editor-active)
    .d-particle-wrapper
    .tsparticles-canvas-el {
    height: 100%;
    position: absolute !important;
    z-index: 0 !important;
  }
  body.elementor-editor-active .d-particle-areas .tsparticles-canvas-el {
    z-index: 0 !important;
    height: 100%;
    width: 100%;
    position: absolute !important;
  }
  /* body.elementor-editor-active .d-particle-areas {
  
  } */
  
  /**
   BG Slider
  **/
  .d-section-bs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
  }
  .d-section-bs-inner {
    width: 100%;
    height: 100% !important;
  }
  
  /**
   Popup
   **/
  .d-popup.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
  }
  
  .d-popup-link {
    padding: 12px 24px;
    color: #fff;
    display: inline-flex;
    line-height: 1;
  }
  
  .d-popup-link svg {
    fill: #fff;
  }
  .d-popup-link:hover {
    color: #fff;
  }
  .d-popup.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
  }
  
  .d-popup .mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
  }
  
  .d-popup .mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  
  .d-popup .mfp-align-top .mfp-container:before {
    display: none;
  }
  
  .d-popup .mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
  }
  .d-modal-content {
    padding: 20px;
  }
  .d-pop-btn-align-left .d-popup-wrapper {
    text-align: left;
  }
  .d-pop-btn-align-right .d-popup-wrapper {
    text-align: right;
  }
  .d-pop-btn-align-center .d-popup-wrapper {
    text-align: center;
  }
  .d-pop-btn-align-justify .d-popup-wrapper {
    text-align: center;
  }
  .d-pop-btn-align-justify .d-popup-wrapper a {
    display: block;
  }
  .d-popup .mfp-inline-holder .mfp-content,
  .d-popup .mfp-ajax-holder .mfp-content {
    width: 50%;
    background-color: #fff;
    cursor: auto;
    overflow: hidden;
  }
  
  .d-popup .mfp-ajax-cur {
    cursor: progress;
  }
  
  .d-popup .mfp-zoom-out-cur,
  .d-popup .mfp-zoom-out-cur .mfp-image-holder .d-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
  }
  
  .d-popup .mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
  }
  
  .d-popup.mfp-auto-cursor .mfp-content {
    cursor: auto;
  }
  
  .d-popup .d-close,
  .d-popup .mfp-arrow,
  .d-popup .mfp-preloader,
  .d-popup .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  
  .mfp-loading.mfp-figure {
    display: none;
  }
  
  .mfp-hide {
    display: none !important;
  }
  
  .d-popup .mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
  }
  .d-popup .mfp-preloader a {
    color: #ccc;
  }
  .d-popup .mfp-preloader a:hover {
    color: #fff;
  }
  
  .mfp-s-ready .mfp-preloader {
    display: none;
  }
  
  .mfp-s-error .mfp-content {
    display: none;
  }
  
  button.d-close,
  button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
  }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  
  .d-popup .d-close {
    width: 28px;
    height: 28px;
    line-height: 1em;
    position: absolute;
    right: 10px;
    top: 10px;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    color: #fff;
    font-size: 28px;
    z-index: 1500;
  }
  .d-close:hover,
  .d-close:focus {
    opacity: 1;
    cursor: pointer;
  }
  .d-close:active {
    top: 1px;
  }
  .d-close:before {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
  }
  .d-popup.d-close-btn-in .d-close {
    color: #fff;
  }
  
  .mfp-image-holder .d-close,
  .mfp-iframe-holder .d-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
  }
  
  .mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }
  
  .mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
  }
  .mfp-arrow:active {
    margin-top: -54px;
  }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
  }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
  }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
  }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
  }
  
  .mfp-arrow-left {
    left: 0;
  }
  .mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px;
  }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
  }
  
  .mfp-arrow-right {
    right: 0;
  }
  .mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px;
  }
  .mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f;
  }
  
  .mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
  }
  .mfp-iframe-holder .d-close {
    top: -40px;
  }
  
  .mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
  }
  
  /* Main image in popup */
  img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
  }
  
  /* The shadow behind the image */
  .d-popup .mfp-figure {
    line-height: 0;
  }
  .d-popup .mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
  }
  .d-popup .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
  }
  .d-popup .mfp-figure figure {
    margin: 0;
  }
  
  .d-popup .mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
  }
  
  .d-popup .mfp-title {
    text-align: left;
    line-height: 1;
    word-wrap: break-word;
    color: #ffffff;
    background-color: #4054b2;
    padding: 20px 20px 20px 20px;
  }
  
  .d-popup .mfp-image-holder .mfp-content {
    max-width: 100%;
  }
  
  .d-popup .mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
  }
  
  @media screen and (max-width: 800px) and (orientation: landscape),
    screen and (max-height: 300px) {
    /**
           * Remove all paddings around the image on small screen
           */
    .mfp-img-mobile .mfp-image-holder {
      padding-left: 0;
      padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
      padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
      top: 0;
      bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
      display: inline;
      margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
      background: rgba(0, 0, 0, 0.6);
      bottom: 0;
      margin: 0;
      top: auto;
      padding: 3px 5px;
      position: fixed;
      box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
      right: 5px;
      top: 3px;
    }
    .mfp-img-mobile .d-close {
      top: 0;
      right: 0;
      width: 35px;
      height: 35px;
      line-height: 35px;
      background: rgba(0, 0, 0, 0.6);
      position: fixed;
      text-align: center;
      padding: 0;
    }
  }
  
  .elementor-element.d-animated-gradient-yes,
  .elementor-element.d-animated-gradient-yes .animated-gradient {
    background-size: 400% 400% !important;
    -webkit-animation: AnimateGradient 15s ease-in-out infinite;
    -moz-animation: AnimateGradient 15s ease-in-out infinite;
    animation: AnimateGradient 15s ease-in-out infinite;
  }
  .animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  @-webkit-keyframes AnimateGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @-moz-keyframes AnimateGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes AnimateGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /*--------------------------------Testimonial Slider----------------------------*/
  
  .d-swiper-outer-wrapper .swiper-slide {
    height: auto;
    overflow: inherit;
  }
  .d-swiper-outer-wrapper .swiper-slide-wrapper,
  .d-swiper-outer-wrapper .testimonial-wrapper {
    height: 100%;
  }
  
  .d-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .d-masonry- .d-grid-item {
    position: relative;
    height: 100%;
  }
  .d-masonry- .d-grid-item .testimonial-wrapper {
    height: 100%;
  }
  .d-grid-container {
    transition: 0.1s all ease;
  }
  .d-grid-container {
    display: inline-block;
  }
  
  .wrapper .content {
    margin: 10px 0;
  } /*------------------------skin-2------------------*/
  .skin-2.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #9c989821;
    min-height: 300px;
    padding: 10px 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #696969;
  }
  .skin-2 .content-wrapper {
    padding: 10px;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    color: #77778e;
  }
  .skin-2 i.before-content,
  .skin-2 i.after-content {
    position: absolute;
  }
  .skin-2 i.before-content {
    top: 10px;
    left: 20px;
  }
  .skin-2 i.after-content {
    bottom: 10px;
    right: 20px;
  }
  .skin-2 blockquote {
    position: relative;
    font-size: 14px;
    padding: 10px;
    font-weight: 500;
    text-align: left;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
  }
  .skin-2 blockquote::before,
  .skin-2 blockquote::after {
    font-family: "FontAwesome";
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
  }
  
  .skin-2 blockquote::before {
    top: 10px;
    left: 20px;
  }
  .skin-2 blockquote::after {
    content: "\201D";
    right: 20px;
  }
  .skin-2 .image-wrapper {
    position: relative;
    max-width: 100%;
    text-align: center;
  }
  .skin-2 img {
    width: 100px;
    border-radius: 25%;
  }
  .skin-2 .detail-wrapper {
    text-align: center;
  }
  .skin-2 .rating-wrapper,
  .skin-2 .title,
  .skin-2 .designation,
  .skin-2 .company {
    padding: 5px 0;
  }
  .skin-2 .rating-wrapper {
    color: #000080;
  }
  
  .skin-2 .title {
    font-weight: 800;
    color: #000000;
  }
  .skin-2 blockquote p {
    margin: 10px 0 !important;
  }
  
  /*------------------------skin-1------------------*/
  
  .skin-1.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: black;
  }
  .skin-1 .content-wrapper {
    order: 0;
  }
  .skin-1 .image-wrapper {
    order: 1;
    text-align: center;
    margin: 15px 0;
  }
  .skin-1 .detail-wrapper {
    order: 2;
  }
  .skin-1 .content-wrapper {
    padding: 10px;
    position: relative;
  }
  .skin-1 i.before-content,
  .skin-1 i.after-content {
    position: absolute;
  }
  .skin-1 i.before-content {
    top: 10px;
    left: 20px;
  }
  .skin-1 i.after-content {
    bottom: 10px;
    right: 20px;
  }
  .skin-1 blockquote {
    position: relative;
    background-color: #ffffff;
    font-size: 14px;
    padding: 10px;
    font-weight: 500;
    text-align: left;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
  }
  .skin-1 blockquote::before,
  .skin-1 blockquote::after {
    font-family: "FontAwesome";
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
  }
  
  .skin-1 blockquote::before {
    top: 10px;
    left: 20px;
  }
  .skin-1 blockquote::after {
    content: "\201D";
    right: 20px;
  }
  .skin-1 .image-wrapper {
    position: relative;
    max-width: 100%;
  }
  .skin-1 img {
    width: 100px;
    height: auto;
    border-radius: 50%;
  }
  .skin-1 .detail-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(157, 163, 156, 0.18);
  }
  .skin-1 .rating-wrapper,
  .skin-1 .title,
  .skin-1 .designation {
    margin: 0 5px;
  }
  .skin-1 .title-wrapper {
    display: flex;
    flex-direction: row;
  }
  .skin-1 .rating-wrapper {
    color: #fecc1f;
  }
  
  /*------------------------skin-4------------------*/
  
  .skin-4.testimonial-wrapper {
    flex-direction: column;
    display: flex;
    background-color: #bfbfb6bd;
    min-height: 300px;
    padding: 10px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #77778e;
  }
  .skin-4 .content-wrapper {
    padding: 10px;
    position: relative;
  }
  .skin-4 .content-wrapper {
    order: 2;
    color: #3c3c3c;
  }
  .skin-4 i.before-content,
  .skin-4 i.after-content {
    position: absolute;
  }
  .skin-4 i.before-content {
    top: 10px;
    left: 20px;
  }
  .skin-4 i.after-content {
    bottom: 10px;
    right: 20px;
  }
  .skin-4 blockquote {
    position: relative;
    font-size: 14px;
    padding: 10px;
    font-weight: 500;
    text-align: left;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
  }
  .skin-4 blockquote::before,
  .skin-4 blockquote::after {
    font-family: "FontAwesome";
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
  }
  
  .skin-4 blockquote::before {
    top: 10px;
    left: 20px;
  }
  .skin-4 blockquote::after {
    content: "\201D";
    right: 20px;
  }
  .skin-4 .image-wrapper {
    position: relative;
    max-width: 100%;
    text-align: center;
  }
  .skin-4 img {
    width: 100px;
    border-radius: 50%;
  }
  .skin-4 .detail-wrapper {
    text-align: center;
  }
  .skin-4 .rating-wrapper,
  .skin-2 .title,
  .skin-2 .designation {
    padding: 5px 0;
  }
  .skin-4 .rating-wrapper {
    color: #690a69;
  }
  
  .skin-4 .title {
    font-weight: 800;
    color: #000000;
  }
  
  /*------------------------skin-3------------------*/
  
  .skin-3.testimonial-wrapper {
    display: flex;
    flex-direction: row;
    background-color: #9c989821;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: black;
    overflow: hidden;
  }
  .skin-3 .content-section {
    display: flex;
    flex-direction: column;
    align-self: center;
  }
  .skin-3 .content-wrapper {
    padding: 10px;
    position: relative;
  }
  .skin-3 i.before-content,
  .skin-2 i.after-content {
    position: absolute;
  }
  .skin-3 i.before-content {
    top: 10px;
    left: 20px;
  }
  .skin-3 i.after-content {
    bottom: 10px;
    right: 20px;
  }
  .skin-3 blockquote {
    position: relative;
    font-size: 18px;
    padding: 10px;
    font-weight: 500;
    text-align: left;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
  }
  .skin-3 blockquote::before,
  .skin-3 blockquote::after {
    font-family: "FontAwesome";
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
  }
  
  .skin-3 blockquote::before {
    top: 10px;
    left: 20px;
  }
  .skin-3 blockquote::after {
    content: "\201D";
    right: 20px;
  }
  .skin-3 .image-wrapper {
    position: relative;
    max-width: 30%;
    max-height: 250px;
    text-align: center;
    align-self: center;
  }
  .skin-3 img {
    width: 100%;
  }
  .testimonial-wrapper .skin-3 .d-person-avatar {
    border-radius: 50%;
  }
  .skin-3 .detail-wrapper {
    text-align: left;
    padding-left: 20px;
  }
  .skin-3 .rating-wrapper,
  .skin-3 .title,
  .skin-3 .designation {
    padding: 3px 0;
  }
  .skin-3 .rating-wrapper {
    color: #800040;
  }
  
  .skin-3 .title {
    font-weight: 800;
  }
  .d-swiper-outer-wrapper .swiper-button-prev {
    -webkit-mask: url(arrow-left.svg) no-repeat 100% 100%;
    mask: url(arrow-left.svg) no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
    background-color: #007aff;
    transform: translateY(-50%);
    margin-top: 0px;
  }
  .d-swiper-outer-wrapper .swiper-container-rtl .swiper-button-prev {
    -webkit-mask: url(arrow-right.svg) no-repeat 100% 100%;
    mask: url(arrow-right.svg) no-repeat 100% 100%;
  }
  .d-swiper-outer-wrapper .swiper-button-next {
    -webkit-mask: url(arrow-right.svg) no-repeat 100% 100%;
    mask: url(arrow-right.svg) no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
    background-color: #007aff;
    transform: translateY(-50%);
    margin-top: 0px;
  }
  .d-swiper-outer-wrapper .swiper-container-rtl .swiper-button-next {
    -webkit-mask: url(arrow-left.svg) no-repeat 100% 100%;
    mask: url(arrow-left.svg) no-repeat 100% 100%;
  }
  .elementor-widget-dd-testimonial-slider
    .d-swiper-outer-wrapper
    .swiper-button-prev,
  .elementor-widget-dd-testimonial-slider
    .d-swiper-outer-wrapper
    .swiper-button-next {
    -webkit-mask: none;
    mask: none;
    -webkit-mask-size: unset;
    mask-size: unset;
    background-image: none;
    background-color: unset;
    width: auto;
    height: auto;
    transform: translateY(-50%);
    margin-top: 0px;
  }
  
  .swiper-container .swiper-button-next i,
  .swiper-container .swiper-button-prev i {
    width: 1em;
    height: 1em;
    text-align: center;
    position: relative;
  }
  
  .elementor-widget-dd-testimonial-slider
    .d-swiper-outer-wrapper
    .d-swiper-button-wrapper {
    position: absolute;
    height: auto;
    line-height: 0;
  }
  
  .d-hpos-right.d-vpos-top .d-swiper-button-wrapper {
    bottom: auto;
    top: 0;
    width: auto;
    right: 0;
  }
  .d-vpos-top.d-hpos-left .d-swiper-button-wrapper {
    bottom: auto;
    top: 0;
    width: auto;
    left: 0;
  }
  .ed-hpos-right.d-vpos-bottom .d-swiper-button-wrapper {
    bottom: 0;
    top: auto;
    width: auto;
    right: 0;
  }
  .d-vpos-bottom.d-hpos-left .d-swiper-button-wrapper {
    bottom: 0;
    top: auto;
    width: auto;
    left: 0;
  }
  .d-hpos-right.d-vpos-middle .d-swiper-button-wrapper {
    bottom: auto;
    top: 50%;
    width: auto;
    right: 0;
  }
  .d-hpos-left.d-vpos-middle .d-swiper-button-wrapper {
    bottom: auto;
    top: 50%;
    width: auto;
    left: 0;
  }
  
  .d-hpos-right .swiper-button-prev,
  .d-hpos-left .swiper-button-prev,
  .d-hpos-right .swiper-button-next,
  .d-hpos-left .swiper-button-next {
    position: relative;
    display: inline-block;
    right: auto;
    left: auto;
  }
  
  .d-hpos-right.d-vpos-bottom .swiper-button-prev,
  .d-hpos-right.d-vpos-bottom .swiper-button-next {
    top: auto;
    bottom: 0;
    transform: unset;
  }
  .d-hpos-right.d-vpos-top .swiper-button-next,
  .d-hpos-right.d-vpos-top .swiper-button-prev {
    top: 0;
    bottom: auto;
    transform: unset;
  }
  .d-hpos-left.d-vpos-top .swiper-button-prev,
  .d-hpos-left.d-vpos-top .swiper-button-next {
    top: 0;
    bottom: auto;
    transform: unset;
  }
  .d-hpos-left.d-vpos-bottom .swiper-button-next,
  .d-hpos-left.d-vpos-bottom .swiper-button-prev {
    top: auto;
    bottom: 0;
    transform: unset;
  }
  .d-hpos-center.d-vpos-bottom .swiper-button-next,
  .d-hpos-center.d-vpos-bottom .swiper-button-prev {
    top: auto;
    bottom: 0;
    transform: unset;
  }
  .d-hpos-center.d-vpos-top .swiper-button-next,
  .d-hpos-center.d-vpos-top .swiper-button-prev {
    top: 0;
    bottom: auto;
    transform: unset;
  }
  
  @media all and (max-width: 900px) {
    .mfp-arrow {
      -webkit-transform: scale(0.75);
      transform: scale(0.75);
    }
    .mfp-arrow-left {
      -webkit-transform-origin: 0;
      transform-origin: 0;
    }
    .mfp-arrow-right {
      -webkit-transform-origin: 100%;
      transform-origin: 100%;
    }
    .mfp-container {
      padding-left: 6px;
      padding-right: 6px;
    }
  }
  
  /* Info Circle */
  .d-info-circle {
    position: relative;
    width: 90%;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
  }
  
  .d-info-circle:before {
    content: "";
    display: block;
    position: absolute;
    top: 4%;
    left: 4%;
    width: 92%;
    height: 92%;
    border-radius: 50%;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    pointer-events: none;
  }
  
  .d-info-circle:after {
    content: "";
    display: block;
    padding-top: 100%;
  }
  
  .d-info-circle .d-ic-icon-wrap {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    z-index: 2;
    line-height: 1em;
    vertical-align: middle;
    overflow: hidden;
    max-width: 100%;
  }
  
  .d-info-circle .d-info-circle-item {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .d-info-circle
    .d-info-circle-item.d-active
    .d-info-circle-item__content-wrap {
    visibility: visible;
    opacity: 1;
    display: flex;
  }
  
  .d-info-circle .d-info-circle-item__content-wrap {
    visibility: visible;
    display: none;
    height: 91%;
    width: 91%;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 50%;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .d-info-circle .d-info-circle-item__content-wrap:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  
  .d-info-circle .d-info-circle-item__content {
    display: inline-block;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 50%;
    vertical-align: middle;
    z-index: 1;
    max-height: 100%;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    width: 75%;
  }
  
  /* Mobile */
  @media screen and (max-width: 767px) {
    .d-info-circle.d-info-circle .d-info-circle-item__content-wrap:before {
      display: none;
    }
    .d-info-circle:before,
    .d-info-circle:after {
      display: none;
    }
  
    .d-info-circle {
      width: 100% !important;
    }
  
    .d-info-circle-wrapper:before,
    .d-info-circle-wrapper:after {
      display: none;
    }
    .d-info-circle .d-ic-icon-wrap {
      display: block;
      text-align: center;
      position: relative !important;
      left: unset !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 10px;
    }
    .d-info-circle-item {
      position: relative !important;
      border-radius: 0 !important;
      padding: 0px;
      margin: 10px 0;
    }
  
    .d-info-circle .d-info-circle-item__content-wrap {
      visibility: visible;
      opacity: 1 !important;
      display: flex !important;
      border-radius: 0 !important;
      border: none !important;
      margin: 0 !important;
      padding-right: 0 !important;
      padding-left: 0 !important;
      padding-bottom: 0 !important;
      width: 100%;
      height: auto;
      line-height: 1.5em;
      position: relative;
      top: unset;
      left: unset;
      transform: unset;
    }
  
    .d-info-circle .d-info-circle-item__content {
      position: relative;
      top: unset;
      left: unset;
      transform: unset;
      width: 100%;
      padding: 10px;
    }
  }
  
  /**
  New Icon
   */
  .d-icon-wrap i {
    height: 1.25em;
    width: 1.25em;
    line-height: 1.25em;
    display: block;
  }
  .d-icon-wrap i img {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
  }
  .d-icon {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    max-width: 100%;
    overflow: hidden;
    padding: 10px;
  }
  
  .d-icon-shape-circle:not(.elementor-element) {
    border-radius: 50%;
  }
  .d-icon-view-framed:not(.elementor-element) {
    border-width: 1px;
    border-style: solid;
  }
  
  .d-icon-wrapper {
    display: flex;
  }
  
  .d-icon-wrapper .d-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
  }
  
  /**
  
  Timeline CSS
  new comment
  
  **/
  
  .d-timeline {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  .d-timline-progress-bar {
    width: 4px;
    background-color: #f45b69;
    top: 0;
    bottom: 50px;
    position: absolute;
    transform: translateX(-50%);
  }
  
  .d-timeline-item {
    position: relative;
    display: flex;
    flex-direction: row;
    padding-bottom: 50px;
  }
  
  .d-timeline-item:last-child {
    padding-bottom: 0px !important;
  }
  
  .d-tl-top .d-timeline-item {
    align-items: flex-start;
  }
  .d-tl-top .d-tl-item-content::before {
    top: 10px;
  }
  .d-timeline-item.image-position-row-reverse .d-tl-item-image,
  .d-timeline-item.image-position-row .d-tl-item-image {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .d-tl-item-meta-wrapper-inner {
    display: none;
  }
  .d-tl-bottom .d-timeline-item {
    align-items: flex-end;
  }
  .d-tl-bottom .d-tl-item-content::before {
    bottom: 10px;
  }
  
  .d-tl-center .d-timeline-item {
    align-items: center;
  }
  .d-tl-center .d-tl-item-content::before {
    bottom: calc(50% - 5px);
  }
  
  .d-layout-center .d-timline-progress-bar {
    left: 50%;
  }
  .d-layout-center .d-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .d-layout-center .d-timeline-item:nth-child(odd) .d-tl-item-meta-wrapper {
    margin-right: 0px;
    margin-left: 0px;
    justify-content: flex-start;
  }
  body:not(.rtl)[data-elementor-device-mode="tablet"]
    .d-layout-center
    .d-timeline-item:nth-child(odd)
    .d-tl-content-wrapper,
  body.rtl[data-elementor-device-mode="tablet"]
    .d-layout-center
    .d-timeline-item:nth-child(even)
    .d-tl-content-wrapper {
    padding-right: 20px;
    padding-left: 0px;
  }
  body:not(.rtl)[data-elementor-device-mode="tablet"]
    .d-layout-center
    .d-timeline-item:nth-child(even)
    .d-tl-content-wrapper,
  body.rtl[data-elementor-device-mode="tablet"]
    .d-layout-center
    .d-timeline-item:nth-child(odd)
    .d-tl-content-wrapper {
    padding-right: 0px;
    padding-left: 20px;
  }
  
  body:not(.rtl) .d-layout-left .d-tl-content-wrapper {
    padding-right: 10px;
    padding-left: 20px;
  }
  
  body.rtl .d-layout-left .d-tl-content-wrapper {
    padding-right: 20px;
    padding-left: 10px;
  }
  .d-layout-left .d-timline-progress-bar {
    display: none;
  }
  .d-layout-left .d-tl-item-meta-wrapper {
    display: none;
  }
  .d-layout-left .d-tl-item-meta-wrapper-inner {
    display: block;
  }
  
  .d-layout-right .d-timline-progress-bar {
    display: none;
  }
  body:not(.rtl) .d-layout-right .d-tl-content-wrapper {
    padding-right: 20px;
    padding-left: 10px;
  }
  
  body.rtl .d-layout-right .d-tl-content-wrapper {
    padding-right: 10px;
    padding-left: 20px;
  }
  
  .d-layout-right .d-tl-icon-wrapper {
    order: 3;
  }
  .d-layout-right .d-tl-item-meta-wrapper {
    display: none;
  }
  .d-layout-right .d-tl-item-meta-wrapper-inner {
    display: block;
  }
  
  .d-tl-item-meta-wrapper {
    flex-grow: 1;
    order: 0;
    flex-basis: 50%;
    flex-direction: initial;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    margin-right: 0px;
  }
  .d-tl-item-meta {
    padding: 0px 20px;
  }
  
  .d-tl-icon-wrapper {
    height: auto;
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
    order: 1;
    margin-left: 0px;
    margin-right: 0px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 999px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .d-tl-content-wrapper {
    flex-grow: 1;
    order: 2;
    flex-basis: 50%;
    position: relative;
    padding-right: 0px;
    padding-left: 20px;
  }
  .d-tl-item-content {
    background: #f4f4f4;
    padding: 25px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: row;
  }
  .d-tl-content {
    display: inline-block;
    position: relative;
    padding: 10px;
    width: 100%;
    color: #000;
  }
  
  .image-position-row
    .d-timeline
    .d-timeline-item:not(.custom-image-style-yes)
    .d-content-inner,
  .image-position-row-reverse
    .d-timeline
    .d-timeline-item:not(.custom-image-style-yes)
    .d-content-inner,
  .d-timeline-item.custom-image-style-yes.image-position-row .d-content-inner,
  .d-timeline-item.custom-image-style-yes.image-position-row-reverse
    .d-content-inner {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    width: 100%;
  }
  .custom-image-style-.image-position-row .d-content-inner,
  .custom-image-style-.image-position-row-reverse .d-content-inner,
  .custom-image-style-no.image-position-row .d-content-inner,
  .custom-image-style-no.image-position-row-reverse .d-content-inner {
    left: unset;
    top: unset;
    transform: unset;
  }
  .d-tl-item-image {
    display: inline-block;
  }
  
  .image-position-row .d-tl-item-image img,
  .image-position-row-reverse .d-tl-item-image img {
    object-fit: cover;
    height: 100% !important;
  }
  .image-position-row .d-tl-item-image,
  .image-position-row-reverse .d-tl-item-image {
    margin: 0px;
  }
  .image-position-column .d-tl-item-image {
    margin: auto;
  }
  .custom-image-style-no.image-position-column .d-tl-item-image,
  .custom-image-style-.image-position-column .d-tl-item-image {
    margin: 0 auto;
  }
  
  .d-pb-inner-line {
    width: 100%;
    background-color: #3d5ac3;
  }
  
  .d-tl-item-content::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 16px 8px 0;
    border-color: transparent #f4f4f4 transparent transparent;
  }
  
  .d-icon-wrapper {
    display: flex;
  }
  
  .elementor-widget-bpel-timeline .d-icon-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
  }
  
  .d-tl-read-more {
    display: inline-block;
    padding: 5px;
    border: 2px solid #000000;
  }
  .image-position-row
    .d-timeline.d-timeline-alternate-yes
    .d-timeline-item:nth-child(odd):not(.custom-image-style-yes)
    .d-tl-item-content {
    flex-direction: row-reverse !important;
  }
  .image-position-row-reverse
    .d-timeline.d-timeline-alternate-yes
    .d-timeline-item:nth-child(odd):not(.custom-image-style-yes)
    .d-tl-item-content {
    flex-direction: row !important;
  }
  @media screen and (min-width: 1024px) {
    .d-layout-center .d-timeline-item:nth-child(odd) .d-tl-content-wrapper,
    body.rtl
      .d-layout-center
      .d-timeline-item:nth-child(even)
      .d-tl-content-wrapper {
      padding-right: 20px;
      padding-left: 0px;
    }
    .d-layout-center .d-timeline-item:nth-child(even) .d-tl-content-wrapper,
    body.rtl
      .d-layout-center
      .d-timeline-item:nth-child(odd)
      .d-tl-content-wrapper {
      padding-right: 0px;
      padding-left: 20px;
    }
  
    .d-layout-right .d-tl-item-content::before,
    .d-layout-center
      .d-timeline-item:nth-child(odd)
      .d-tl-item-content::before,
    body.rtl .d-layout-left .d-tl-item-content::before,
    body.rtl
      .d-layout-center
      .d-timeline-item:nth-child(even)
      .d-tl-item-content::before {
      right: 4px;
      left: unset;
      border-width: 8px 0 8px 16px;
      border-color: transparent transparent transparent #f4f4f4;
    }
  
    .d-layout-left .d-tl-item-content::before,
    .d-layout-center
      .d-timeline-item:nth-child(even)
      .d-tl-item-content::before,
    body.rtl .d-layout-right .d-tl-item-content::before,
    body.rtl
      .d-layout-center
      .d-timeline-item:nth-child(odd)
      .d-tl-item-content::before {
      left: 4px;
      right: unset;
      border-width: 8px 16px 8px 0;
      border-color: transparent #f4f4f4 transparent transparent;
    }
  }
  @media screen and (max-width: 1023px) and (min-width: 768px) {
    .image-position-row
      .d-timeline.d-timeline-alternate-yes
      .d-timeline-item:nth-child(odd):not(.custom-image-style-yes)
      .d-tl-item-content {
      flex-direction: row-reverse !important;
    }
    .image-position-row-reverse
      .d-timeline.d-timeline-alternate-yes
      .d-timeline-item:nth-child(odd):not(.custom-image-style-yes)
      .d-tl-item-content {
      flex-direction: row !important;
    }
  
    .d-tl-res-style-mobile-tablet .d-tl-item-meta-wrapper {
      display: none;
    }
    .d-tl-res-style-mobile-tablet .d-tl-item-meta-wrapper-inner {
      display: block;
    }
    .d-tl-res-style-mobile-tablet.d-tl-res-layout-left .d-timeline-item {
      flex-direction: row !important;
    }
    .d-tl-res-style-mobile-tablet.d-tl-res-layout-right .d-timeline-item {
      flex-direction: row-reverse !important;
    }
  
    .d-layout-center.d-tl-res-style-mobile-tablet.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-item-content::before,
    .d-timeline.d-layout-center.d-tl-res-style-mobile
      .d-timeline-item:nth-child(even)
      .d-tl-item-content::before,
    body:not(.rtl) .d-layout-left .d-tl-item-content::before,
    body:not(.rtl)
      .d-layout-left
      .d-timeline-item
      .d-tl-item-content::before,
    body.rtl .d-layout-right .d-timeline-item .d-tl-item-content::before,
    body.rtl .d-layout-right .d-tl-item-content::before,
    body.rtl
      .d-timeline.d-layout-center.d-tl-res-style-mobile
      .d-timeline-item:nth-child(odd)
      .d-tl-item-content::before,
    body.rtl
      .d-layout-center.d-tl-res-style-mobile-tablet.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-item-content::before {
      left: 4px !important;
      border-width: 8px 16px 8px 0 !important;
      border-color: transparent #f4f4f4 transparent transparent !important;
    }
    body.rtl
      .d-timeline.d-layout-center.d-tl-res-style-mobile
      .d-timeline-item:nth-child(odd)
      .d-tl-item-content::before {
      left: 4px !important;
      right: unset !important;
      border-width: 8px 16px 8px 0 !important;
      border-color: transparent #f4f4f4 transparent transparent !important;
    }
  
    body.rtl .d-layout-left .d-tl-item-content::before,
    body.rtl .d-layout-left .d-timeline-item .d-tl-item-content::before,
    body:not(.rtl)
      .d-layout-right
      .d-timeline-item
      .d-tl-item-content::before,
    body:not(.rtl) .d-layout-right .d-tl-item-content::before,
    .d-timeline.d-layout-center.d-tl-res-style-mobile
      .d-timeline-item:nth-child(odd)
      .d-tl-item-content::before,
    body:not(.rtl)
      .d-layout-center.d-tl-res-style-mobile-tablet.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-item-content::before,
    body:not(.rtl)
      .d-tl-res-style-mobile-tablet.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-item-content::before,
    body.rtl
      .d-timeline.d-layout-center.d-tl-res-style-mobile
      .d-timeline-item:nth-child(even)
      .d-tl-item-content::before,
    body.rtl
      .d-layout-center.d-tl-res-style-mobile-tablet.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-item-content::before {
      right: 4px !important;
      border-width: 8px 0 8px 16px !important;
      border-color: transparent transparent transparent #f4f4f4 !important;
    }
    body.rtl
      .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-content-wrapper,
    .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-content-wrapper {
      padding-right: 0px !important;
      padding-left: 20px !important;
    }
  
    body.rtl
      .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-content-wrapper,
    .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-content-wrapper {
      padding-right: 20px !important;
      padding-left: 0px !important;
    }
    .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-left
      .d-timline-progress-bar {
      left: 13px;
    }
    .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-right
      .d-timline-progress-bar {
      left: calc(100% - 13px);
    }
  }
  
  @media screen and (max-width: 767px) {
    .d-tl-item-meta-wrapper {
      display: none;
    }
    .d-tl-item-meta-wrapper-inner {
      display: block;
    }
  
    .elementor-widget-bpel-timeline:not(.image-position-column)
      .d-timeline
      .d-tl-item-content {
      flex-direction: column-reverse !important;
    }
    .elementor-widget-bpel-timeline:not(.image-position-column) .d-tl-content,
    .d-tl-item-image {
      width: 100% !important;
    }
    .d-tl-res-style-mobile.d-tl-res-layout-left .d-timeline-item,
    .d-tl-res-style-mobile-tablet.d-tl-res-layout-left .d-timeline-item {
      flex-direction: row !important;
    }
    .d-tl-res-style-mobile-tablet.d-tl-res-layout-right .d-timeline-item,
    .d-tl-res-style-mobile.d-tl-res-layout-right .d-timeline-item {
      flex-direction: row-reverse !important;
    }
  
    body:not(.rtl)
      .d-tl-res-style-mobile.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-item-content::before,
    body:not(.rtl)
      .d-tl-res-style-mobile-tablet.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-item-content::before,
    body:not(.rtl)
      .d-layout-left
      .d-timeline-item
      .d-tl-item-content::before,
    .d-timeline.d-layout-center.d-tl-center.d-tl-res-style-mobile.d-tl-res-layout-left
      .d-timeline-item:nth-child(odd)
      .d-tl-item-content::before,
    .d-timeline.d-layout-center.d-tl-center.d-tl-res-style-mobile-tablet.d-tl-res-layout-left
      .d-timeline-item:nth-child(odd)
      .d-tl-item-content::before,
    body.rtl
      .d-timeline.d-tl-res-style-mobile.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-item-content::before,
    body.rtl
      .d-timeline.d-layout-right
      .d-timeline-item
      .d-tl-item-content::before {
      left: 4px !important;
      border-width: 8px 16px 8px 0 !important;
      border-color: transparent #f4f4f4 transparent transparent !important;
    }
  
    body.rtl
      .d-tl-res-style-mobile.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-item-content::before,
    body:not(.rtl)
      .d-tl-res-style-mobile-tablet.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-item-content::before,
    body:not(.rtl)
      .d-tl-res-style-mobile.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-item-content::before,
    body:not(.rtl)
      .d-layout-right
      .d-timeline-item
      .d-tl-item-content::before,
    body.rtl .d-layout-left .d-timeline-item .d-tl-item-content::before {
      right: 4px !important;
      border-width: 8px 0 8px 16px !important;
      border-color: transparent transparent transparent #f4f4f4 !important;
    }
  
    body:not(.rtl)
      .d-tl-res-style-mobile.d-layout-center.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-content-wrapper,
    body:not(.rtl)
      .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-content-wrapper
      body.rtl
      .d-timeline.d-tl-res-style-mobile.d-layout-center.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-content-wrapper,
    .d-timeline.d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-content-wrapper {
      padding-right: 0px !important;
      padding-left: 20px !important;
    }
    body:not(.rtl)
      .d-tl-res-style-mobile.d-layout-center.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-content-wrapper,
    body:not(.rtl)
      .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-content-wrapper,
    body.rtl
      .d-tl-res-style-mobile.d-layout-center.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-content-wrapper,
    body.rtl
      .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-content-wrapper {
      padding-right: 20px !important;
      padding-left: 0px !important;
    }
    .d-tl-res-style-mobile.d-layout-center.d-tl-res-layout-left
      .d-timline-progress-bar,
    .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-left
      .d-timline-progress-bar {
      left: 13px;
    }
    .d-tl-res-style-mobile.d-layout-center.d-tl-res-layout-right
      .d-timline-progress-bar,
    .d-tl-res-style-mobile-tablet.d-layout-center.d-tl-res-layout-right
      .d-timline-progress-bar {
      left: calc(100% - 13px);
    }
  
    body.rtl
      .d-layout-center.d-timeline.d-tl-res-style-mobile-tablet.d-tl-res-layout-right
      .d-timeline-item
      .d-tl-content-wrapper
      .d-tl-item-content::before {
      left: 4px;
      right: unset;
    }
  
    body.rtl
      .d-layout-center.d-timeline.d-tl-res-style-mobile-tablet.d-tl-res-layout-left
      .d-timeline-item
      .d-tl-content-wrapper
      .d-tl-item-content::before {
      left: unset;
      right: 4px;
      border-width: 8px 0 8px 16px !important;
      border-color: transparent transparent transparent #f4f4f4 !important;
    }
  }
  
  /** EverGreen Timer **/
  
  [data-element_type="d-evergreen-timer.skin1"] .d-evergreen-wrapper {
    display: block;
    text-align: center;
  }
  [data-element_type="d-evergreen-timer.skin1"] #dclockdiv {
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
  }
  
  [data-element_type="d-evergreen-timer.skin1"] .d-time-wrapper {
    padding: 10px;
    border-radius: 3px;
    background: #00bf96;
    display: inline-block;
    overflow: hidden;
  }
  
  [data-element_type="d-evergreen-timer.skin1"] #dclockdiv div > span {
    padding: 15px;
    width: 100%;
    background: #00816a;
    display: inline-block;
  }
  
  [data-element_type="d-evergreen-timer.skin1"] .smalltext {
    padding: 7px;
    font-size: 16px;
  }
  
  [data-element_type="d-evergreen-timer.skin1"] .d-egt-hide {
    display: none;
  }
  
  .d-egt-message {
    display: none;
  }
  
  @media screen and (max-width: 767px) {
    [data-element_type="d-evergreen-timer.skin1"] #dclockdiv div > span {
      padding: 5px;
    }
  
    [data-element_type="d-evergreen-timer.skin1"] .d-time-wrapper {
      padding: 5px;
    }
  }
  
  /* Skin 2 - Flip Clock Css*/
  
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  [data-element_type="d-evergreen-timer.skin2"] .d-evergreen-wrapper {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: auto;
  }
  [data-element_type="d-evergreen-timer.skin2"] .timer-container {
    display: inline-block;
  }
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper a {
    cursor: pointer;
    text-decoration: none;
    color: #ccc;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    a:hover {
    color: #fff;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul {
    list-style: none;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper.clearfix:before,
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper.clearfix:after {
    content: " ";
    display: table;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper.clearfix:after {
    clear: both;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper.clearfix {
    *zoom: 1;
  }
  
  /* Main */
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper {
    font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
    -webkit-user-select: none;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .flip-clock-meridium {
    background: none !important;
    box-shadow: 0 0 0 !important;
    font-size: 36px !important;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .flip-clock-meridium a {
    color: #313333;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper {
    text-align: center;
    position: relative;
    width: 100%;
    margin: 1em;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper:before,
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper:after {
    content: " "; /* 1 */
    display: table; /* 2 */
  }
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper:after {
    clear: both;
  }
  
  /* Skeleton */
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul {
    position: relative;
    float: left;
    margin: 5px;
    width: 60px;
    height: 90px;
    font-size: 80px;
    font-weight: bold;
    line-height: 87px;
    border-radius: 6px;
    background: #000;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul li {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 87px;
    text-decoration: none !important;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li:first-child {
    z-index: 2;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a {
    display: block;
    height: 100%;
    -webkit-perspective: 200px;
    -moz-perspective: 200px;
    perspective: 200px;
    margin: 0 !important;
    overflow: visible !important;
    cursor: default !important;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div {
    z-index: 1;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    font-size: 80px;
    overflow: hidden;
    outline: 1px solid transparent;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div
    .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div.up {
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    top: 0;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div.up:after {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 3px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div.down {
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0;
    bottom: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div
    div.inn {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 200%;
    color: #ccc;
    text-shadow: 0 1px 2px #000;
    text-align: center;
    background-color: #333;
    border-radius: 6px;
    font-size: 70px;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div.up
    div.inn {
    top: 0;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li
    a
    div.down
    div.inn {
    bottom: 0;
  }
  
  /* PLAY */
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-before {
    z-index: 3;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper .flip {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-active {
    -webkit-animation: asd 0.01s 0.49s linear both;
    -moz-animation: asd 0.01s 0.49s linear both;
    animation: asd 0.01s 0.49s linear both;
    z-index: 5;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .flip-clock-divider {
    float: left;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 100px;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .flip-clock-divider:first-child {
    width: 0;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .flip-clock-dot {
    display: block;
    background: #323434;
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    left: 5px;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .flip-clock-divider
    .flip-clock-label {
    position: absolute;
    top: -1.5em;
    right: -86px;
    color: black;
    text-shadow: none;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .flip-clock-divider.minutes
    .flip-clock-label {
    right: -88px;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .flip-clock-divider.seconds
    .flip-clock-label {
    right: -91px;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .flip-clock-dot.top {
    top: 30%;
  }
  
  [data-element_type="d-evergreen-timer.skin2"] .flip-clock-dot.bottom {
    bottom: 30%;
  }
  
  @-webkit-keyframes asd {
    0% {
      z-index: 2;
    }
  
    100% {
      z-index: 4;
    }
  }
  
  @-moz-keyframes asd {
    0% {
      z-index: 2;
    }
  
    100% {
      z-index: 4;
    }
  }
  
  @-o-keyframes asd {
    0% {
      z-index: 2;
    }
  
    100% {
      z-index: 4;
    }
  }
  
  @keyframes asd {
    0% {
      z-index: 2;
    }
  
    100% {
      z-index: 4;
    }
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-active
    .down {
    z-index: 2;
    -webkit-animation: turn 0.5s 0.5s linear both;
    -moz-animation: turn 0.5s 0.5s linear both;
    animation: turn 0.5s 0.5s linear both;
  }
  
  @-webkit-keyframes turn {
    0% {
      -webkit-transform: rotateX(90deg);
    }
  
    100% {
      -webkit-transform: rotateX(0deg);
    }
  }
  
  @-moz-keyframes turn {
    0% {
      -moz-transform: rotateX(90deg);
    }
  
    100% {
      -moz-transform: rotateX(0deg);
    }
  }
  
  @-o-keyframes turn {
    0% {
      -o-transform: rotateX(90deg);
    }
  
    100% {
      -o-transform: rotateX(0deg);
    }
  }
  
  @keyframes turn {
    0% {
      transform: rotateX(90deg);
    }
  
    100% {
      transform: rotateX(0deg);
    }
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-before
    .up {
    z-index: 2;
    -webkit-animation: turn2 0.5s linear both;
    -moz-animation: turn2 0.5s linear both;
    animation: turn2 0.5s linear both;
  }
  
  @-webkit-keyframes turn2 {
    0% {
      -webkit-transform: rotateX(0deg);
    }
  
    100% {
      -webkit-transform: rotateX(-90deg);
    }
  }
  
  @-moz-keyframes turn2 {
    0% {
      -moz-transform: rotateX(0deg);
    }
  
    100% {
      -moz-transform: rotateX(-90deg);
    }
  }
  
  @-o-keyframes turn2 {
    0% {
      -o-transform: rotateX(0deg);
    }
  
    100% {
      -o-transform: rotateX(-90deg);
    }
  }
  
  @keyframes turn2 {
    0% {
      transform: rotateX(0deg);
    }
  
    100% {
      transform: rotateX(-90deg);
    }
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul
    li.flip-clock-active {
    z-index: 3;
  }
  
  /* SHADOW */
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-before
    .up
    .shadow {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0%, rgba(0, 0, 0, 0.1)),
      color-stop(100%, black)
    );
    background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
    -webkit-animation: show 0.5s linear both;
    -moz-animation: show 0.5s linear both;
    animation: show 0.5s linear both;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-active
    .up
    .shadow {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0%, rgba(0, 0, 0, 0.1)),
      color-stop(100%, black)
    );
    background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
    -webkit-animation: hide 0.5s 0.3s linear both;
    -moz-animation: hide 0.5s 0.3s linear both;
    animation: hide 0.5s 0.3s linear both;
  }
  
  /*DOWN*/
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-before
    .down
    .shadow {
    background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0%, black),
      color-stop(100%, rgba(0, 0, 0, 0.1))
    );
    background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
    background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
    -webkit-animation: show 0.5s linear both;
    -moz-animation: show 0.5s linear both;
    animation: show 0.5s linear both;
  }
  
  [data-element_type="d-evergreen-timer.skin2"]
    .d-flip-clock-wrapper
    ul.play
    li.flip-clock-active
    .down
    .shadow {
    background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0%, black),
      color-stop(100%, rgba(0, 0, 0, 0.1))
    );
    background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
    background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
    -webkit-animation: hide 0.5s 0.3s linear both;
    -moz-animation: hide 0.5s 0.3s linear both;
    animation: hide 0.5s 0.2s linear both;
  }
  
  @-webkit-keyframes show {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  @-moz-keyframes show {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  @-o-keyframes show {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  @keyframes show {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes hide {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @-moz-keyframes hide {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @-o-keyframes hide {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @keyframes hide {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @media screen and (max-width: 767px) {
    [data-element_type="d-evergreen-timer.skin2"] .flip-clock-divider {
      width: 15px;
    }
    [data-element_type="d-evergreen-timer.skin2"] .flip-clock-dot {
      height: 5px;
      width: 5px;
    }
    [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul {
      height: 40px;
    }
    [data-element_type="d-evergreen-timer.skin2"] .flip-clock-divider {
      height: 50px;
    }
    [data-element_type="d-evergreen-timer.skin2"]
      .d-flip-clock-wrapper
      ul
      li {
      line-height: 37px;
    }
    [data-element_type="d-evergreen-timer.skin2"]
      .d-flip-clock-wrapper
      ul
      li
      a
      div
      div.inn {
      font-size: 24px;
    }
    [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul {
      margin: 2px;
    }
    /* [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul {
          position: relative;
          float: left;
          margin: 5px;
          width: 40px;
          height: 70px;
          font-size: 40px;
          font-weight: bold;
          line-height: 47px;
          border-radius: 6px;
          background: #000;
      }
      [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul li a div {
          z-index: 1;
          position: absolute;
          left: 0;
          width: 100%;
          height: 50%;
          font-size: 40px;
          overflow: hidden;
          outline: 1px solid transparent;
      }
      [data-element_type="d-evergreen-timer.skin2"] .d-flip-clock-wrapper ul li a div div.inn {
          position: absolute;
          left: 0;
          z-index: 1;
          width: 100%;
          height: 200%;
          color: #ccc;
          text-shadow: 0 1px 2px #000;
          text-align: center;
          background-color: #333;
          border-radius: 6px;
          font-size: 40px;
      }*/
  }
  
  /* Skin 3 - Flip Block */
  /*
  [data-element_type="d-evergreen-timer.skin3"] body  {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: auto;
      color: #fff;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] .d-evergreen-wrapper {
      text-align: center;
      grid-column: 1 / 7;
      grid-row: 2/ 4;
      max-width: 768px;
      margin-left: auto;
      margin-right: auto;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] #timer,
  [data-element_type="d-evergreen-timer.skin3"] .desc{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      justify-items: center;
      align-items: center;
      grid-gap: 1em;
      grid-template-rows: 150px;
  }
  [data-element_type="d-evergreen-timer.skin3"] .desc{
      margin-top: 10px;
      grid-template-rows: 10px;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] #timer span {
      font-size: 48px;
      width: 100%;
      height: 100%;
      border-radius: 5px;
      color: #fff;
  }
  [data-element_type="d-evergreen-timer.skin3"] .d-time-wrapper{
      position: relative;
  }
  [data-element_type="d-evergreen-timer.skin3"] .d-time-wrapper div{
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      position: absolute;
  }
  [data-element_type="d-evergreen-timer.skin3"] .d-evergreen-wrapper{
      display: block;
      text-align: center;
  }*/
  [data-element_type="d-evergreen-timer.skin3"] #timer {
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
  }
  [data-element_type="d-evergreen-timer.skin3"] .desc {
    display: flex;
    justify-content: center;
  }
  [data-element_type="d-evergreen-timer.skin3"].d-egt-content-align-right
    .desc {
    justify-content: flex-end;
  }
  [data-element_type="d-evergreen-timer.skin3"].d-egt-content-align-left
    .desc {
    justify-content: flex-start;
  }
  [data-element_type="d-evergreen-timer.skin3"] .desc .egt-time-text {
    display: inline-block;
    padding: 0 50px 0 50px;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] .d-time-wrapper {
    padding: 50px;
    border-radius: 3px;
    background: #00bf96;
    display: inline-block;
    overflow: hidden;
    margin: 5px;
    line-height: 1em;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] #timer span:nth-child(1) {
    background: khaki;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] #timer span:nth-child(2) {
    background: indianred;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] #timer span:nth-child(3) {
    background: cadetblue;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] #timer span:nth-child(4) {
    background: cornflowerblue;
  }
  
  [data-element_type="d-evergreen-timer.skin3"] .fade {
    animation: flip 0.7s ease forwards;
  }
  
  @keyframes flip {
    0% {
      transform: rotateY(0) scaleY(1.1);
      opacity: 0.5;
    }
    50% {
      transform: rotateY(180deg) scaleY(1.3);
      opacity: 0;
    }
    100% {
      transform: rotateY(0);
      opacity: 1;
    }
  }
  
  @media screen and (max-width: 767px) {
    [data-element_type="d-evergreen-timer.skin3"] #timer span {
      font-size: 22px;
    }
    [data-element_type="d-evergreen-timer.skin2"]
      .flip-clock-divider
      .flip-clock-label {
      top: -1.5em;
      right: -42px;
    }
  
    [data-element_type="d-evergreen-timer.skin2"]
      .flip-clock-divider.minutes
      .flip-clock-label {
      right: -48px;
    }
  
    [data-element_type="d-evergreen-timer.skin2"]
      .flip-clock-divider.seconds
      .flip-clock-label {
      right: -51px;
    }
  }
  
  /* Skin 4 - Digit Up Animation */
  [data-element_type="d-evergreen-timer.skin4"] .d-evergreen-wrapper {
    width: 100%;
  }
  [data-element_type="d-evergreen-timer.skin4"] .container {
    margin: 0 auto;
  }
  [data-element_type="d-evergreen-timer.skin4"] .special {
    position: relative;
    width: 840px;
    height: 47px;
  }
  [data-element_type="d-evergreen-timer.skin4"] #counter {
    position: absolute;
    z-index: 4000;
  }
  [data-element_type="d-evergreen-timer.skin4"] .digit-separator {
    position: relative;
    float: left;
    width: 17px;
    height: 44px;
    overflow: hidden;
    background-image: url("../digit-sep-svg.svg");
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-color: #4054b2;
  }
  [data-element_type="d-evergreen-timer.skin4"] .digit {
    background-image: url("../digits-svg-alpha.svg");
    background-color: #4054b2;
  }
  
  /* Comparison Table */
  
  .d-ct-wrapper * {
    box-sizing: border-box;
  
    margin: 0;
    outline: 0;
  }
  article.d-ct-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .d-ct-wrapper tbody tr.d-ct-header td,
  .d-ct-wrapper th {
    position: relative;
  }
  .d-ct-wrapper ul {
    display: none;
    top: 0px;
    z-index: 10;
    padding-bottom: 14px;
  }
  .d-ct-wrapper li {
    list-style: none;
    flex: 1;
    position: relative;
  }
  .d-ct-wrapper li:hover {
    cursor: pointer;
  }
  .d-ct-wrapper li:last-child {
    /*border-right:1px solid #DDD;*/
  }
  .d-ct-wrapper .d-ct-heading {
    width: 100%;
    padding: 10px;
    background: #fff;
    font-size: 20px;
    font-weight: bold;
    height: 60px;
    color: #999;
    text-align: center;
  }
  .d-ct-wrapper li.d-ct-heading .d-ct-heading-inner {
    position: absolute;
    align-self: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .d-ct-wrapper li.d-ct-heading.active {
    background: #f5f5f5;
  }
  .d-ct-wrapper table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
  }
  .d-ct-wrapper th {
    background: #f5f5f5;
    display: none;
  }
  .d-ct-wrapper td,
  .d-ct-wrapper th {
    height: 53px;
    vertical-align: middle;
  }
  .d-ct-wrapper table {
    border: none;
  }
  /*.d-ct-wrapper table tr td:first-child,.d-ct-wrapper table tr td:last-child, .d-ct-wrapper td,.d-ct-wrapper td,.d-ct-wrapper th { border:1px solid #DDD; padding:10px; empty-cells:show; }*/
  .d-ct-wrapper table th,
  .d-ct-wrapper table td {
    border: none;
  }
  .d-ct-wrapper table tr td:first-child,
  .d-ct-wrapper table tr td:last-child,
  .d-ct-wrapper td,
  .d-ct-wrapper td,
  .d-ct-wrapper th {
    padding: 10px;
    empty-cells: show;
  }
  .d-ct-wrapper td,
  .d-ct-wrapper th {
    text-align: center;
  }
  .d-ct-wrapper td + td,
  .d-ct-wrapper th + th {
    text-align: center;
  }
  .d-ct-wrapper tr:first-child {
    background: none !important;
  }
  .d-ct-wrapper ul li:nth-child(1) {
    display: table-cell;
  }
  .d-ct-wrapper tr td:nth-child(2) {
    display: table-cell;
  }
  
  .d-ct-wrapper td:nth-child(1) {
    display: table-cell;
  }
  .d-ct-wrapper td {
    display: none;
  }
  .d-ct-wrapper .sep {
    background: #f5f5f5;
    font-weight: bold;
  }
  .d-ct-price-wrapper {
    display: flex;
    justify-content: center;
  }
  .d-ct-tt-type-icon .d-ct-feature .tooltip {
    float: right;
  }
  .d-ct-wrapper .tooltiptext::before {
    content: "";
    border-width: 5px 5px 0 5px;
    border-color: #fff;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    margin: 5px;
    left: 42%;
  }
  .d-ct-wrapper .d-ct-price {
    font-size: 28px;
    font-weight: bold;
    line-height: 1em;
  }
  .d-ct-wrapper .d-ct-currency {
    align-self: flex-start;
    margin-right: 3px;
  }
  .d-ct-wrapper .d-ct-fractional-price {
    align-self: flex-start;
    margin-left: 3px;
  }
  .d-ct-wrapper .d-ct-duration {
    align-self: flex-start;
  }
  .d-ct-wrapper .d-ct-original-price {
    margin-right: 5px;
    text-decoration: line-through;
    align-self: flex-end;
  }
  .d-ct-wrapper .tick {
    font-size: 18px;
    color: #2ca01c;
  }
  .feature-heading-blank.d-ct-wrapper .hide {
    border: unset !important;
    background: unset !important;
  }
  .d-ct-wrapper .hide.d-ct-hide.d-fbox-heading {
    border: 0px solid black;
  }
  .d-ct-ribbons-yes .d-ct-ribbons-wrapper {
    position: absolute;
    top: 0;
    /* -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);*/
    /* transform: rotate(90deg); */
    width: 100px;
    overflow: hidden;
    height: 100px;
    z-index: 998;
    padding: 8px 12px;
  }
  .d-ct-ribbons-h-top.d-ct-ribbons-yes .d-ct-ribbons-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 50px;
    z-index: 999;
    padding: 8px 12px;
  }
  .d-ct-ribbons-h-top.d-ct-ribbons-yes .d-ct-ribbons-wrapper-top {
    background-color: rgba(63, 195, 135, 0.8);
    color: #fff;
    transform: translateY(-100%);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  .d-ct-ribbons-h-left.d-ct-ribbons-yes .d-ct-ribbons-wrapper {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    left: 0;
    right: auto;
  }
  .d-ct-ribbons-h-right.d-ct-ribbons-yes .d-ct-ribbons-wrapper {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(90deg);
    left: auto;
    right: 0;
  }
  
  .d-ct-ribbons-yes .d-ct-ribbons-wrapper span.d-ct-ribbons-inner {
    position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    width: 200%;
    -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px)
      rotate(-45deg);
    -ms-transform: translateY(-50%) translateX(-50%) translateX(35px)
      rotate(-45deg);
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    line-height: 2;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(63, 195, 135, 0.8);
    padding: 8px 12px;
    color: #ffffff;
  }
  .d-ct-wrapper .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .d-ct-wrapper .tooltip .tooltiptext {
    visibility: hidden;
    min-width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    margin-left: -60px;
  }
  
  .d-ct-wrapper .tooltip:hover .tooltiptext {
    visibility: visible;
  }
  .d-ct-heading-tooltip {
    text-decoration-line: underline;
    text-decoration-style: dotted;
  }
  .d-ct-btn {
    padding: 10px 15px 10px 15px;
    color: #fff;
    display: inline-block;
    line-height: 1em;
  }
  .d-ct-btn:hover {
    color: #fff;
  }
  .d-ct-wrapper i.fa.fa-check,
  .d-ct-wrapper i.fas.fa-check {
    color: #38f146;
  }
  .d-ct-wrapper i.fa.fa-close,
  .d-ct-wrapper i.fas.fa-times {
    color: #ff0000;
  }
  
  .button-heading-blank.d-ct-wrapper tr:last-child td:first-child {
    background: none !important;
    border: none !important;
  }
  
  .d-ct-wrapper tr:last-child {
    background: none !important;
  }
  .d-ct-wrapper tbody tr:nth-child(2) {
    background: none !important;
  }
  @media (min-width: 767px) {
    .d-ct-wrapper td,
    .d-ct-wrapper .d-ct-header {
      width: 330px;
    }
    .d-ct-wrapper td + td,
    .d-ct-wrapper th + th {
      width: auto;
    }
  }
  
  .d-tab-format-all .d-ct-wrapper ul {
    display: flex;
  }
  .hide.d-ct-hide {
    display: table-cell;
  }
  @media (min-width: 1023px) {
    .d-tab-format-all tbody tr.d-ct-header {
      display: none;
    }
    .d-tab-format-tab-mob .d-ct-wrapper td,
    .d-tab-format-tab-mob .d-ct-wrapper th,
    .d-tab-format-mobile .d-ct-wrapper td,
    .d-tab-format-mobile .d-ct-wrapper th {
      display: table-cell !important;
    }
  
    .d-tab-format-all .hide.d-ct-hide {
      display: table-cell;
    }
    .d-tab-format-tab-mob .hide.d-ct-hide,
    .d-tab-format-mobile .hide.d-ct-hide {
      display: none !important;
    }
  }
  @media (max-width: 1023px) {
    .d-tab-format-tab-mob .d-ct-wrapper ul {
      display: flex;
    }
    /*.d-tab-format-all .d-ct-wrapper td+td,.d-tab-format-all .d-ct-wrapper th+th{*/
    /*    display: none;*/
    /*}*/
    .d-tab-format-all tbody tr.d-ct-header,
    .d-tab-format-tab-mob tbody tr.d-ct-header {
      display: none;
    }
  
    .d-tab-format-all .hide.d-ct-hide {
      display: table-cell;
    }
    .d-tab-format-tab-mob .hide.d-ct-hide {
      display: table-cell;
    }
  }
  @media (max-width: 1023px) and (min-width: 768px) {
    .d-tab-format-mobile .d-ct-wrapper td,
    .d-tab-format-mobile .d-ct-wrapper th {
      display: table-cell !important;
    }
    /*[data-elementor-device-mode='tablet'] .d-tab-format-mobile .d-ct-hide.d-fbox-heading{*/
    /*    display: none !important;*/
    /*}*/
  
    .d-tab-format-all tbody tr.d-ct-header,
    .d-tab-format-tab-mob tbody tr.d-ct-header {
      display: none;
    }
    .d-tab-format-tab-mob .hide.d-ct-hide {
      display: table-cell;
    }
  }
  @media (max-width: 767px) {
    .d-tab-format-mobile .d-ct-wrapper ul {
      display: flex;
    }
    .d-tab-format-mobile tbody tr.d-ct-header {
      display: none;
    }
  
    .d-tab-format-mobile tbody tr.d-ct-header,
    .d-tab-format-all tbody tr.d-ct-header {
      display: none;
    }
    .d-tab-format-mobile .hide.d-ct-hide {
      display: table-cell;
    }
  }
  
  /* Progress Bar */
  .d-progress-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 15px 0;
  }
  
  .d-progress-bar-wrapper.d-progress-bar {
    width: 100%;
    position: relative;
    box-sizing: border-box;
  }
  
  .d-pb-bar,
  .d-pb-bar-inner,
  .d-pb-bar-value,
  .d-pb-bar-skill {
    box-sizing: border-box;
  }
  
  .d-pb-bar {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  .d-pb-bar--no-overflow {
    overflow: visible;
  }
  
  .d-pb-bar-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  body.rtl .d-pb-bar .d-pb-bar-inner {
    position: absolute;
    top: 0;
    right: 0 !important;
    height: 100%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  .d-pb-bar-inner.js-animated {
    transition-property: all;
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.1, 1.14, 0.31, 1.06);
    transition-delay: 1.5s;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  body.rtl .d-pb-bar .d-pb-bar-inner.js-animated {
    transition-property: all;
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.1, 1.14, 0.31, 1.06);
    transition-delay: 1.5s;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .d-pb-bar-skill,
  .d-pb-bar-value {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  body:not(.rtl) .d-pb-bar-value--aligned-value {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  body.rtl .d-pb-bar-value--aligned-value {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  
  /* progress bar #1 styles */
  .d-progress-bar-skin1 {
    height: 20px;
    padding: 4px;
    border: 1px solid #dddddd;
    border-radius: 20px;
  }
  .d-pb-bar-skin1 {
    border-radius: 20px;
  }
  .d-pb-bar-inner-skin1 {
    background-color: #00bfb3;
    background-size: 200%;
    background-position: 0 0;
    border-radius: 20px;
  }
  
  .d-pb-bar-skill-skin1 {
    position: absolute;
    bottom: 20px;
    left: 0px;
    opacity: 0;
  }
  body.rtl .d-pb-bar-skill-skin1 {
    right: 0px;
  }
  .d-pb-bar-skill-skin1.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0.5s;
    left: 0;
    opacity: 1;
  }
  body.rtl .d-pb-bar-skill-skin1.js-animated {
    right: 0 !important;
  }
  
  .d-pb-bar-value-skin1 {
    position: absolute;
    bottom: 20px;
    opacity: 1;
  }
  body:not(.rtl) .d-pb-bar-value-skin1 {
    right: 0;
  }
  body.rtl .d-pb-bar-value-skin1 {
    left: 0% !important;
  }
  
  .d-pb-bar-value-skin1.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0.5s;
    opacity: 1;
  }
  body:not(.rtl) .d-pb-bar-value-skin1.js-animated {
    right: 0;
  }
  
  /* progress bar #2 styles */
  .d-progress-bar-skin2 {
    height: 15px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
      0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  
  @-webkit-keyframes progress-2-bg-animation-rtl {
    100% {
      background-position: 0 0, 0 0;
    }
    0% {
      background-position: 0 0, 42px 0;
    }
  }
  
  @keyframes progress-2-bg-animation-rtl {
    100% {
      background-position: 0 0, 0 0;
    }
    0% {
      background-position: 0 0, 42px 0;
    }
  }
  
  @-webkit-keyframes progress-2-bg-animation {
    0% {
      background-position: 0 0, 0 0;
    }
    1000% {
      background-position: 0 0, 42px 0;
    }
  }
  
  @keyframes progress-2-bg-animation {
    0% {
      background-position: 0 0, 0 0;
    }
    100% {
      background-position: 0 0, 42px 0;
    }
  }
  
  .d-pb-bar-inner-skin2 {
    background-image: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.15),
        rgba(0, 0, 0, 0.2)
      ),
      linear-gradient(
        135deg,
        #5eeb5b,
        #5eeb5b 33%,
        #358600 33%,
        #358600 66%,
        #5eeb5b 66%
      );
    background-size: 100% 100%, 42px 100%;
    background-position: 0 0, 0 0;
    border-radius: 3px;
  }
  body:not(.rtl) .d-pb-bar-inner-skin2.js-animated {
    -webkit-animation: progress-2-bg-animation 1.5s linear 0s infinite;
    animation: progress-2-bg-animation 1.5s linear 0s infinite;
  }
  
  body.rtl .d-pb-bar-inner-skin2.js-animated {
    -webkit-animation: progress-2-bg-animation-rtl 1.5s linear 0s infinite;
    animation: progress-2-bg-animation-rtl 1.5s linear 0s infinite;
  }
  
  .d-pb-bar-skill-skin2 {
    position: absolute;
    opacity: 0;
  }
  body:not(.rtl) .d-pb-bar-skill-skin2 {
    left: 0;
  }
  body.rtl .d-pb-bar-skill-skin2 {
    right: 0;
  }
  
  .d-pb-bar-skill-skin2.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0.5s;
    bottom: 20px;
    opacity: 1;
  }
  
  .d-pb-bar-value-skin2 {
    position: absolute;
    opacity: 0;
  }
  body:not(.rtl) .d-pb-bar-value-skin2 {
    right: 0;
  }
  body.rtl .d-pb-bar-value-skin2 {
    left: 0%;
  }
  
  .d-pb-bar-value-skin2.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0.5s;
    bottom: 20px;
    opacity: 1;
  }
  
  /* Progress Bar Skin 3*/
  
  .d-progress-bar-skin3 {
    height: 5px;
    background-color: #efefef;
  }
  .d-pb-bar-value-skin3,
  .d-pb-bar-inner-skin3 {
    background-color: #f40076;
  }
  .d-pb-bar-value-skin3:after,
  .d-pb-bar-inner:after {
    border-top-color: #f40076;
  }
  
  .d-pb-bar-skill-skin3 {
    position: absolute;
    bottom: 10px;
    left: -10px;
    opacity: 0;
  }
  .d-pb-bar-skill-skin3.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0.5s;
    opacity: 1;
  }
  body:not(.rtl) .d-pb-bar-skill-skin3.js-animated {
    left: 0;
  }
  body.rtl .d-pb-bar-skill-skin3.js-animated {
    right: 0;
  }
  
  .d-pb-bar-value-skin3 {
    position: absolute;
    display: inline-block;
    padding: 0px 8px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
  }
  .d-pb-bar-value-skin3:after {
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: block;
    width: 0;
    height: 0;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #f40076 transparent transparent transparent;
  }
  .d-pb-bar-inner-skin3.js-animated {
    transition-property: all;
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.1, 1.14, 0.31, 1.06);
    transition-delay: 1.5s;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .d-pb-bar-value-skin3.js-animated {
    transition-property: all;
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.1, 1.14, 0.31, 1.06);
    transition-delay: 2s;
    bottom: 14px;
    opacity: 1;
  }
  
  /* Progress Bar Skin 4 */
  .d-progress-bar-skin4 {
    height: 3px;
    background-color: #efefef;
  }
  
  .d-pb-bar-inner-skin4 {
    background-color: #000;
  }
  .d-pb-bar-inner-skin4:after {
    position: absolute;
    top: 50%;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #000;
    border-radius: 50%;
  }
  body:not(.rtl) .d-pb-bar-inner-skin4:after {
    right: 0;
  }
  body.rtl .d-pb-bar-inner-skin4:after {
    left: 0;
  }
  .d-pb-bar-value-skin4 {
    position: absolute;
    bottom: 2px;
    font-size: 14px;
    opacity: 0;
  }
  .d-pb-bar-value-skin4.js-animated {
    transition-property: all;
    transition-duration: 1.5s;
    transition-timing-function: linear;
    transition-delay: 1.5s;
    opacity: 1;
  }
  
  .d-pb-bar-skill-skin4 {
    position: absolute;
    bottom: 2px;
    left: -20px;
    opacity: 0;
  }
  .d-pb-bar-skill-skin4.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0.5s;
    opacity: 1;
  }
  body:not(.rtl) .d-pb-bar-skill-skin4.js-animated {
    left: 0;
  }
  body.rtl .d-pb-bar-skill-skin4.js-animated {
    right: 0;
  }
  
  /* Progress Bar Skin 5 */
  .d-progress-bar-skin5 {
    height: 30px;
    background-color: #f7f7f7;
  }
  
  .d-pb-bar-inner-skin5 {
    background-color: #57b8ff;
  }
  
  .d-pb-bar-skill-skin5 {
    position: absolute;
    top: 50%;
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  body:not(.rtl) .d-pb-bar-skill-skin5 {
    left: 10px;
  }
  body:not(.rtl) .d-pb-bar-skill-skin5 {
    right: 10px;
  }
  .d-pb-bar-skill-skin5.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    transition-delay: 0.5s;
    opacity: 1;
  }
  
  .d-pb-bar-value-skin5 {
    position: absolute;
    top: 50%;
    color: #fff;
    opacity: 0;
    z-index: 10;
  }
  body:not(.rtl) .d-pb-bar-value-skin5 {
    -webkit-transform: translateX(-100%) translateX(-10px) translateY(-50%);
    transform: translateX(-100%) translateX(-10px) translateY(-50%);
  }
  body.rtl .d-pb-bar-value-skin5 {
    -webkit-transform: translateX(100%) translateX(10px) translateY(-50%);
    transform: translateX(100%) translateX(10px) translateY(-50%);
  }
  .d-pb-bar-value-skin5.js-animated {
    transition-property: all;
    transition-duration: 1.5s;
    transition-timing-function: linear;
    transition-delay: 1.5s;
    opacity: 1;
  }
  
  /* d Dual Button */
  .d-dual-button-wrapper .d-button-1-wrapper,
  .d-dual-button-wrapper .d-button-2-wrapper {
    overflow: hidden;
  }
  
  .d-dual-button-wrapper.button-style-horizontal {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .d-dual-button-main-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .d-dual-button-wrapper a {
    min-width: 0px;
  }
  .d-dual-button-wrapper.button-style-vertical {
    display: inline-flex;
    flex-direction: column;
    position: relative;
  }
  .d-button-1.icon-before,
  .d-button-2.icon-before {
    display: flex;
    flex-direction: row;
  }
  body.rtl .d-button-1.icon-before,
  body.rtl .d-button-2.icon-before {
    display: flex;
    flex-direction: row-reverse;
  }
  .d-button-1.icon-after,
  .d-button-2.icon-after {
    display: flex;
    flex-direction: row-reverse;
  }
  body.rtl .d-button-1.icon-after,
  body.rtl .d-button-2.icon-after {
    display: flex;
    flex-direction: row;
  }
  .d-button-1-wrapper .d-button-1,
  .d-button-2-wrapper .d-button-2 {
    color: black;
    align-items: center;
  }
  .d-button-1-wrapper:hover .d-button-1,
  .d-button-2-wrapper:hover .d-button-2 {
    color: black;
  }
  .d-dual-button-wrapper.button-style-vertical .d-button-1.icon-before,
  .d-dual-button-wrapper.button-style-vertical .d-button-2.icon-before,
  .d-dual-button-wrapper.button-style-vertical .d-button-1.icon-after,
  .d-dual-button-wrapper.button-style-vertical .d-button-2.icon-after {
    justify-content: center;
  }
  .d-button-1.icon-up,
  .d-button-2.icon-up {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .d-button-1.icon-down,
  .d-button-2.icon-down {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
  .d-button-1-wrapper {
    background: lightpink;
    display: flex;
    justify-content: center;
    width: 100%;
    line-height: 1;
  }
  .d-button-2-wrapper {
    background: orange;
    display: flex;
    justify-content: center;
    width: 100%;
    line-height: 1;
  }
  .d-button-1.icon-up .icon-wrapper,
  .d-button-2.icon-up .icon-wrapper,
  .d-button-2.icon-down .icon-wrapper,
  .d-button-2.icon-down .icon-wrapper {
    text-align: center;
  }
  .d-button-1.icon-up .d-button-text,
  .d-button-2.icon-up .d-button-text,
  .d-button-2.icon-down .d-button-text,
  .d-button-2.icon-down .d-button-text {
    text-align: center;
  }
  .d-button-1.icon-before i,
  .d-button-2.icon-before i,
  .d-button-2.icon-after i {
    align-self: center;
    margin: 0 10px 0 0;
  }
  .d-button-1.icon-after i,
  .d-button-2.icon-after i {
    align-self: center;
    margin: 0 0 0 10px;
  }
  .d-button-1.icon-up i,
  .d-button-1.icon-down i,
  .d-button-2.icon-up i,
  .d-button-2.icon-down i {
    align-self: center;
    margin: 5px 0;
  }
  .d-dual-button-wrapper.button-style-horizontal .d-button-1-wrapper,
  .d-dual-button-wrapper.button-style-horizontal .d-button-2-wrapper {
    padding: 12px 30px;
  }
  .d-dual-button-wrapper.button-style-vertical .d-button-1-wrapper,
  .d-dual-button-wrapper.button-style-vertical .d-button-2-wrapper {
    padding: 20px 30px;
  }
  .d-button1,
  .d-button2 {
    position: relative;
    display: flex;
  }
  
  .d-dual-button-wrapper.button-style-horizontal .d-button1,
  .d-dual-button-wrapper.button-style-horizontal .d-button2 {
    min-width: 150px;
  }
  .d-dual-button-wrapper.button-style-vertical .d-button1 {
    display: flex;
    flex-direction: column;
  }
  .d-button-separator-wrapper .d-button-separator {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
    background: #fafaf8;
    color: #444;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    transform: translateY(-50%);
  }
  .d-button-separator span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  body.rtl.elementor-editor-active
    .d-dual-button-main-wrapper
    .button-style-horizontal
    .d-button1
    .d-button-separator-wrapper.not-rtl
    .d-button-separator {
    display: none !important;
  }
  body:not(.rtl).elementor-editor-active
    .d-dual-button-main-wrapper
    .button-style-horizontal
    .d-button2
    .d-button-separator-wrapper.rtl
    .d-button-separator,
  body:not(.rtl).elementor-editor-preview
    .d-dual-button-main-wrapper
    .button-style-horizontal
    .d-button2
    .d-button-separator-wrapper.rtl
    .d-button-separator {
    display: none !important;
  }
  
  /* Sweep to right */
  .d-sweep-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .d-sweep-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-sweep-right:hover,
  .d-sweep-right:focus,
  .d-sweep-right:active {
    color: white;
  }
  .d-sweep-right:hover:before,
  .d-sweep-right:focus:before,
  .d-sweep-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  
  /* Sweep To Left */
  .d-sweep-left {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .d-sweep-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-sweep-left:hover,
  .d-sweep-left:focus,
  .d-sweep-left:active {
    color: white;
  }
  .d-sweep-left:hover:before,
  .d-sweep-left:focus:before,
  .d-sweep-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  
  /* Sweep To Bottom */
  .d-sweep-bottom {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .d-sweep-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-sweep-bottom:hover,
  .d-sweep-bottom:focus,
  .d-sweep-bottom:active {
    color: white;
  }
  .d-sweep-bottom:hover:before,
  .d-sweep-bottom:focus:before,
  .d-sweep-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  
  /* Sweep To Top */
  .d-sweep-top {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .d-sweep-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-sweep-top:hover,
  .d-sweep-top:focus,
  .d-sweep-top:active {
    color: white;
  }
  .d-sweep-top:hover:before,
  .d-sweep-top:focus:before,
  .d-sweep-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  
  /* Bounce To Right */
  .d-bounce-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  .d-bounce-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-bounce-right:hover,
  .d-bounce-right:focus,
  .d-bounce-right:active {
    color: white;
  }
  .d-bounce-right:hover:before,
  .d-bounce-right:focus:before,
  .d-bounce-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  
  /* Bounce To Left */
  .d-bounce-left {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  .d-bounce-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-bounce-left:hover,
  .d-bounce-left:focus,
  .d-bounce-left:active {
    color: white;
  }
  .d-bounce-left:hover:before,
  .d-bounce-left:focus:before,
  .d-bounce-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  
  /* Bounce To Bottom */
  .d-bounce-bottom {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  .d-bounce-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-bounce-bottom:hover,
  .d-bounce-bottom:focus,
  .d-bounce-bottom:active {
    color: white;
  }
  .d-bounce-bottom:hover:before,
  .d-bounce-bottom:focus:before,
  .d-bounce-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  
  /* Bounce To Top */
  .d-bounce-top {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  .d-bounce-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .d-bounce-top:hover,
  .d-bounce-top:focus,
  .d-bounce-top:active {
    color: white;
  }
  .d-bounce-top:hover:before,
  .d-bounce-top:focus:before,
  .d-bounce-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  /* Google Map */
  .d-markers .marker {
    display: none;
  }
  .d-markers p {
    margin-bottom: 0;
  }
  
  /*d Filterable Gallery*/
  .d-fg-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .d-gallery-filter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .d-filter-label {
    padding: 5px 10px;
    background-color: #a0ce4e;
    color: #fff;
    margin: 0px 3px 0px 3px;
  }
  .d-filter-label.current {
    background-color: #73b9dc;
  }
  
  .d-fg-image {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .d-fg-wrapper .d-gallery-item-inner img {
    width: 100%;
    height: auto;
    display: block !important;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
  }
  
  .d-gallery-item {
    height: auto;
  }
  .d-gallery-filter a {
    color: #ffffff;
    text-decoration: none;
  }
  .d-gallery-filter a.current {
    font-weight: bold;
  }
  
  .d-gallery-item-inner {
    position: relative;
    overflow: hidden;
  }
  
  /*Overlay Css*/
  .d-overlay-always .d-gallery-item .d-grid-overlay {
    display: block;
  }
  
  .d-overlay-hover .d-gallery-item-inner:hover .d-grid-overlay {
    display: block;
  }
  .d-overlay-hide-on-hover .d-gallery-item-inner:hover .d-grid-overlay {
    display: none;
  }
  .d-overlay-hide-on-hover .d-grid-overlay {
    display: block;
  }
  .d-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
  }
  
  .d-grid-overlay-inner {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .d-fg-wrapper .d-icon-wrapper {
    display: flex;
    justify-content: center;
  }
  
  /* Overlay Icon*/
  .d-overlay-caption {
    display: block;
    line-height: 1em;
    margin-top: 15px;
    color: #73b9dc;
    font-size: 20px;
  }
  .d-overlay-icon {
    line-height: 1em;
    padding: 0.5em;
    display: inline-block;
  }
  .d-overlay-icon svg {
    height: auto;
  }
  .d-icon-view-framed .d-overlay-icon {
    padding: 0.5em;
    color: #73b9dc;
    border: 3px solid #73b9dc;
    background-color: transparent;
  }
  
  .d-icon-view-stacked .d-overlay-icon {
    padding: 0.5em;
    color: #fff;
    background-color: #818a91;
  }
  .d-hover-direction-effect .d-grid-overlay {
    position: absolute;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
  }
  
  .d-fg-wrapper.d-image-ratio-yes
    .d-gallery-item-inner
    .d-fg-img-wrapper {
    position: relative;
    top: 0;
    overflow: hidden;
    left: 0;
    right: 0;
    border: 0;
  }
  .d-fg-wrapper.d-image-ratio-yes
    .d-gallery-item-inner
    .d-fg-img-wrapper
    img {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  
  /* Ribbons and Badges */
  
  .dd-d-ribbons-badges-wrapper {
    display: none;
  }
  .dd-d-enable-ribbons-badges-yes
    .elementor-column-wrap
    > .dd-d-ribbons-badges-wrapper {
    display: block;
  }
  
  /* Ribbon */
  .dd-d-enable-ribbons-badges-yes.dd-d-badge-type-ribbon
    > .dd-d-ribbons-badges-wrapper {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    /* -webkit-transform: rotate(90deg); */
    -ms-transform: rotate(90deg);
    /* transform: rotate(90deg); */
    width: 150px;
    overflow: hidden;
    height: 150px;
    z-index: 999;
    padding: 8px 12px;
  }
  .dd-d-badge-h-left.dd-d-enable-ribbons-badges-yes.dd-d-badge-type-ribbon
    > .dd-d-ribbons-badges-wrapper {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    left: 0;
    right: auto;
  }
  .dd-d-badge-h-right.dd-d-enable-ribbons-badges-yes.dd-d-badge-type-ribbon
    > .dd-d-ribbons-badges-wrapper {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(90deg);
    left: auto;
    right: 0;
  }
  .dd-d-enable-ribbons-badges-yes.dd-d-badge-type-ribbon
    > .dd-d-ribbons-badges-wrapper
    span.dd-d-ribbons-badges-inner {
    position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    width: 200%;
    -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px)
      rotate(-45deg);
    -ms-transform: translateY(-50%) translateX(-50%) translateX(35px)
      rotate(-45deg);
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    line-height: 2;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(63, 195, 135, 0.8);
    padding: 8px 12px;
  }
  /* Ribbon */
  
  /* Sale Badge Badge */
  .dd-d-enable-ribbons-badges-yes.dd-d-badge-type-badge
    > .dd-d-ribbons-badges-wrapper
    span.dd-d-ribbons-badges-inner {
    min-height: 3.236em;
    min-width: 3.236em;
    padding: 0;
    font-size: 1em;
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 3.236;
    top: -0.5em;
    left: -0.5em;
    margin: 0;
    border-radius: 100%;
    background-color: #77a464;
    color: #fff;
    font-size: 0.857em;
    z-index: 9;
  }
  .dd-d-badge-h-left.dd-d-badge-v-bottom.dd-d-enable-ribbons-badges-yes
    > .dd-d-ribbons-badges-wrapper
    span.dd-d-ribbons-badges-inner {
    left: 20px;
    right: auto;
    top: auto;
    bottom: 20px;
  }
  .dd-d-badge-h-left.dd-d-badge-v-top.dd-d-enable-ribbons-badges-yes
    > .dd-d-ribbons-badges-wrapper
    span.dd-d-ribbons-badges-inner {
    left: 20px;
    right: auto;
    top: 20px;
    bottom: auto;
  }
  
  .dd-d-badge-h-right.dd-d-badge-v-bottom.dd-d-enable-ribbons-badges-yes
    > .dd-d-ribbons-badges-wrapper
    span.dd-d-ribbons-badges-inner {
    left: auto;
    right: 20px;
    top: auto;
    bottom: 20px;
  }
  .dd-d-badge-h-right.dd-d-badge-v-top.dd-d-enable-ribbons-badges-yes
    > .dd-d-ribbons-badges-wrapper
    span.dd-d-ribbons-badges-inner {
    left: auto;
    right: 20px;
    top: 20px;
    bottom: auto;
  }
  
  /* Sale Badge Badge */
  
  /* Icon Migration */
  /* Flipbox */
  .d-flip-box-front svg,
  .d-flip-box-back svg {
    width: 25px;
    height: auto;
  }
  /* Text-Separator */
  .dd-d-textseparator svg {
    width: 25px;
    height: auto;
  }
  
  /* AfterBefore Image Comp */
  .d-img-comp-slider svg {
    width: 22px;
    height: auto;
  }
  
  /* Model Popup */
  .d-popup-link svg {
    display: inline-block;
    width: 1em;
  }
  
  .d-popup svg:hover,
  .d-popup svg:focus {
    opacity: 1;
    cursor: pointer;
  }
  .d-popup svg:active {
    top: 1px;
  }
  
  .d-popup svg.d-close {
    width: 28px;
    height: 28px;
    line-height: 1em;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    background-color: #fff;
  }
  /* Dual Button */
  .d-dual-button-wrapper svg {
    width: 1em;
    height: auto;
    display: block;
  }
  d-button-separator i {
    position: relative;
    display: block;
  }
  .d-button-1.icon-before svg,
  .d-button-2.icon-before svg,
  .d-button-2.icon-after svg {
    align-self: center;
    margin: 0 10px 0 0;
  }
  
  .d-button-1.icon-after svg,
  .d-button-2.icon-after svg {
    align-self: center;
    margin: 0 0 0 10px;
  }
  .d-button-1.icon-up svg,
  .d-button-1.icon-down svg,
  .d-button-2.icon-up svg,
  .d-button-2.icon-down svg {
    align-self: center;
    margin: 5px 0;
  }
  
  /* Price Table */
  .d-pt-button-wrapper a svg {
    width: 1em;
  }
  .d-pt-action-button .d-pt-align-icon-left {
    float: left;
  }
  
  .d-pt-action-button .d-pt-align-icon-right {
    float: right;
  }
  
  .d-icon-wrap svg {
    width: 20px;
    height: auto;
    font-size: 20px;
    display: block;
  }
  .d-info-circle .d-icon-wrap svg {
    width: 20px;
    height: auto;
    font-size: 20px;
  }
  
  .d-icon-view-stacked svg {
    fill: #fff;
  }
  
  .ae-link-yes {
    cursor: pointer;
  }
  
  /*unfold-css*/
  .d-element-unfold-content {
    padding: 10px 0px;
    background-color: #d3d3d3c4;
    /*background: linear-gradient(180deg, #F4EFEF 0%, #F6F6F6 100%);*/
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
  }
  
  a.d-unfold-link {
    background-color: #61ce70;
    color: #fff;
    display: inline-block;
    overflow: hidden;
  }
  a.d-unfold-link svg {
    background-color: #fff;
  }
  .d-unfold-button-icon {
    vertical-align: middle;
  }
  
  .d-fold-yes.elementor-section .elementor-container,
  .d-fold-yes .elementor-column-wrap,
  .d-fold-yes.elementor-widget {
    overflow: hidden;
  }
  
  body.elementor-editor-active
    .elementor.elementor-edit-mode
    .elementor-element.elementor-section.d-widget-unfold-yes
    .elementor-container,
  body.elementor-editor-preview
    .elementor.elementor-edit-mode
    .elementor-element.elementor-section.d-widget-unfold-yes
    .elementor-container {
    overflow: hidden;
  }
  body.elementor-editor-active
    .elementor.elementor-edit-mode
    .elementor-element.elementor-column.d-widget-unfold-yes
    .elementor-column-wrap,
  body.elementor-editor-preview
    .elementor.elementor-edit-mode
    .elementor-element.elementor-column.d-widget-unfold-yes
    .elementor-column-wrap {
    overflow: hidden;
  }
  body.elementor-editor-active
    .elementor.elementor-edit-mode
    .elementor-element.elementor-widget.d-widget-unfold-yes,
  body.elementor-editor-preview
    .elementor.elementor-edit-mode
    .elementor-element.elementor-widget.d-widget-unfold-yes {
    overflow: hidden;
  }
  
  .d-widget-unfold-yes .elementor-widget-container .d-fold-yes.d-rc {
    display: none !important;
  }
  
  .d-unfold-button-icon svg {
    line-height: 1em;
    text-decoration: none;
    -webkit-mask-repeat: no-repeat !important;
    text-align: center;
    opacity: 1;
  }
  .d-unfold-icon-type-svg .d-unfold-button-icon,
  .d-fold-icon-type-svg .d-unfold-button-icon {
    -webkit-mask-size: cover !important;
    background-image: none;
    transform: translateY(-50%);
  }
  
  .elementor-section.elementor-section-items-middle.d-widget-unfold-yes
    > .elementor-container,
  .elementor-section.elementor-section-items-bottom.d-widget-unfold-yes
    > .elementor-container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: start;
  }
  .elementor-section.elementor-section-content-middle.d-widget-unfold-yes
    > .elementor-container,
  .elementor-section.elementor-section-content-bottom.d-widget-unfold-yes
    > .elementor-container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: start;
  }
  
  /*Modal Pop Up Button Type Image*/
  .elementor-widget-dd-modal-popup.d-pop-btn-type-image .d-popup-link {
    padding: 0px;
    background-color: transparent;
    overflow: hidden;
  }
  
  /*Comparision Table Bug Fix elementor*/
  [data-elementor-device-mode="tablet"]
    .d-tab-format-mobile
    .d-ct-hide.d-fbox-heading {
    display: none !important;
  }
  
  /* Timeline Stacked Item Border Size Changed to 0 */
  .d-timeline-item .d-icon-view-stacked {
    border-width: 0px !important;
  }
  
  /*d-Content Switch*/
  .d-content-switcher-wrapper {
    display: block;
    text-align: center;
  }
  
  .d-cs-layout-skin1 .d-cs-switch-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 8px 12px;
    background: #54595f;
    border-radius: 50px;
  }
  
  /*Skin1 Head*/
  .d-cs-switch-container {
    display: block;
    text-align: center;
  }
  .d-cs-layout-skin1 .d-cs-label-wrapper {
    display: inline-block;
    overflow: hidden;
  }
  .d-cs-layout-skin1 .d-content-switch-button {
    border-radius: 50px;
    padding: 8px 12px;
    background-color: #7a7a7a;
    color: #ffffff;
    overflow: hidden;
    display: block;
    min-width: 150px;
    position: relative;
    text-align: center;
    margin: 3px;
  }
  .d-cs-layout-skin1 .d-content-switch-button:before {
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    content: "";
    width: 0;
    position: absolute;
    right: 0;
    transition: all 300ms ease-out;
  }
  .d-cs-layout-skin1 .d-content-switch-button.active:before {
    width: 100%;
    left: 0;
    right: auto;
    background-color: #61ce70;
  }
  .d-cs-layout-skin1 .d-content-switch-label {
    position: relative;
  }
  /*COntent Switcher Content CSS
   */
  .d-cs-content-section {
    display: none;
  }
  .d-cs-content-section.active {
    display: block;
  }
  
  @media only screen and (max-width: 768px) {
    .d-cs-switch-wrapper {
      display: inline-block !important;
    }
  }
  
  /*SKin 2*/
  .d-cs-layout-skin2 .d-cs-switch-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0px;
    background: none;
  }
  .d-cs-layout-skin2 .d-cs-label-wrapper {
    display: inline-block;
  }
  
  .d-cs-layout-skin2 .d-content-switch-button {
    width: auto;
    margin: 3px 8px;
    padding: 10px 12px;
    background-color: #e2e2e2;
    overflow: hidden;
    display: block;
    position: relative;
    text-align: center;
    border-radius: 5px;
    border: 1px solid rgba(130, 130, 130, 0.26);
    color: rgba(71, 71, 71, 0.44);
  }
  
  .d-cs-layout-skin2 .d-content-switch-button.active {
    box-shadow: 0px 10px 34px -9px rgba(0, 0, 0, 0.38);
    background-color: white;
    color: #575757;
    border-color: white;
  }
  h5.d-cs-label {
    margin: 0px;
  }
  
  /*SKin 3*/
  .d-cs-layout-skin3 .d-cs-switch-wrapper {
    display: block;
    justify-content: center;
    align-items: center;
  }
  .d-content-switch-label.primary-label {
    margin-right: 30px;
  }
  .d-content-switch-label.secondary-label {
    margin-left: 30px;
  }
  
  .d-cs-layout-skin3 .d-cs-switch-label {
    position: relative;
    display: inline-block;
    width: 4.5em;
    height: 2.3em;
    vertical-align: middle;
  }
  
  .d-cs-layout-skin3 .d-content-switch-label {
    margin: 0px;
    display: inline-block;
  }
  .d-cs-layout-skin3 .d-cs-switch-button {
    display: inline-block;
  }
  .d-cs-layout-skin3 .d-cs-label {
    display: inline-block;
  }
  .d-cs-layout-skin3 .d-cs-switch-label input.d-content-toggle-switch {
    display: none;
  }
  
  .d-cs-layout-skin3
    .d-cs-switch-label
    input.d-content-toggle-switch
    + span {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-border-radius: 1.5em;
    border-radius: 1.5em;
    background: #2e394d;
    border: 2px solid #2e394d;
  }
  .d-cs-layout-skin3
    .d-cs-switch-label
    input.d-content-toggle-switch
    + span:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 4px;
    transform: translateY(-52%);
    top: 50%;
    transition: 0.4s;
    transition: 0.4s;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #88cf8f;
    border: 2px solid #88cf8f;
  }
  body.rtl
    .d-cs-layout-skin3
    .d-cs-switch-label
    input.d-content-toggle-switch
    + span:before {
    left: unset;
    right: 4px;
  }
  
  .d-cs-layout-skin3
    .d-cs-switch-label
    input:checked.d-content-toggle-switch
    + span:before {
    transform: translate(36px, -52%);
  }
  body.rtl
    .d-cs-layout-skin3
    .d-cs-switch-label
    input:checked.d-content-toggle-switch
    + span:before {
    transform: translate(-36px, -52%);
  }
  
  .d-content-switch-label.active {
    color: #61ce70;
  }
  
  /*Skin 4 Cs*/
  .d-cs-layout-skin4 .d-cs-switch-wrapper {
    display: block;
    /*justify-content: center;*/
    /*align-items: center;*/
  }
  .d-cs-layout-skin4 .d-content-switch-label.primary-label {
    margin-right: 30px;
  }
  .d-cs-layout-skin4 .d-content-switch-label.secondary-label {
    margin-left: 30px;
  }
  
  .d-cs-layout-skin4 .d-content-switch-label {
    display: inline-block;
  }
  .d-cs-layout-skin4 .d-cs-switch-label {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 20px;
    vertical-align: middle;
  }
  .d-cs-layout-skin4 .d-cs-label {
    display: inline-block;
  }
  .d-cs-layout-skin4 .d-content-toggle-switch {
    display: none;
  }
  .d-cs-layout-skin4 .d-content-toggle-switcher {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-border-radius: 1.5em;
    border-radius: 1.5em;
    background: #2e394d;
    border: 2px solid #2e394d;
  }
  .d-cs-layout-skin4 .d-cs-switch-button {
    display: inline-block;
  }
  .d-cs-layout-skin4 .d-content-toggle-switcher:before {
    position: absolute;
    content: "";
    height: 34px;
    width: 34px;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 2px solid #88cf8f;
    background: #88cf8f;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.2);
  }
  .d-cs-layout-skin4 .d-cs-switch-container {
    padding: 15px 0px;
  }
  body.rtl .d-cs-layout-skin4 .d-content-toggle-switcher:before {
    right: -12px !important;
  }
  .d-cs-layout-skin4 input:checked + .d-content-toggle-switcher:before {
    transform: translate(55px, -50%);
  }
  
  body.rtl
    .d-cs-layout-skin4
    input:checked
    + .d-content-toggle-switcher:before {
    transform: translate(-55px, -50%);
  }
  
  /* Thumb Gallery */
  
  .d-swiper-outer-wrapper {
    position: relative;
  }
  .d-swiper-container {
    position: relative;
  }
  .d-thumb-container {
    position: absolute;
  }
  
  .d-swiper-outer-wrapper .d-swiper-slide {
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
  }
  
  .d-swiper-outer-wrapper .d-swiper-slide .d-slide-inner {
    color: #7a7a7a;
    /* color: #000000; */
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px;
  }
  .d-slide-inner .d-slide-content {
    padding: 20px 30px;
  }
  .d-slide-inner .d-slide-heading {
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
  }
  .d-slide-inner .d-slide-text {
    font-size: 17px;
    line-height: 1.4;
  }
  
  .d-slide-inner .d-slide-button {
    display: inline-block;
  }
  
  .d-slide-inner .d-slide-btn {
    display: inline-block;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .d-slide-inner .d-slide-heading:not(:last-child),
  .d-slide-inner .d-slide-text:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .d--hr-position-left .d-slide-inner {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  
  .d--hr-position-right .d-slide-inner {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  
  .d--hr-position-center .d-slide-inner {
    -webkit-box-pack: center;
    justify-content: center;
  }
  
  .d--vr-position-top .d-slide-inner {
    -webkit-box-pack: start;
    align-items: flex-start;
  }
  
  .d--vr-position-middle .d-slide-inner {
    -webkit-box-align: center;
    align-items: center;
  }
  
  .d--vr-position-bottom .d-slide-inner {
    -webkit-box-pack: end;
    align-items: flex-end;
  }
  
  .d-swiper-button-prev {
    left: 10px;
  }
  .d-swiper-button-next {
    right: 10px;
  }
  .d-swiper-button {
    position: absolute;
    display: inline-flex;
    z-index: 1;
    cursor: pointer;
    color: #7a7a7a;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .swiper-pagination-bullet {
    margin-bottom: 5px !important;
  }
  
  .d-swiper-outer-wrapper .d-swiper-slide .d-background-overlay {
    width: 100%;
    height: 100%;
    /* top: 0;
    left: 0; */
    position: absolute;
  }
  
  .d-swiper-outer-wrapper .d-gallery-thumbs {
    box-sizing: border-box;
    text-align: center;
  }
  
  .d-swiper-outer-wrapper .d-gallery-thumbs .d-thumb-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    opacity: 0.7;
  }
  
  .d-swiper-outer-wrapper .d-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }
  
  /* .d-swiper-vertical-left-out .d-gallery-thumbs{
    padding: 0 10px 0 0;
  }
  
  .d-swiper-vertical-right-out .d-gallery-thumbs{
    padding: 0 0 0 10px;
  }
  
  .d-swiper-container-vertical{
    display: flex;
    width: 100%;
  }
  
  .d-slider-vertical{
    flex-grow: 1;
  } */
  
  /* .d-aspect-ratio-219 .d-fit-aspect-ratio {
    padding-bottom: 43%;
  }
  .d-aspect-ratio-169 .d-fit-aspect-ratio {
    padding-bottom: 56.25%;
  }
  .d-aspect-ratio-43 .d-fit-aspect-ratio {
    padding-bottom: 75%;
  }
  .d-aspect-ratio-11 .d-fit-aspect-ratio {
    padding-bottom: 100%;
  }  */
  
  /* Chart */
  
  .d-chart-outer-container {
    position: relative;
  }
  .d-chart-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  
  /* Data Table */
  .d-table {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-collapse: collapse;
  }
  .d-table tr {
    border-style: none;
  }
  .d-table__body_row_column {
    border: none;
    overflow: hidden;
  }
  .d-table__head_column {
    transition: all 0.3s ease-in-out;
  }
  .d-table__body_row_column {
    transition: all 0.3s ease-in-out;
  }
  
  /* thead icon */
  .d-head-icon {
    vertical-align: middle;
  }
  .d-table__head-column-wrapper .d-head-img {
    width: 50px;
    display: inline-block;
  }
  .d-table__head-column-wrapper .d-lottie-animation svg {
    width: 70px !important;
    line-height: 0;
  }
  .d-head-icon-before {
    margin-right: 5px;
  }
  .d-head-icon-after {
    margin-left: 5px;
  }
  
  /* tbody icon */
  .d-table__col-inner {
    display: block;
  }
  .d-body-icon {
    vertical-align: middle;
  }
  .d-table__body-column-wrapper .d-body-image {
    width: 70px;
    display: inline-block;
  }
  .d-table__body-column-wrapper .d-table-lottie-animation svg {
    width: 70px !important;
    line-height: 0;
  }
  .d-body-icon-before {
    margin-right: 5px;
  }
  .d-body-icon-after {
    margin-left: 5px;
  }
  .d-table-body__text {
    vertical-align: middle;
  }
  
  /* Table Search */
  .d-table .d-table-search-hide {
    display: none;
  }
  .d-table-search-wrap {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
  }
  
  .d-search-wrap {
    padding: 0;
    margin: 0;
    width: 50%;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    align-items: center;
  }
  
  .d-table-search-wrap .d-table-search-field {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    background-color: #eceeef;
    width: 100%;
    font-size: 15px;
    color: #7a7a7a;
    padding: 10px;
    line-height: 0;
    display: inline-block;
    box-sizing: border-box;
  }
  
  .d-table-search-wrap .d-table-search-field:focus {
    background-color: #eceeef;
  }
  ::placeholder {
    opacity: 0.5;
  }
  .search-icon {
    background-color: #eceeef;
    padding: 0;
    margin: 0;
    padding: 10px;
  }
  .search-icon i {
    color: #7a7a7a73;
    display: flex;
    align-items: center;
    left: 0px;
    font-size: 20px;
  }
  
  /* Sorting icon */
  .d-table__sortable .d-table__sortable-head {
    cursor: pointer;
  }
  
  .d-table__head__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .d-sort-icon {
    padding: 0;
    margin: 0;
    align-self: center;
  }
  .d-table__head-column-wrapper {
    flex-grow: 3;
    display: inline-block;
    width: 100%;
  }
  .d-icon-sort-icon {
    vertical-align: middle;
    display: inline-block;
  }
  .d-icon {
    padding: 0;
    margin: 0;
  }
  .d-table__head__wrapper .d-sort-icon .d-icon {
    font-size: 25px;
  }
  
  .d-table__sortable .d-table__head__wrapper .d-sort-icon-down,
  .d-table__sortable .d-table__head__wrapper .d-sort-icon-up {
    display: none;
  }
  .d-table__sortable
    .d-table__sort-Desc
    .d-table__head__wrapper
    .d-icon-sort-icon,
  .d-table__sortable
    .d-table__sort-Asc
    .d-table__head__wrapper
    .d-icon-sort-icon {
    display: none;
  }
  .d-table__sortable
    .d-table__sort-Desc
    .d-table__head__wrapper
    .d-sort-icon-down,
  .d-table__sortable
    .d-table__sort-Asc
    .d-table__head__wrapper
    .d-sort-icon-up {
    display: block;
  }
  