input[type="submit"] {
  cursor: pointer;
}
input[type="text"]:focus-within,
input[type="email"]:focus-within,
input[type="tel"]:focus-within,
input[type="url"]:focus-within,
input[type="number"]:focus-within,
input[type="search"]:focus-within,
input[type="password"]:focus-within,
input[type="date"]:focus-within {
  outline: none;
}

.animated-svg path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.5s ease-out;
}

/* Codeefly Latest Posts */
.codeefly-recent-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 17px;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .codeefly-recent-post-item {
    margin-bottom: 30px;
  }
}
.codeefly-recent-post-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .codeefly-recent-post-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}
.codeefly-recent-post-item .codeefly-recent-post-item-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.codeefly-recent-post-item .codeefly-recent-post-item-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
.codeefly-recent-post-item .codeefly-recent-post-item-content p {
  font-size: 15px;
  line-height: 22px;
  color: var(--theme-1);
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .codeefly-recent-post-item .codeefly-recent-post-item-content p {
    margin-bottom: 5px;
  }
}
.codeefly-recent-post-item .codeefly-recent-post-item-content h6 {
  font-size: 18px;
  line-height: 1.7;
}
.codeefly-recent-post-item .codeefly-recent-post-item-content h6 a:hover {
  color: var(--theme);
}

.codeefly-accordion-icon-wrapper {
  flex-shrink: 0;
}
.codeefly-btn {
  display: flex;
}
.codeefly-btn-type-underline {
  position: relative;
}
.codeefly-btn-type-underline::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.codeefly-btn-type-underline:hover::after {
  content: "";
  width: 0;
}
.eicon-codeefly-addons::before {
  content: url(../../assets/images/logo.png);
}
.icon-flex .elementor-image-box-wrapper {
  display: flex;
  gap: 5px;
}

.codeefly-btn-type-modern {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  width: max-content;
  filter: url(#buttonFilter);
  display: flex;
  flex-direction: row !important;
}
.codeefly-btn-type-modern span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.codeefly-btn-type-modern .icon-wrapper {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.codeefly-btn-type-modern:hover .icon-wrapper {
  transform: translateX(0.75rem) rotate(45deg);
}
.codeefly-btn:not(.codeefly-btn-type-modern) i {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
