/* Hide the browser's default radio button */

    .modal-template__slide p.titulo-pregunta{
        text-align: justify;
        font-size: 18px;
    }

    .modal-template__slide label {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        text-align: left;
    }

    .modal-template__slide input {
        position: absolute;
        opacity: 0;
    }

    /* Create a custom radio button */
    .modal-template__slide .checkmark {
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        height: 25px;
        width: 25px;
        background-color: #eee;
    }

    .modal-template__slide .checkmark.checkmarkradio {
        border-radius: 50%;
    }

    /* On mouse-over, add a grey background color */
    .modal-template__slide:hover input ~ .checkmark {
        background-color: #ccc;
    }

    /* When the radio button is checked, add a blue background */
    .modal-template__slide input:checked ~ .checkmark {
        background-color: #2196F3;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .modal-template__slide .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    .modal-template__slide input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    .modal-template__slide .checkmark.checkmarkradio:after {
        top: 9px;
        left: 9px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: white;
    }


    /* Style the checkmark/indicator */
    .modal-template__slide .checkmark.checkmarkcheck:after {
        left: 11px;
        top: 7px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.fRadios1{
	margin-top: 1rem;
	margin-bottom: 2rem;
}