/** Shopify CDN: Minification failed

Line 140:3 Expected ":"

**/
warranty-widget {
  border: 1px solid #294ACD;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  display: block;
  cursor: pointer;
  opacity: 0.6;
  background: #F1FFFE;

}

.warranty-widget .warranty-header {
    display: block;
}

.warranty-widget .toggle-container {
  background: #1d4ed8;
  padding: 6px 12px;
  border-radius: 8px;
  color: white;
  justify-content: space-between;
  padding: 12px 16px;
}

.warranty-widget .warranty-text {
  font-weight: 400;
  text-align: center;
  font-size: 12px;
}


.warranty-widget.active .warranty-toggle {
  background: white;  
}

.warranty-widget.active .warranty-toggle::after {
  background: #1d4ed8;
}

.warranty-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.warranty-header-text {
  display: block;
}

.toggle-container {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  align-items: flex-start;
}
.warranty-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
}
.warranty-price {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
}
.warranty-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 16px;
  margin-top: 2px;
}
.warranty-features {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.warranty-feature {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
}
.warranty-feature-icon {
  margin-right: 5px;
  color: #4a90e2;
}

warranty-widget .warranty-toggle {
  display: block;
  width: 50px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  position: relative;
  transition: background-color 0.3s;
  flex-shrink: 0;
}

.warranty-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 28px;
  transform: translateX(-26px);
  transition: transform 0.3s;
}

.warranty-widget.inactive .warranty-toggle {
  background-color: #ccc;
}

.warranty-widget.active {
  opacity: 1;
}
.warranty-widget.active .warranty-toggle::after {
  transform: translateX(0);
}

.warranty-checkbox {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  border-radius: 2px;
  color: #c5c5c5;
  flex-shrink: 0;
  m
}

.warranty-widget.active .warranty-checkbox {
  background: blue;
  color: white;
}


