
/* caredsk How To Start Widget
   Scoped to .caredsk-section to avoid collisions.
*/
.caredsk-section{
  --green:#1AA589;
  --blue:#355f71;
  --blue1:#274653;
  --blue2:#518ea7;
  --yellow:#E9C46A;
  --text:#1D1D1D;
  --cardBg:#F6F6F6;
  --cardBg2:#F6F6F8;
  --mutedLine:rgba(0,0,0,.5);
  --cardHover:#f5f3ef;

  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0 10px 150px;
  gap:10px;
  width:100%;
  font-family:"Open Sans",sans-serif;
  color:var(--text);
  box-sizing:border-box;
}

.caredsk-section *{box-sizing:border-box;}

.caredsk-section .cs-container{
  width: 100%;
  max-width:1420px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:64px;
}

.caredsk-section .cs-tabs{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.caredsk-section .cs-tab{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px 16px;
  gap:10px;
  height:70px;
  border-radius:40px;
  border:0;
  font-weight:700;
  font-size:24px;
  line-height:33px;
  cursor:pointer;
  white-space:nowrap;
  background:#F0F0F0;
  color:#000;
}

.caredsk-section .cs-tab-green{width:345px;}
.caredsk-section .cs-tab-gray{width:412px;}

.caredsk-section[data-active-tab="caredsk"] .cs-tab-green{background:var(--green);color:#fff;}
.caredsk-section[data-active-tab="caredsk"] .cs-tab-gray{background:#F0F0F0;color:#000;}

.caredsk-section[data-active-tab="caredskrom"] .cs-tab-green{background:#F0F0F0;color:#000;}
.caredsk-section[data-active-tab="caredskrom"] .cs-tab-gray{background:var(--blue);color:#fff;}

.caredsk-section .cs-panels{width:100%;}
.caredsk-section .cs-panel{display:none;width:100%;}
.caredsk-section .cs-panel.active{display:block;}

.caredsk-section .cs-row{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  gap:25px;
  width:100%;
}

.caredsk-section .cs-left-card{
  width:425px;
  border-radius:24px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:61px 0;
  flex:0 0 auto;
}

.caredsk-section .cs-left-card-green{background:var(--green);}
.caredsk-section .cs-left-card-blue{background:linear-gradient(135deg,var(--blue1),var(--blue2));}

.caredsk-section .cs-left-inner{
  width:100%;
  padding:50px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:30px;
}

.caredsk-section .cs-left-copy{
  width:100%;
  font-weight:700;
  font-size:24px;
  line-height:33px;
  color:#fff;
}

.caredsk-section .cs-cta{
  display:flex;
  align-items:center;
  width:100%;
  max-width:340px;
  height:40px;
}

/* CTA button */
.caredsk-section .caredsk-btn{
  --w: 340px;
  --h: 40px;
  --icon: 40px;

  position: relative;
  display: block;
  width: var(--w);
  max-width: 100%;
  height: var(--h);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.caredsk-section .caredsk-btn__pill{
  position: absolute;
  top: 0; bottom: 0;
  left: var(--icon);
  right: 0;
  background: var(--yellow);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left .45s cubic-bezier(.22,1,.36,1), right .45s cubic-bezier(.22,1,.36,1);
}

.caredsk-section .caredsk-btn__text{
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 179%;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  padding: 0 16px;
}

.caredsk-section .caredsk-btn__icon{
  position: absolute;
  top: 0; left: 0;
  width: var(--icon);
  height: var(--h);
  background: #fff;
  border-radius: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left .45s cubic-bezier(.22,1,.36,1);
}

.caredsk-section .caredsk-btn:hover .caredsk-btn__icon,
.caredsk-section .caredsk-btn:focus-visible .caredsk-btn__icon,
.caredsk-section .caredsk-btn:active .caredsk-btn__icon{
  left: calc(100% - var(--icon));
}

.caredsk-section .caredsk-btn:hover .caredsk-btn__pill,
.caredsk-section .caredsk-btn:focus-visible .caredsk-btn__pill,
.caredsk-section .caredsk-btn:active .caredsk-btn__pill{
  left: 0;
  right: var(--icon);
}

.caredsk-section .caredsk-btn:focus-visible{
  outline: 2px solid #000;
  outline-offset: 3px;
  border-radius: 40px;
}

.caredsk-section .caredsk-btn--outline .caredsk-btn__pill{
  background: transparent;
  border: 2px solid #fff;
}

.caredsk-section .caredsk-btn--outline .caredsk-btn__icon{
  background: transparent;
  border: 2px solid #fff;
}

.caredsk-section .caredsk-btn__text--white{color:#fff;}

@media (max-width: 480px){
  .caredsk-section .caredsk-btn{ width: 100%; }
  .caredsk-section .caredsk-btn__text{ font-size: 14px; }
}

/* Carousel layout */
.caredsk-section .cs-right-card{
  flex:1;
  min-width:0;
  border-radius:24px;
  overflow:visible;
}

.caredsk-section .cs-carousel{
  width:100%;
  border-radius:24px;
  position:relative;
  overflow:visible;
}

.caredsk-section .cs-viewport{
  width:100%;
  overflow:hidden;
  border-radius:24px;
  position:relative;
}

.caredsk-section .cs-track{
  display:flex;
  flex-wrap:nowrap;
  will-change:transform;
  transition:transform 720ms cubic-bezier(.22,.61,.36,1);
}

.caredsk-section .cs-slide{
  flex:0 0 100%;
  width:100%;
  display:flex;
  gap:25px;
  padding:0 68px 0 0;
  align-items:stretch;
}

.caredsk-section .cs-card{
  width:425px;
  min-height:520px;
  border-radius:24px;
  position:relative;
  overflow:hidden;
  background:var(--cardBg);
  flex:0 0 auto;
  clip-path: polygon(0 0, 67% 0, 100% 20%, 100% 100%, 0 100%, 0% 50%);
}

.caredsk-section .cs-card.cs-card-gray{transition: background-color .25s ease;}
.caredsk-section .cs-card.cs-card-gray:hover{background:var(--cardHover);}

.caredsk-section .cs-card-empty{visibility:hidden;}

.caredsk-section .cs-card-pad{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  padding:50px 40px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.caredsk-section .cs-icowrap{display:flex;gap:12px;align-items:center;}
.caredsk-section .cs-ico{
  width:78px;height:78px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.caredsk-section .cs-ico-main{color:#fff;}
.caredsk-section .cs-ico-green{background:var(--ico-bg-caredsk, var(--green));}
.caredsk-section .cs-ico-blue{background:var(--ico-bg-caredskrom, var(--blue));}
.caredsk-section .cs-ico i{font-size:22px;}

.caredsk-section .cs-ico svg{width:24px;height:24px;display:block;}
.caredsk-section .cs-ico svg *{shape-rendering:geometricPrecision;}
.caredsk-section .cs-ico svg [stroke]:not([stroke="none"]){stroke:currentColor;}
.caredsk-section .cs-ico svg [fill]:not([fill="none"]){fill:currentColor;}
.caredsk-section .cs-ico svg path:not([stroke]){stroke:currentColor;}
.caredsk-section .cs-ico svg path:not([fill]){fill:currentColor;}

/* Image icon */
.caredsk-section .cs-ico.cs-ico-image{background:transparent;}
.caredsk-section .cs-panel[data-panel="caredsk"] .cs-ico.cs-ico-image{background:#35a589;}
.caredsk-section .cs-panel[data-panel="caredskrom"] .cs-ico.cs-ico-image{background:#355f71;}
.caredsk-section .cs-ico-image .cs-icon-img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  border-radius:50%;
}


/* Link icon bubble */
.caredsk-section .cs-ico-link{
  position:relative;
  background:#fff;
  border:1.3px solid rgba(0,0,0,.5);
  color:#000;
  transition: background-color .25s ease, border-color .25s ease;
  text-decoration:none;
}
.caredsk-section .cs-ico-link i{display:none !important;}
.caredsk-section .cs-ico-link::after{
  content:"";
  width:22px;height:22px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  transition: filter .25s ease;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7' stroke='%23000' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M9 7h8v8' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.caredsk-section .cs-card:hover .cs-ico-link{background:#000;border-color:#000;}
.caredsk-section .cs-card:hover .cs-ico-link::after{filter: invert(1);}

.caredsk-section .cs-title{
  font-weight:700;
  font-size:34px;
  line-height:46px;
  color:var(--text);
  transition: color .25s ease;
}

.caredsk-section .cs-panel[data-panel="caredsk"] .cs-card:hover .cs-title{color:var(--green);}
.caredsk-section .cs-panel[data-panel="caredskrom"] .cs-card:hover .cs-title{color:var(--blue);}

.caredsk-section .cs-line{
  width:345px;
  height:0;
  border-top:1px solid var(--mutedLine);
}

.caredsk-section .cs-list{
  margin:0;
  padding-left:22px;
  font-size:20px;
  line-height:1.3;
  color:var(--text);
}
.caredsk-section .cs-list li+li{margin-top:10px;}

.caredsk-section .cs-desc{
  font-size:20px;
  line-height:1.15;
  color:var(--text);
  max-width:345px;
}

.caredsk-section .cs-footer{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 54px 10px;
}

.caredsk-section .cs-nav{
  width:44px;height:44px;border-radius:50%;
  border:1px solid rgba(0,0,0,.25);
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  flex:0 0 auto;
}
.caredsk-section .cs-nav:disabled{opacity:.35;cursor:default;}

.caredsk-section .cs-bar{
  flex:1;
  height:14px;
  background:#F6F6F6;
  border-radius:20px;
  overflow:hidden;
}
.caredsk-section .cs-bar-fill{
  height:100%;
  width:0%;
  background:var(--green);
  border-radius:20px;
  transition:width 250ms ease;
}
.caredsk-section .cs-panel[data-panel="caredskrom"] .cs-bar-fill{background:var(--blue);}

/* Responsive */
@media (max-width: 1024px){
  .caredsk-section{padding:0 10px 110px;}
  .caredsk-section .cs-container{padding:0 20px;gap:28px;}
  .caredsk-section .cs-row{flex-direction:column;gap:18px;}
  .caredsk-section .cs-left-card{width:100%;padding:28px 0;}
  .caredsk-section .cs-left-inner{padding:28px 22px;}
  .caredsk-section .cs-left-copy{font-size:18px;line-height:28px;}
  .caredsk-section .cs-tab{height:64px;font-size:18px;border-radius:32px;}
  .caredsk-section .cs-tab-green,.caredsk-section .cs-tab-gray{width:auto;min-width:200px;}
  .caredsk-section .cs-slide{padding:0;gap:16px;}
  .caredsk-section .cs-card{width:calc((100% - 16px)/2);min-height:unset;}
  .caredsk-section .cs-card-pad{padding:28px 22px;}
  .caredsk-section .cs-title{font-size:26px;line-height:34px;}
  .caredsk-section .cs-list,.caredsk-section .cs-desc{font-size:16px;}
  .caredsk-section .cs-line{width:100%;}
  .caredsk-section .cs-footer{padding:14px 16px 10px;}
}

@media (max-width: 640px){
  .caredsk-section{padding:0 10px 80px;}
  .caredsk-section .cs-container{gap:20px;}
  .caredsk-section .cs-tabs{gap:10px;}
  .caredsk-section .cs-tab{
    width:100%;
    height:54px;
    font-size:15px;
    border-radius:26px;
  }
  .caredsk-section .cs-tab-green,
  .caredsk-section .cs-tab-gray{width:100%;min-width:0;}

  .caredsk-section .cs-left-inner{padding:20px 18px;gap:20px;}
  .caredsk-section .cs-left-copy{font-size:16px;line-height:26px;}
  .caredsk-section .cs-cta{max-width:100%;}

  .caredsk-section .cs-viewport{border-radius:16px;}
  .caredsk-section .cs-slide{gap:0;padding:0;}
  .caredsk-section .cs-card{width:100%;clip-path:none;border-radius:16px;}
  .caredsk-section .cs-card + .cs-card{display:none;}
  .caredsk-section .cs-card-pad{padding:24px 20px;gap:16px;}

  .caredsk-section .cs-ico{width:56px;height:56px;}
  .caredsk-section .cs-ico i{font-size:17px;}
  .caredsk-section .cs-ico svg{width:20px;height:20px;}
  .caredsk-section .cs-title{font-size:20px;line-height:28px;}
  .caredsk-section .cs-list{font-size:15px;line-height:1.4;padding-left:18px;}
  .caredsk-section .cs-desc{font-size:15px;line-height:1.4;max-width:100%;}
  .caredsk-section .cs-footer{gap:8px;padding:10px 12px 8px;}
  .caredsk-section .cs-nav{width:38px;height:38px;}
  .caredsk-section .cs-bar{height:8px;}
}

@media (max-width: 375px){
  .caredsk-section{padding:0 8px 60px;}
  .caredsk-section .cs-container{padding:0 14px;gap:16px;}
  .caredsk-section .cs-tab{height:48px;font-size:14px;border-radius:22px;}
  .caredsk-section .cs-left-inner{padding:18px 14px;gap:16px;}
  .caredsk-section .cs-left-copy{font-size:15px;line-height:24px;}
  .caredsk-section .cs-card-pad{padding:20px 16px;gap:14px;}
  .caredsk-section .cs-ico{width:50px;height:50px;}
  .caredsk-section .cs-title{font-size:18px;line-height:26px;}
  .caredsk-section .cs-list,
  .caredsk-section .cs-desc{font-size:14px;}
}
