.genesis-custom-blocks-editor__ssr { pointer-events: none; }
.genesis-custom-blocks-editor__ssr * { box-sizing: border-box; }

.integration-template {
  transition: all .2s linear;
  font-family: Circular, "Circular-fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #C8CEED;
  background: #F3F3FE;
  box-shadow: 0px 4px 8px 0px rgba(84, 95, 111, 0.16), 0px 0px 2px 0px rgba(37, 45, 91, 0.04);
  margin: 20px 0;
} 
.integration-template.is-opened,
.integration-template:hover {
  border-color:#0075E3;
}
.integration-template-header {
  position: relative;
  background-color: #fff;
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;  
  gap: 24px;
}
.integration-template[data-collapsible="1"] .integration-template-header {
  cursor: pointer;
}
.integration-template-header .integration-template-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.integration-template-header .integration-template-logos img.itc-jf-logo {
  width: auto !important;
  height: 34px !important;
}
.integration-template-header .integration-template-logos img.itc-t-logo {
  width: auto !important;
  height: 34px !important;
}
.integration-template-header .integration-template-logos svg {
  width: 34px;
  min-width: 34px;
  height: 34px;
}
.integration-template-header .integration-template-title {
  color: #0A1551;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.252px;
  margin: 0;
  flex-grow: 1;
}
.integration-template-header .integration-template-details {
  transition: all .2s linear;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.084px;
  padding: 6px 8px;
  border-radius: 4px;
  align-items: center;
  gap: 12px;
  color: #0075E3;
}
.integration-template:not([data-collapsible="1"]) .integration-template-header .integration-template-details  {
  display: none !important;
}

.integration-template.is-opened .integration-template-details,
.integration-template-header:hover .integration-template-details {
  background-color: #edf8ff;
}
.integration-template-header .integration-template-details:after {
  content: '';
  width: 14px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath fill='%230075E3' fill-rule='evenodd' d='M.578.91a.833.833 0 0 1 1.178 0L7 6.156 12.244.91a.833.833 0 0 1 1.179 1.178L7.589 7.923a.833.833 0 0 1-1.178 0L.578 2.089a.833.833 0 0 1 0-1.178Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transition: all .2s linear;
}
.integration-template.is-opened .integration-template-header .integration-template-details:after {
  transform: rotate(-180deg);
}

.integration-template-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.integration-template.is-opened .integration-template-content {
  height: 100%;
  opacity: 1;
}
.integration-template-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px 24px;
}
.integration-template-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.176px;
}
.integration-template-text .integration-template-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.integration-template-text .integration-template-ctas a {
  transition: all .2s linear;
  text-align: center;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 114.286% */
  letter-spacing: -0.084px;
  border-radius: 4px;
}
.integration-template-text .integration-template-ctas .itc-learn-more {
  border: 1px solid #C8CEED;
  color: #343C6A;
}
.integration-template-text .integration-template-ctas .itc-learn-more:hover {
  border-color: #979dc6;
  color: #252d5b;
}
.integration-template-text .integration-template-ctas .itc-main {
  border: 1px solid #0075E3;
  background-color: #0075E3;
  color: #fff;
}
.integration-template-text .integration-template-ctas .itc-main:hover {
  background-color: #0066c3;
  border-color: #0066c3;
}
@media (max-width:580px) {
  .integration-template-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 12px 14px;
  }
  .integration-template-details {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .integration-template-text {
    padding: 12px 14px;
  }
}