/* -------------------Setup Extend------------- */
.integrazo-fc-setup-extend-span-header
{
  font-size: 20px;
  font-weight: 500;
}
/* Toggle switch wrapper */
.integrazo-fc-setup-extend-toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

/* Hide the default checkbox */
.integrazo-fc-setup-extend-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.integrazo-fc-setup-extend-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: background-color 0.4s;
    border-radius: 20px;
}

.integrazo-fc-setup-extend-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: transform 0.4s;
    border-radius: 50%;
}

/* Checked state */
.integrazo-fc-setup-extend-toggle-input:checked + .integrazo-fc-setup-extend-toggle-slider {
    background-color: #2196F3;
}

.integrazo-fc-setup-extend-toggle-input:checked + .integrazo-fc-setup-extend-toggle-slider:before {
    transform: translateX(20px);
}

