﻿    .custom-switch {
        position: relative;
        display: inline-block;
    }

    .custom-switch input {
        display: none;
    }

    .custom-switch label {
        cursor: pointer;
        padding-left: 50px;
        position: relative;
        line-height: 25px;
    }
    /* Fondo del switch */
    .custom-switch label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 2px;
        width: 40px;
        height: 20px;
        background: #ccc;
        border-radius: 20px;
        transition: background 0.3s;
    }
    /* Botón del switch */
    .custom-switch label::after {
        content: "";
        position: absolute;
        left: 2px;
        top: 4px;
        width: 16px;
        height: 16px;
        background: #fff;
        border-radius: 50%;
        transition: transform 0.3s;
    }
    /* Estado activo */
        .custom-switch input:checked + label::before {
            background: #31708f;
        }

    .custom-switch input:checked + label::after {
        transform: translateX(20px);
    }


.requiredfield-switch::before {
    color: #e78200;
    content: "*" !important;
    font-family: arial;
    font-size: 20px;

    top: 2px;
}