If you are using more than one, it is reasonable to move the styles out to separated template. Otherwise you are declaring same styles all over and over. Well, the last one wins of course but if you ever need to change something, it takes to change it for all of them. And if you make some mistakes, it is too hard to find.
Example with two and separated CSS and a small bonus 
[
{
"id": "bdc44b29.79d388",
"type": "ui_template",
"z": "98fb9802851faeed",
"group": "20ae1040.3cf58",
"name": "confirm slider based on md-slider",
"order": 1,
"width": "6",
"height": "1",
"format": "<div class=\"confirm-slider-container\" >\n <div class=\"confirm-slider-label\">Slide to confirm</div>\n <md-slider id=\"{{'slider_'+$id}}\" ng-mousedown=\"down()\" data-conent=\"OK\" ng-model=\"slidervalue\" step=\"0.01\" min=\"0\" max=\"1\" value=\"0.1\" aria-label=\"confirm-slider\"></md-slider>\n</div>\n\n<script>\n(function(scope) {\n let isDown = false\n scope.slidervalue = 0.01 \n scope.$watch('slidervalue', function(slidervalue) {\n if (slidervalue) { \n if(slidervalue < 0.1){\n scope.slidervalue = 0.1\n }\n let c = scope.slidervalue >= 1 ? '✓' : '➪'\n $(\"#slider_\"+scope.$id).find('.md-track-fill').attr('data-content',c);\n }\n })\n scope.down = function(){\n if(isDown){\n return\n }\n\n isDown = true\n scope.send({payload:'moving',topic:'confirm-slider'})\n document.addEventListener('mouseup', scope.up);\n }\n\n scope.up = function(){ \n document.removeEventListener('mouseup', scope.up); \n if(scope.slidervalue >= .9){ \n scope.send({payload:'confirm',topic:'confirm-slider'}) \n scope.slidervalue = 1;\n \n \n }\n else{\n scope.send({payload:'try again',topic:'confirm-slider'})\n scope.slidervalue = 0.1\n \n } \n isDown = false \n }\n \n \n scope.$watch('msg', function(msg) {\n if (msg) {\n if(msg.topic=='confirm-slider'){//ignore internal messages\n return\n } \n scope.slidervalue = 0.1\n }\n });\n})(scope);\n</script>",
"storeOutMessages": true,
"fwdInMessages": true,
"resendOnRefresh": true,
"templateScope": "local",
"className": "",
"x": 330,
"y": 610,
"wires": [
[
"b2c4f7a71c209c35",
"30bfa6e3bb0d3110"
]
]
},
{
"id": "b2c4f7a71c209c35",
"type": "ui_text",
"z": "98fb9802851faeed",
"group": "20ae1040.3cf58",
"order": 3,
"width": 0,
"height": 0,
"name": "",
"label": "status",
"format": "{{msg.payload}}",
"layout": "row-spread",
"className": "",
"x": 600,
"y": 610,
"wires": []
},
{
"id": "30bfa6e3bb0d3110",
"type": "switch",
"z": "98fb9802851faeed",
"name": "if confirm",
"property": "payload",
"propertyType": "msg",
"rules": [
{
"t": "eq",
"v": "confirm",
"vt": "str"
}
],
"checkall": "true",
"repair": false,
"outputs": 1,
"x": 260,
"y": 700,
"wires": [
[
"d9fd9d3359222623"
]
]
},
{
"id": "1df23dbb63e2937c",
"type": "trigger",
"z": "98fb9802851faeed",
"name": "reset 2s",
"op1": "",
"op2": "reset",
"op1type": "nul",
"op2type": "str",
"duration": "2",
"extend": true,
"overrideDelay": false,
"units": "s",
"reset": "",
"bytopic": "all",
"topic": "topic",
"outputs": 1,
"x": 580,
"y": 700,
"wires": [
[
"bdc44b29.79d388"
]
]
},
{
"id": "d9fd9d3359222623",
"type": "change",
"z": "98fb9802851faeed",
"name": "",
"rules": [
{
"t": "set",
"p": "topic",
"pt": "msg",
"to": "reset",
"tot": "str"
}
],
"action": "",
"property": "",
"from": "",
"to": "",
"reg": false,
"x": 420,
"y": 700,
"wires": [
[
"1df23dbb63e2937c"
]
]
},
{
"id": "4490bd001d2c33ee",
"type": "ui_template",
"z": "98fb9802851faeed",
"group": "20ae1040.3cf58",
"name": "confirm-slider CSS",
"order": 9,
"width": 0,
"height": 0,
"format": "<style>\n .confirm-slider-container {\n position: relative;\n }\n\n .confirm-slider-label {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n text-align: center;\n line-height: 29px;\n pointer-events: none;\n z-index: 0;\n\n }\n\n .confirm-slider-container>md-slider {\n height: 40px;\n margin-left: 8px;\n margin-right: 8px;\n top: 0px;\n pointer-events: none;\n z-index: 1;\n }\n\n .confirm-slider-container>md-slider .md-track-container {\n width: 100%;\n position: absolute;\n top: 0px;\n height: 32px;\n }\n\n .confirm-slider-container>md-slider .md-track.md-track {\n border-radius: 32px;\n background: rgba(12 12 12 .2);\n }\n\n .confirm-slider-container>md-slider .md-track.md-track-fill {\n position: relative;\n background: green;\n border-radius: 32px;\n pointer-events: all;\n min-width: 40px;\n }\n\n .confirm-slider-container>md-slider .md-track.md-track-fill:after {\n position: absolute;\n content: attr(data-content);\n font-size: 20px;\n top: 2px;\n right: 10px;\n\n }\n\n .confirm-slider-container>md-slider .md-thumb:after {\n visibility: hidden;\n }\n\n .confirm-slider-container>md-slider .md-focus-ring {\n visibility: hidden !important;\n }\n\n .confirm-slider-container>md-slider .md-thumb {\n transform: scale(1) !important;\n background: transparent;\n pointer-events: all;\n\n }\n</style>",
"storeOutMessages": true,
"fwdInMessages": true,
"resendOnRefresh": true,
"templateScope": "global",
"className": "",
"x": 280,
"y": 560,
"wires": [
[]
]
},
{
"id": "83a24a1d30e1135e",
"type": "ui_template",
"z": "98fb9802851faeed",
"group": "20ae1040.3cf58",
"name": "confirm slider based on md-slider",
"order": 1,
"width": "6",
"height": "1",
"format": "<div class=\"confirm-slider-container\" >\n <div class=\"confirm-slider-label\">Slide to right to confirm</div>\n <md-slider id=\"{{'slider_'+$id}}\" ng-mousedown=\"down()\" data-conent=\"OK\" ng-model=\"slidervalue\" step=\"0.01\" min=\"0\" max=\"1\" value=\"0.1\" aria-label=\"confirm-slider\"></md-slider>\n</div>\n\n<script>\n(function(scope) {\n let isDown = false\n scope.slidervalue = 0.01 \n scope.$watch('slidervalue', function(slidervalue) {\n if (slidervalue) { \n if(slidervalue < 0.1){\n scope.slidervalue = 0.1\n }\n let c = scope.slidervalue >= 1 ? '✓' : '➪'\n $(\"#slider_\"+scope.$id).find('.md-track-fill').attr('data-content',c);\n }\n })\n scope.down = function(){\n if(isDown){\n return\n }\n\n isDown = true\n scope.send({payload:'moving',topic:'confirm-slider'})\n document.addEventListener('mouseup', scope.up);\n }\n\n scope.up = function(){ \n document.removeEventListener('mouseup', scope.up); \n if(scope.slidervalue >= .9){ \n scope.send({payload:'confirm',topic:'confirm-slider'}) \n scope.slidervalue = 1;\n \n \n }\n else{\n scope.send({payload:'try again',topic:'confirm-slider'})\n scope.slidervalue = 0.1\n \n } \n isDown = false \n }\n \n \n scope.$watch('msg', function(msg) {\n if (msg) {\n if(msg.topic=='confirm-slider'){//ignore internal messages\n return\n } \n scope.slidervalue = 0.1\n }\n });\n})(scope);\n</script>",
"storeOutMessages": true,
"fwdInMessages": true,
"resendOnRefresh": true,
"templateScope": "local",
"className": "",
"x": 330,
"y": 740,
"wires": [
[
"99ac61604c06bc59",
"e7d804325b4d0c00"
]
]
},
{
"id": "99ac61604c06bc59",
"type": "ui_text",
"z": "98fb9802851faeed",
"group": "20ae1040.3cf58",
"order": 3,
"width": 0,
"height": 0,
"name": "",
"label": "status",
"format": "{{msg.payload}}",
"layout": "row-spread",
"className": "",
"x": 600,
"y": 740,
"wires": []
},
{
"id": "e7d804325b4d0c00",
"type": "switch",
"z": "98fb9802851faeed",
"name": "if confirm",
"property": "payload",
"propertyType": "msg",
"rules": [
{
"t": "eq",
"v": "confirm",
"vt": "str"
}
],
"checkall": "true",
"repair": false,
"outputs": 1,
"x": 260,
"y": 830,
"wires": [
[
"1db7ed42401c5184"
]
]
},
{
"id": "a920f5344520a12e",
"type": "trigger",
"z": "98fb9802851faeed",
"name": "reset 2s",
"op1": "",
"op2": "reset",
"op1type": "nul",
"op2type": "str",
"duration": "2",
"extend": true,
"overrideDelay": false,
"units": "s",
"reset": "",
"bytopic": "all",
"topic": "topic",
"outputs": 1,
"x": 580,
"y": 830,
"wires": [
[
"83a24a1d30e1135e"
]
]
},
{
"id": "1db7ed42401c5184",
"type": "change",
"z": "98fb9802851faeed",
"name": "",
"rules": [
{
"t": "set",
"p": "topic",
"pt": "msg",
"to": "reset",
"tot": "str"
}
],
"action": "",
"property": "",
"from": "",
"to": "",
"reg": false,
"x": 420,
"y": 830,
"wires": [
[
"a920f5344520a12e"
]
]
},
{
"id": "20ae1040.3cf58",
"type": "ui_group",
"name": "Slider",
"tab": "6b520bda.e997a4",
"order": 1,
"disp": true,
"width": "6",
"collapse": false,
"className": ""
},
{
"id": "6b520bda.e997a4",
"type": "ui_tab",
"name": "Testing",
"icon": "dashboard",
"order": 1,
"disabled": false,
"hidden": false
}
]