.',
+ list[i]
+ );
+ }
+ }
+ addAttr(el, name, JSON.stringify(value), list[i]);
+ // #6887 firefox doesn't update muted state if set via attribute
+ // even immediately after element creation
+ if (!el.component &&
+ name === 'muted' &&
+ platformMustUseProp(el.tag, el.attrsMap.type, name)) {
+ addProp(el, name, 'true', list[i]);
+ }
+ }
+ }
+}
+
+function checkInFor (el) {
+ var parent = el;
+ while (parent) {
+ if (parent.for !== undefined) {
+ return true
+ }
+ parent = parent.parent;
+ }
+ return false
+}
+
+function parseModifiers (name) {
+ var match = name.match(modifierRE);
+ if (match) {
+ var ret = {};
+ match.forEach(function (m) { ret[m.slice(1)] = true; });
+ return ret
+ }
+}
+
+function makeAttrsMap (attrs) {
+ var map = {};
+ for (var i = 0, l = attrs.length; i < l; i++) {
+ if (
+ map[attrs[i].name] && !isIE && !isEdge
+ ) {
+ warn$2('duplicate attribute: ' + attrs[i].name, attrs[i]);
+ }
+ map[attrs[i].name] = attrs[i].value;
+ }
+ return map
+}
+
+// for script (e.g. type="x/template") or style, do not decode content
+function isTextTag (el) {
+ return el.tag === 'script' || el.tag === 'style'
+}
+
+function isForbiddenTag (el) {
+ return (
+ el.tag === 'style' ||
+ (el.tag === 'script' && (
+ !el.attrsMap.type ||
+ el.attrsMap.type === 'text/javascript'
+ ))
+ )
+}
+
+var ieNSBug = /^xmlns:NS\d+/;
+var ieNSPrefix = /^NS\d+:/;
+
+/* istanbul ignore next */
+function guardIESVGBug (attrs) {
+ var res = [];
+ for (var i = 0; i < attrs.length; i++) {
+ var attr = attrs[i];
+ if (!ieNSBug.test(attr.name)) {
+ attr.name = attr.name.replace(ieNSPrefix, '');
+ res.push(attr);
+ }
+ }
+ return res
+}
+
+function checkForAliasModel (el, value) {
+ var _el = el;
+ while (_el) {
+ if (_el.for && _el.alias === value) {
+ warn$2(
+ "<" + (el.tag) + " v-model=\"" + value + "\">: " +
+ "You are binding v-model directly to a v-for iteration alias. " +
+ "This will not be able to modify the v-for source array because " +
+ "writing to the alias is like modifying a function local variable. " +
+ "Consider using an array of objects and use v-model on an object property instead.",
+ el.rawAttrsMap['v-model']
+ );
+ }
+ _el = _el.parent;
+ }
+}
+
+/* */
+
+function preTransformNode (el, options) {
+ if (el.tag === 'input') {
+ var map = el.attrsMap;
+ if (!map['v-model']) {
+ return
+ }
+
+ var typeBinding;
+ if (map[':type'] || map['v-bind:type']) {
+ typeBinding = getBindingAttr(el, 'type');
+ }
+ if (!map.type && !typeBinding && map['v-bind']) {
+ typeBinding = "(" + (map['v-bind']) + ").type";
+ }
+
+ if (typeBinding) {
+ var ifCondition = getAndRemoveAttr(el, 'v-if', true);
+ var ifConditionExtra = ifCondition ? ("&&(" + ifCondition + ")") : "";
+ var hasElse = getAndRemoveAttr(el, 'v-else', true) != null;
+ var elseIfCondition = getAndRemoveAttr(el, 'v-else-if', true);
+ // 1. checkbox
+ var branch0 = cloneASTElement(el);
+ // process for on the main node
+ processFor(branch0);
+ addRawAttr(branch0, 'type', 'checkbox');
+ processElement(branch0, options);
+ branch0.processed = true; // prevent it from double-processed
+ branch0.if = "(" + typeBinding + ")==='checkbox'" + ifConditionExtra;
+ addIfCondition(branch0, {
+ exp: branch0.if,
+ block: branch0
+ });
+ // 2. add radio else-if condition
+ var branch1 = cloneASTElement(el);
+ getAndRemoveAttr(branch1, 'v-for', true);
+ addRawAttr(branch1, 'type', 'radio');
+ processElement(branch1, options);
+ addIfCondition(branch0, {
+ exp: "(" + typeBinding + ")==='radio'" + ifConditionExtra,
+ block: branch1
+ });
+ // 3. other
+ var branch2 = cloneASTElement(el);
+ getAndRemoveAttr(branch2, 'v-for', true);
+ addRawAttr(branch2, ':type', typeBinding);
+ processElement(branch2, options);
+ addIfCondition(branch0, {
+ exp: ifCondition,
+ block: branch2
+ });
+
+ if (hasElse) {
+ branch0.else = true;
+ } else if (elseIfCondition) {
+ branch0.elseif = elseIfCondition;
+ }
+
+ return branch0
+ }
+ }
+}
+
+function cloneASTElement (el) {
+ return createASTElement(el.tag, el.attrsList.slice(), el.parent)
+}
+
+var model$1 = {
+ preTransformNode: preTransformNode
+};
+
+var modules$1 = [
+ klass$1,
+ style$1,
+ model$1
+];
+
+/* */
+
+function text (el, dir) {
+ if (dir.value) {
+ addProp(el, 'textContent', ("_s(" + (dir.value) + ")"), dir);
+ }
+}
+
+/* */
+
+function html (el, dir) {
+ if (dir.value) {
+ addProp(el, 'innerHTML', ("_s(" + (dir.value) + ")"), dir);
+ }
+}
+
+var directives$1 = {
+ model: model,
+ text: text,
+ html: html
+};
+
+/* */
+
+var baseOptions = {
+ expectHTML: true,
+ modules: modules$1,
+ directives: directives$1,
+ isPreTag: isPreTag,
+ isUnaryTag: isUnaryTag,
+ mustUseProp: mustUseProp,
+ canBeLeftOpenTag: canBeLeftOpenTag,
+ isReservedTag: isReservedTag,
+ getTagNamespace: getTagNamespace,
+ staticKeys: genStaticKeys(modules$1)
+};
+
+/* */
+
+var isStaticKey;
+var isPlatformReservedTag;
+
+var genStaticKeysCached = cached(genStaticKeys$1);
+
+/**
+ * Goal of the optimizer: walk the generated template AST tree
+ * and detect sub-trees that are purely static, i.e. parts of
+ * the DOM that never needs to change.
+ *
+ * Once we detect these sub-trees, we can:
+ *
+ * 1. Hoist them into constants, so that we no longer need to
+ * create fresh nodes for them on each re-render;
+ * 2. Completely skip them in the patching process.
+ */
+function optimize (root, options) {
+ if (!root) { return }
+ isStaticKey = genStaticKeysCached(options.staticKeys || '');
+ isPlatformReservedTag = options.isReservedTag || no;
+ // first pass: mark all non-static nodes.
+ markStatic$1(root);
+ // second pass: mark static roots.
+ markStaticRoots(root, false);
+}
+
+function genStaticKeys$1 (keys) {
+ return makeMap(
+ 'type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap' +
+ (keys ? ',' + keys : '')
+ )
+}
+
+function markStatic$1 (node) {
+ node.static = isStatic(node);
+ if (node.type === 1) {
+ // do not make component slot content static. this avoids
+ // 1. components not able to mutate slot nodes
+ // 2. static slot content fails for hot-reloading
+ if (
+ !isPlatformReservedTag(node.tag) &&
+ node.tag !== 'slot' &&
+ node.attrsMap['inline-template'] == null
+ ) {
+ return
+ }
+ for (var i = 0, l = node.children.length; i < l; i++) {
+ var child = node.children[i];
+ markStatic$1(child);
+ if (!child.static) {
+ node.static = false;
+ }
+ }
+ if (node.ifConditions) {
+ for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {
+ var block = node.ifConditions[i$1].block;
+ markStatic$1(block);
+ if (!block.static) {
+ node.static = false;
+ }
+ }
+ }
+ }
+}
+
+function markStaticRoots (node, isInFor) {
+ if (node.type === 1) {
+ if (node.static || node.once) {
+ node.staticInFor = isInFor;
+ }
+ // For a node to qualify as a static root, it should have children that
+ // are not just static text. Otherwise the cost of hoisting out will
+ // outweigh the benefits and it's better off to just always render it fresh.
+ if (node.static && node.children.length && !(
+ node.children.length === 1 &&
+ node.children[0].type === 3
+ )) {
+ node.staticRoot = true;
+ return
+ } else {
+ node.staticRoot = false;
+ }
+ if (node.children) {
+ for (var i = 0, l = node.children.length; i < l; i++) {
+ markStaticRoots(node.children[i], isInFor || !!node.for);
+ }
+ }
+ if (node.ifConditions) {
+ for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {
+ markStaticRoots(node.ifConditions[i$1].block, isInFor);
+ }
+ }
+ }
+}
+
+function isStatic (node) {
+ if (node.type === 2) { // expression
+ return false
+ }
+ if (node.type === 3) { // text
+ return true
+ }
+ return !!(node.pre || (
+ !node.hasBindings && // no dynamic bindings
+ !node.if && !node.for && // not v-if or v-for or v-else
+ !isBuiltInTag(node.tag) && // not a built-in
+ isPlatformReservedTag(node.tag) && // not a component
+ !isDirectChildOfTemplateFor(node) &&
+ Object.keys(node).every(isStaticKey)
+ ))
+}
+
+function isDirectChildOfTemplateFor (node) {
+ while (node.parent) {
+ node = node.parent;
+ if (node.tag !== 'template') {
+ return false
+ }
+ if (node.for) {
+ return true
+ }
+ }
+ return false
+}
+
+/* */
+
+var fnExpRE = /^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/;
+var fnInvokeRE = /\([^)]*?\);*$/;
+var simplePathRE = /^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/;
+
+// KeyboardEvent.keyCode aliases
+var keyCodes = {
+ esc: 27,
+ tab: 9,
+ enter: 13,
+ space: 32,
+ up: 38,
+ left: 37,
+ right: 39,
+ down: 40,
+ 'delete': [8, 46]
+};
+
+// KeyboardEvent.key aliases
+var keyNames = {
+ // #7880: IE11 and Edge use `Esc` for Escape key name.
+ esc: ['Esc', 'Escape'],
+ tab: 'Tab',
+ enter: 'Enter',
+ // #9112: IE11 uses `Spacebar` for Space key name.
+ space: [' ', 'Spacebar'],
+ // #7806: IE11 uses key names without `Arrow` prefix for arrow keys.
+ up: ['Up', 'ArrowUp'],
+ left: ['Left', 'ArrowLeft'],
+ right: ['Right', 'ArrowRight'],
+ down: ['Down', 'ArrowDown'],
+ // #9112: IE11 uses `Del` for Delete key name.
+ 'delete': ['Backspace', 'Delete', 'Del']
+};
+
+// #4868: modifiers that prevent the execution of the listener
+// need to explicitly return null so that we can determine whether to remove
+// the listener for .once
+var genGuard = function (condition) { return ("if(" + condition + ")return null;"); };
+
+var modifierCode = {
+ stop: '$event.stopPropagation();',
+ prevent: '$event.preventDefault();',
+ self: genGuard("$event.target !== $event.currentTarget"),
+ ctrl: genGuard("!$event.ctrlKey"),
+ shift: genGuard("!$event.shiftKey"),
+ alt: genGuard("!$event.altKey"),
+ meta: genGuard("!$event.metaKey"),
+ left: genGuard("'button' in $event && $event.button !== 0"),
+ middle: genGuard("'button' in $event && $event.button !== 1"),
+ right: genGuard("'button' in $event && $event.button !== 2")
+};
+
+function genHandlers (
+ events,
+ isNative
+) {
+ var prefix = isNative ? 'nativeOn:' : 'on:';
+ var staticHandlers = "";
+ var dynamicHandlers = "";
+ for (var name in events) {
+ var handlerCode = genHandler(events[name]);
+ if (events[name] && events[name].dynamic) {
+ dynamicHandlers += name + "," + handlerCode + ",";
+ } else {
+ staticHandlers += "\"" + name + "\":" + handlerCode + ",";
+ }
+ }
+ staticHandlers = "{" + (staticHandlers.slice(0, -1)) + "}";
+ if (dynamicHandlers) {
+ return prefix + "_d(" + staticHandlers + ",[" + (dynamicHandlers.slice(0, -1)) + "])"
+ } else {
+ return prefix + staticHandlers
+ }
+}
+
+function genHandler (handler) {
+ if (!handler) {
+ return 'function(){}'
+ }
+
+ if (Array.isArray(handler)) {
+ return ("[" + (handler.map(function (handler) { return genHandler(handler); }).join(',')) + "]")
+ }
+
+ var isMethodPath = simplePathRE.test(handler.value);
+ var isFunctionExpression = fnExpRE.test(handler.value);
+ var isFunctionInvocation = simplePathRE.test(handler.value.replace(fnInvokeRE, ''));
+
+ if (!handler.modifiers) {
+ if (isMethodPath || isFunctionExpression) {
+ return handler.value
+ }
+ return ("function($event){" + (isFunctionInvocation ? ("return " + (handler.value)) : handler.value) + "}") // inline statement
+ } else {
+ var code = '';
+ var genModifierCode = '';
+ var keys = [];
+ for (var key in handler.modifiers) {
+ if (modifierCode[key]) {
+ genModifierCode += modifierCode[key];
+ // left/right
+ if (keyCodes[key]) {
+ keys.push(key);
+ }
+ } else if (key === 'exact') {
+ var modifiers = (handler.modifiers);
+ genModifierCode += genGuard(
+ ['ctrl', 'shift', 'alt', 'meta']
+ .filter(function (keyModifier) { return !modifiers[keyModifier]; })
+ .map(function (keyModifier) { return ("$event." + keyModifier + "Key"); })
+ .join('||')
+ );
+ } else {
+ keys.push(key);
+ }
+ }
+ if (keys.length) {
+ code += genKeyFilter(keys);
+ }
+ // Make sure modifiers like prevent and stop get executed after key filtering
+ if (genModifierCode) {
+ code += genModifierCode;
+ }
+ var handlerCode = isMethodPath
+ ? ("return " + (handler.value) + "($event)")
+ : isFunctionExpression
+ ? ("return (" + (handler.value) + ")($event)")
+ : isFunctionInvocation
+ ? ("return " + (handler.value))
+ : handler.value;
+ return ("function($event){" + code + handlerCode + "}")
+ }
+}
+
+function genKeyFilter (keys) {
+ return (
+ // make sure the key filters only apply to KeyboardEvents
+ // #9441: can't use 'keyCode' in $event because Chrome autofill fires fake
+ // key events that do not have keyCode property...
+ "if(!$event.type.indexOf('key')&&" +
+ (keys.map(genFilterCode).join('&&')) + ")return null;"
+ )
+}
+
+function genFilterCode (key) {
+ var keyVal = parseInt(key, 10);
+ if (keyVal) {
+ return ("$event.keyCode!==" + keyVal)
+ }
+ var keyCode = keyCodes[key];
+ var keyName = keyNames[key];
+ return (
+ "_k($event.keyCode," +
+ (JSON.stringify(key)) + "," +
+ (JSON.stringify(keyCode)) + "," +
+ "$event.key," +
+ "" + (JSON.stringify(keyName)) +
+ ")"
+ )
+}
+
+/* */
+
+function on (el, dir) {
+ if (dir.modifiers) {
+ warn("v-on without argument does not support modifiers.");
+ }
+ el.wrapListeners = function (code) { return ("_g(" + code + "," + (dir.value) + ")"); };
+}
+
+/* */
+
+function bind$1 (el, dir) {
+ el.wrapData = function (code) {
+ return ("_b(" + code + ",'" + (el.tag) + "'," + (dir.value) + "," + (dir.modifiers && dir.modifiers.prop ? 'true' : 'false') + (dir.modifiers && dir.modifiers.sync ? ',true' : '') + ")")
+ };
+}
+
+/* */
+
+var baseDirectives = {
+ on: on,
+ bind: bind$1,
+ cloak: noop
+};
+
+/* */
+
+
+
+
+
+var CodegenState = function CodegenState (options) {
+ this.options = options;
+ this.warn = options.warn || baseWarn;
+ this.transforms = pluckModuleFunction(options.modules, 'transformCode');
+ this.dataGenFns = pluckModuleFunction(options.modules, 'genData');
+ this.directives = extend(extend({}, baseDirectives), options.directives);
+ var isReservedTag = options.isReservedTag || no;
+ this.maybeComponent = function (el) { return !!el.component || !isReservedTag(el.tag); };
+ this.onceId = 0;
+ this.staticRenderFns = [];
+ this.pre = false;
+};
+
+
+
+function generate (
+ ast,
+ options
+) {
+ var state = new CodegenState(options);
+ var code = ast ? genElement(ast, state) : '_c("div")';
+ return {
+ render: ("with(this){return " + code + "}"),
+ staticRenderFns: state.staticRenderFns
+ }
+}
+
+function genElement (el, state) {
+ if (el.parent) {
+ el.pre = el.pre || el.parent.pre;
+ }
+
+ if (el.staticRoot && !el.staticProcessed) {
+ return genStatic(el, state)
+ } else if (el.once && !el.onceProcessed) {
+ return genOnce(el, state)
+ } else if (el.for && !el.forProcessed) {
+ return genFor(el, state)
+ } else if (el.if && !el.ifProcessed) {
+ return genIf(el, state)
+ } else if (el.tag === 'template' && !el.slotTarget && !state.pre) {
+ return genChildren(el, state) || 'void 0'
+ } else if (el.tag === 'slot') {
+ return genSlot(el, state)
+ } else {
+ // component or element
+ var code;
+ if (el.component) {
+ code = genComponent(el.component, el, state);
+ } else {
+ var data;
+ if (!el.plain || (el.pre && state.maybeComponent(el))) {
+ data = genData$2(el, state);
+ }
+
+ var children = el.inlineTemplate ? null : genChildren(el, state, true);
+ code = "_c('" + (el.tag) + "'" + (data ? ("," + data) : '') + (children ? ("," + children) : '') + ")";
+ }
+ // module transforms
+ for (var i = 0; i < state.transforms.length; i++) {
+ code = state.transforms[i](el, code);
+ }
+ return code
+ }
+}
+
+// hoist static sub-trees out
+function genStatic (el, state) {
+ el.staticProcessed = true;
+ // Some elements (templates) need to behave differently inside of a v-pre
+ // node. All pre nodes are static roots, so we can use this as a location to
+ // wrap a state change and reset it upon exiting the pre node.
+ var originalPreState = state.pre;
+ if (el.pre) {
+ state.pre = el.pre;
+ }
+ state.staticRenderFns.push(("with(this){return " + (genElement(el, state)) + "}"));
+ state.pre = originalPreState;
+ return ("_m(" + (state.staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + ")")
+}
+
+// v-once
+function genOnce (el, state) {
+ el.onceProcessed = true;
+ if (el.if && !el.ifProcessed) {
+ return genIf(el, state)
+ } else if (el.staticInFor) {
+ var key = '';
+ var parent = el.parent;
+ while (parent) {
+ if (parent.for) {
+ key = parent.key;
+ break
+ }
+ parent = parent.parent;
+ }
+ if (!key) {
+ state.warn(
+ "v-once can only be used inside v-for that is keyed. ",
+ el.rawAttrsMap['v-once']
+ );
+ return genElement(el, state)
+ }
+ return ("_o(" + (genElement(el, state)) + "," + (state.onceId++) + "," + key + ")")
+ } else {
+ return genStatic(el, state)
+ }
+}
+
+function genIf (
+ el,
+ state,
+ altGen,
+ altEmpty
+) {
+ el.ifProcessed = true; // avoid recursion
+ return genIfConditions(el.ifConditions.slice(), state, altGen, altEmpty)
+}
+
+function genIfConditions (
+ conditions,
+ state,
+ altGen,
+ altEmpty
+) {
+ if (!conditions.length) {
+ return altEmpty || '_e()'
+ }
+
+ var condition = conditions.shift();
+ if (condition.exp) {
+ return ("(" + (condition.exp) + ")?" + (genTernaryExp(condition.block)) + ":" + (genIfConditions(conditions, state, altGen, altEmpty)))
+ } else {
+ return ("" + (genTernaryExp(condition.block)))
+ }
+
+ // v-if with v-once should generate code like (a)?_m(0):_m(1)
+ function genTernaryExp (el) {
+ return altGen
+ ? altGen(el, state)
+ : el.once
+ ? genOnce(el, state)
+ : genElement(el, state)
+ }
+}
+
+function genFor (
+ el,
+ state,
+ altGen,
+ altHelper
+) {
+ var exp = el.for;
+ var alias = el.alias;
+ var iterator1 = el.iterator1 ? ("," + (el.iterator1)) : '';
+ var iterator2 = el.iterator2 ? ("," + (el.iterator2)) : '';
+
+ if (state.maybeComponent(el) &&
+ el.tag !== 'slot' &&
+ el.tag !== 'template' &&
+ !el.key
+ ) {
+ state.warn(
+ "<" + (el.tag) + " v-for=\"" + alias + " in " + exp + "\">: component lists rendered with " +
+ "v-for should have explicit keys. " +
+ "See https://vuejs.org/guide/list.html#key for more info.",
+ el.rawAttrsMap['v-for'],
+ true /* tip */
+ );
+ }
+
+ el.forProcessed = true; // avoid recursion
+ return (altHelper || '_l') + "((" + exp + ")," +
+ "function(" + alias + iterator1 + iterator2 + "){" +
+ "return " + ((altGen || genElement)(el, state)) +
+ '})'
+}
+
+function genData$2 (el, state) {
+ var data = '{';
+
+ // directives first.
+ // directives may mutate the el's other properties before they are generated.
+ var dirs = genDirectives(el, state);
+ if (dirs) { data += dirs + ','; }
+
+ // key
+ if (el.key) {
+ data += "key:" + (el.key) + ",";
+ }
+ // ref
+ if (el.ref) {
+ data += "ref:" + (el.ref) + ",";
+ }
+ if (el.refInFor) {
+ data += "refInFor:true,";
+ }
+ // pre
+ if (el.pre) {
+ data += "pre:true,";
+ }
+ // record original tag name for components using "is" attribute
+ if (el.component) {
+ data += "tag:\"" + (el.tag) + "\",";
+ }
+ // module data generation functions
+ for (var i = 0; i < state.dataGenFns.length; i++) {
+ data += state.dataGenFns[i](el);
+ }
+ // attributes
+ if (el.attrs) {
+ data += "attrs:" + (genProps(el.attrs)) + ",";
+ }
+ // DOM props
+ if (el.props) {
+ data += "domProps:" + (genProps(el.props)) + ",";
+ }
+ // event handlers
+ if (el.events) {
+ data += (genHandlers(el.events, false)) + ",";
+ }
+ if (el.nativeEvents) {
+ data += (genHandlers(el.nativeEvents, true)) + ",";
+ }
+ // slot target
+ // only for non-scoped slots
+ if (el.slotTarget && !el.slotScope) {
+ data += "slot:" + (el.slotTarget) + ",";
+ }
+ // scoped slots
+ if (el.scopedSlots) {
+ data += (genScopedSlots(el, el.scopedSlots, state)) + ",";
+ }
+ // component v-model
+ if (el.model) {
+ data += "model:{value:" + (el.model.value) + ",callback:" + (el.model.callback) + ",expression:" + (el.model.expression) + "},";
+ }
+ // inline-template
+ if (el.inlineTemplate) {
+ var inlineTemplate = genInlineTemplate(el, state);
+ if (inlineTemplate) {
+ data += inlineTemplate + ",";
+ }
+ }
+ data = data.replace(/,$/, '') + '}';
+ // v-bind dynamic argument wrap
+ // v-bind with dynamic arguments must be applied using the same v-bind object
+ // merge helper so that class/style/mustUseProp attrs are handled correctly.
+ if (el.dynamicAttrs) {
+ data = "_b(" + data + ",\"" + (el.tag) + "\"," + (genProps(el.dynamicAttrs)) + ")";
+ }
+ // v-bind data wrap
+ if (el.wrapData) {
+ data = el.wrapData(data);
+ }
+ // v-on data wrap
+ if (el.wrapListeners) {
+ data = el.wrapListeners(data);
+ }
+ return data
+}
+
+function genDirectives (el, state) {
+ var dirs = el.directives;
+ if (!dirs) { return }
+ var res = 'directives:[';
+ var hasRuntime = false;
+ var i, l, dir, needRuntime;
+ for (i = 0, l = dirs.length; i < l; i++) {
+ dir = dirs[i];
+ needRuntime = true;
+ var gen = state.directives[dir.name];
+ if (gen) {
+ // compile-time directive that manipulates AST.
+ // returns true if it also needs a runtime counterpart.
+ needRuntime = !!gen(el, dir, state.warn);
+ }
+ if (needRuntime) {
+ hasRuntime = true;
+ res += "{name:\"" + (dir.name) + "\",rawName:\"" + (dir.rawName) + "\"" + (dir.value ? (",value:(" + (dir.value) + "),expression:" + (JSON.stringify(dir.value))) : '') + (dir.arg ? (",arg:" + (dir.isDynamicArg ? dir.arg : ("\"" + (dir.arg) + "\""))) : '') + (dir.modifiers ? (",modifiers:" + (JSON.stringify(dir.modifiers))) : '') + "},";
+ }
+ }
+ if (hasRuntime) {
+ return res.slice(0, -1) + ']'
+ }
+}
+
+function genInlineTemplate (el, state) {
+ var ast = el.children[0];
+ if (el.children.length !== 1 || ast.type !== 1) {
+ state.warn(
+ 'Inline-template components must have exactly one child element.',
+ { start: el.start }
+ );
+ }
+ if (ast && ast.type === 1) {
+ var inlineRenderFns = generate(ast, state.options);
+ return ("inlineTemplate:{render:function(){" + (inlineRenderFns.render) + "},staticRenderFns:[" + (inlineRenderFns.staticRenderFns.map(function (code) { return ("function(){" + code + "}"); }).join(',')) + "]}")
+ }
+}
+
+function genScopedSlots (
+ el,
+ slots,
+ state
+) {
+ // by default scoped slots are considered "stable", this allows child
+ // components with only scoped slots to skip forced updates from parent.
+ // but in some cases we have to bail-out of this optimization
+ // for example if the slot contains dynamic names, has v-if or v-for on them...
+ var needsForceUpdate = el.for || Object.keys(slots).some(function (key) {
+ var slot = slots[key];
+ return (
+ slot.slotTargetDynamic ||
+ slot.if ||
+ slot.for ||
+ containsSlotChild(slot) // is passing down slot from parent which may be dynamic
+ )
+ });
+
+ // #9534: if a component with scoped slots is inside a conditional branch,
+ // it's possible for the same component to be reused but with different
+ // compiled slot content. To avoid that, we generate a unique key based on
+ // the generated code of all the slot contents.
+ var needsKey = !!el.if;
+
+ // OR when it is inside another scoped slot or v-for (the reactivity may be
+ // disconnected due to the intermediate scope variable)
+ // #9438, #9506
+ // TODO: this can be further optimized by properly analyzing in-scope bindings
+ // and skip force updating ones that do not actually use scope variables.
+ if (!needsForceUpdate) {
+ var parent = el.parent;
+ while (parent) {
+ if (
+ (parent.slotScope && parent.slotScope !== emptySlotScopeToken) ||
+ parent.for
+ ) {
+ needsForceUpdate = true;
+ break
+ }
+ if (parent.if) {
+ needsKey = true;
+ }
+ parent = parent.parent;
+ }
+ }
+
+ var generatedSlots = Object.keys(slots)
+ .map(function (key) { return genScopedSlot(slots[key], state); })
+ .join(',');
+
+ return ("scopedSlots:_u([" + generatedSlots + "]" + (needsForceUpdate ? ",null,true" : "") + (!needsForceUpdate && needsKey ? (",null,false," + (hash(generatedSlots))) : "") + ")")
+}
+
+function hash(str) {
+ var hash = 5381;
+ var i = str.length;
+ while(i) {
+ hash = (hash * 33) ^ str.charCodeAt(--i);
+ }
+ return hash >>> 0
+}
+
+function containsSlotChild (el) {
+ if (el.type === 1) {
+ if (el.tag === 'slot') {
+ return true
+ }
+ return el.children.some(containsSlotChild)
+ }
+ return false
+}
+
+function genScopedSlot (
+ el,
+ state
+) {
+ var isLegacySyntax = el.attrsMap['slot-scope'];
+ if (el.if && !el.ifProcessed && !isLegacySyntax) {
+ return genIf(el, state, genScopedSlot, "null")
+ }
+ if (el.for && !el.forProcessed) {
+ return genFor(el, state, genScopedSlot)
+ }
+ var slotScope = el.slotScope === emptySlotScopeToken
+ ? ""
+ : String(el.slotScope);
+ var fn = "function(" + slotScope + "){" +
+ "return " + (el.tag === 'template'
+ ? el.if && isLegacySyntax
+ ? ("(" + (el.if) + ")?" + (genChildren(el, state) || 'undefined') + ":undefined")
+ : genChildren(el, state) || 'undefined'
+ : genElement(el, state)) + "}";
+ // reverse proxy v-slot without scope on this.$slots
+ var reverseProxy = slotScope ? "" : ",proxy:true";
+ return ("{key:" + (el.slotTarget || "\"default\"") + ",fn:" + fn + reverseProxy + "}")
+}
+
+function genChildren (
+ el,
+ state,
+ checkSkip,
+ altGenElement,
+ altGenNode
+) {
+ var children = el.children;
+ if (children.length) {
+ var el$1 = children[0];
+ // optimize single v-for
+ if (children.length === 1 &&
+ el$1.for &&
+ el$1.tag !== 'template' &&
+ el$1.tag !== 'slot'
+ ) {
+ var normalizationType = checkSkip
+ ? state.maybeComponent(el$1) ? ",1" : ",0"
+ : "";
+ return ("" + ((altGenElement || genElement)(el$1, state)) + normalizationType)
+ }
+ var normalizationType$1 = checkSkip
+ ? getNormalizationType(children, state.maybeComponent)
+ : 0;
+ var gen = altGenNode || genNode;
+ return ("[" + (children.map(function (c) { return gen(c, state); }).join(',')) + "]" + (normalizationType$1 ? ("," + normalizationType$1) : ''))
+ }
+}
+
+// determine the normalization needed for the children array.
+// 0: no normalization needed
+// 1: simple normalization needed (possible 1-level deep nested array)
+// 2: full normalization needed
+function getNormalizationType (
+ children,
+ maybeComponent
+) {
+ var res = 0;
+ for (var i = 0; i < children.length; i++) {
+ var el = children[i];
+ if (el.type !== 1) {
+ continue
+ }
+ if (needsNormalization(el) ||
+ (el.ifConditions && el.ifConditions.some(function (c) { return needsNormalization(c.block); }))) {
+ res = 2;
+ break
+ }
+ if (maybeComponent(el) ||
+ (el.ifConditions && el.ifConditions.some(function (c) { return maybeComponent(c.block); }))) {
+ res = 1;
+ }
+ }
+ return res
+}
+
+function needsNormalization (el) {
+ return el.for !== undefined || el.tag === 'template' || el.tag === 'slot'
+}
+
+function genNode (node, state) {
+ if (node.type === 1) {
+ return genElement(node, state)
+ } else if (node.type === 3 && node.isComment) {
+ return genComment(node)
+ } else {
+ return genText(node)
+ }
+}
+
+function genText (text) {
+ return ("_v(" + (text.type === 2
+ ? text.expression // no need for () because already wrapped in _s()
+ : transformSpecialNewlines(JSON.stringify(text.text))) + ")")
+}
+
+function genComment (comment) {
+ return ("_e(" + (JSON.stringify(comment.text)) + ")")
+}
+
+function genSlot (el, state) {
+ var slotName = el.slotName || '"default"';
+ var children = genChildren(el, state);
+ var res = "_t(" + slotName + (children ? ("," + children) : '');
+ var attrs = el.attrs || el.dynamicAttrs
+ ? genProps((el.attrs || []).concat(el.dynamicAttrs || []).map(function (attr) { return ({
+ // slot props are camelized
+ name: camelize(attr.name),
+ value: attr.value,
+ dynamic: attr.dynamic
+ }); }))
+ : null;
+ var bind$$1 = el.attrsMap['v-bind'];
+ if ((attrs || bind$$1) && !children) {
+ res += ",null";
+ }
+ if (attrs) {
+ res += "," + attrs;
+ }
+ if (bind$$1) {
+ res += (attrs ? '' : ',null') + "," + bind$$1;
+ }
+ return res + ')'
+}
+
+// componentName is el.component, take it as argument to shun flow's pessimistic refinement
+function genComponent (
+ componentName,
+ el,
+ state
+) {
+ var children = el.inlineTemplate ? null : genChildren(el, state, true);
+ return ("_c(" + componentName + "," + (genData$2(el, state)) + (children ? ("," + children) : '') + ")")
+}
+
+function genProps (props) {
+ var staticProps = "";
+ var dynamicProps = "";
+ for (var i = 0; i < props.length; i++) {
+ var prop = props[i];
+ var value = transformSpecialNewlines(prop.value);
+ if (prop.dynamic) {
+ dynamicProps += (prop.name) + "," + value + ",";
+ } else {
+ staticProps += "\"" + (prop.name) + "\":" + value + ",";
+ }
+ }
+ staticProps = "{" + (staticProps.slice(0, -1)) + "}";
+ if (dynamicProps) {
+ return ("_d(" + staticProps + ",[" + (dynamicProps.slice(0, -1)) + "])")
+ } else {
+ return staticProps
+ }
+}
+
+// #3895, #4268
+function transformSpecialNewlines (text) {
+ return text
+ .replace(/\u2028/g, '\\u2028')
+ .replace(/\u2029/g, '\\u2029')
+}
+
+/* */
+
+
+
+// these keywords should not appear inside expressions, but operators like
+// typeof, instanceof and in are allowed
+var prohibitedKeywordRE = new RegExp('\\b' + (
+ 'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' +
+ 'super,throw,while,yield,delete,export,import,return,switch,default,' +
+ 'extends,finally,continue,debugger,function,arguments'
+).split(',').join('\\b|\\b') + '\\b');
+
+// these unary operators should not be used as property/method names
+var unaryOperatorsRE = new RegExp('\\b' + (
+ 'delete,typeof,void'
+).split(',').join('\\s*\\([^\\)]*\\)|\\b') + '\\s*\\([^\\)]*\\)');
+
+// strip strings in expressions
+var stripStringRE = /'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g;
+
+// detect problematic expressions in a template
+function detectErrors (ast, warn) {
+ if (ast) {
+ checkNode(ast, warn);
+ }
+}
+
+function checkNode (node, warn) {
+ if (node.type === 1) {
+ for (var name in node.attrsMap) {
+ if (dirRE.test(name)) {
+ var value = node.attrsMap[name];
+ if (value) {
+ var range = node.rawAttrsMap[name];
+ if (name === 'v-for') {
+ checkFor(node, ("v-for=\"" + value + "\""), warn, range);
+ } else if (name === 'v-slot' || name[0] === '#') {
+ checkFunctionParameterExpression(value, (name + "=\"" + value + "\""), warn, range);
+ } else if (onRE.test(name)) {
+ checkEvent(value, (name + "=\"" + value + "\""), warn, range);
+ } else {
+ checkExpression(value, (name + "=\"" + value + "\""), warn, range);
+ }
+ }
+ }
+ }
+ if (node.children) {
+ for (var i = 0; i < node.children.length; i++) {
+ checkNode(node.children[i], warn);
+ }
+ }
+ } else if (node.type === 2) {
+ checkExpression(node.expression, node.text, warn, node);
+ }
+}
+
+function checkEvent (exp, text, warn, range) {
+ var stripped = exp.replace(stripStringRE, '');
+ var keywordMatch = stripped.match(unaryOperatorsRE);
+ if (keywordMatch && stripped.charAt(keywordMatch.index - 1) !== '$') {
+ warn(
+ "avoid using JavaScript unary operator as property name: " +
+ "\"" + (keywordMatch[0]) + "\" in expression " + (text.trim()),
+ range
+ );
+ }
+ checkExpression(exp, text, warn, range);
+}
+
+function checkFor (node, text, warn, range) {
+ checkExpression(node.for || '', text, warn, range);
+ checkIdentifier(node.alias, 'v-for alias', text, warn, range);
+ checkIdentifier(node.iterator1, 'v-for iterator', text, warn, range);
+ checkIdentifier(node.iterator2, 'v-for iterator', text, warn, range);
+}
+
+function checkIdentifier (
+ ident,
+ type,
+ text,
+ warn,
+ range
+) {
+ if (typeof ident === 'string') {
+ try {
+ new Function(("var " + ident + "=_"));
+ } catch (e) {
+ warn(("invalid " + type + " \"" + ident + "\" in expression: " + (text.trim())), range);
+ }
+ }
+}
+
+function checkExpression (exp, text, warn, range) {
+ try {
+ new Function(("return " + exp));
+ } catch (e) {
+ var keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE);
+ if (keywordMatch) {
+ warn(
+ "avoid using JavaScript keyword as property name: " +
+ "\"" + (keywordMatch[0]) + "\"\n Raw expression: " + (text.trim()),
+ range
+ );
+ } else {
+ warn(
+ "invalid expression: " + (e.message) + " in\n\n" +
+ " " + exp + "\n\n" +
+ " Raw expression: " + (text.trim()) + "\n",
+ range
+ );
+ }
+ }
+}
+
+function checkFunctionParameterExpression (exp, text, warn, range) {
+ try {
+ new Function(exp, '');
+ } catch (e) {
+ warn(
+ "invalid function parameter expression: " + (e.message) + " in\n\n" +
+ " " + exp + "\n\n" +
+ " Raw expression: " + (text.trim()) + "\n",
+ range
+ );
+ }
+}
+
+/* */
+
+var range = 2;
+
+function generateCodeFrame (
+ source,
+ start,
+ end
+) {
+ if ( start === void 0 ) start = 0;
+ if ( end === void 0 ) end = source.length;
+
+ var lines = source.split(/\r?\n/);
+ var count = 0;
+ var res = [];
+ for (var i = 0; i < lines.length; i++) {
+ count += lines[i].length + 1;
+ if (count >= start) {
+ for (var j = i - range; j <= i + range || end > count; j++) {
+ if (j < 0 || j >= lines.length) { continue }
+ res.push(("" + (j + 1) + (repeat$1(" ", 3 - String(j + 1).length)) + "| " + (lines[j])));
+ var lineLength = lines[j].length;
+ if (j === i) {
+ // push underline
+ var pad = start - (count - lineLength) + 1;
+ var length = end > count ? lineLength - pad : end - start;
+ res.push(" | " + repeat$1(" ", pad) + repeat$1("^", length));
+ } else if (j > i) {
+ if (end > count) {
+ var length$1 = Math.min(end - count, lineLength);
+ res.push(" | " + repeat$1("^", length$1));
+ }
+ count += lineLength + 1;
+ }
+ }
+ break
+ }
+ }
+ return res.join('\n')
+}
+
+function repeat$1 (str, n) {
+ var result = '';
+ if (n > 0) {
+ while (true) { // eslint-disable-line
+ if (n & 1) { result += str; }
+ n >>>= 1;
+ if (n <= 0) { break }
+ str += str;
+ }
+ }
+ return result
+}
+
+/* */
+
+
+
+function createFunction (code, errors) {
+ try {
+ return new Function(code)
+ } catch (err) {
+ errors.push({ err: err, code: code });
+ return noop
+ }
+}
+
+function createCompileToFunctionFn (compile) {
+ var cache = Object.create(null);
+
+ return function compileToFunctions (
+ template,
+ options,
+ vm
+ ) {
+ options = extend({}, options);
+ var warn$$1 = options.warn || warn;
+ delete options.warn;
+
+ /* istanbul ignore if */
+ {
+ // detect possible CSP restriction
+ try {
+ new Function('return 1');
+ } catch (e) {
+ if (e.toString().match(/unsafe-eval|CSP/)) {
+ warn$$1(
+ 'It seems you are using the standalone build of Vue.js in an ' +
+ 'environment with Content Security Policy that prohibits unsafe-eval. ' +
+ 'The template compiler cannot work in this environment. Consider ' +
+ 'relaxing the policy to allow unsafe-eval or pre-compiling your ' +
+ 'templates into render functions.'
+ );
+ }
+ }
+ }
+
+ // check cache
+ var key = options.delimiters
+ ? String(options.delimiters) + template
+ : template;
+ if (cache[key]) {
+ return cache[key]
+ }
+
+ // compile
+ var compiled = compile(template, options);
+
+ // check compilation errors/tips
+ {
+ if (compiled.errors && compiled.errors.length) {
+ if (options.outputSourceRange) {
+ compiled.errors.forEach(function (e) {
+ warn$$1(
+ "Error compiling template:\n\n" + (e.msg) + "\n\n" +
+ generateCodeFrame(template, e.start, e.end),
+ vm
+ );
+ });
+ } else {
+ warn$$1(
+ "Error compiling template:\n\n" + template + "\n\n" +
+ compiled.errors.map(function (e) { return ("- " + e); }).join('\n') + '\n',
+ vm
+ );
+ }
+ }
+ if (compiled.tips && compiled.tips.length) {
+ if (options.outputSourceRange) {
+ compiled.tips.forEach(function (e) { return tip(e.msg, vm); });
+ } else {
+ compiled.tips.forEach(function (msg) { return tip(msg, vm); });
+ }
+ }
+ }
+
+ // turn code into functions
+ var res = {};
+ var fnGenErrors = [];
+ res.render = createFunction(compiled.render, fnGenErrors);
+ res.staticRenderFns = compiled.staticRenderFns.map(function (code) {
+ return createFunction(code, fnGenErrors)
+ });
+
+ // check function generation errors.
+ // this should only happen if there is a bug in the compiler itself.
+ // mostly for codegen development use
+ /* istanbul ignore if */
+ {
+ if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {
+ warn$$1(
+ "Failed to generate render function:\n\n" +
+ fnGenErrors.map(function (ref) {
+ var err = ref.err;
+ var code = ref.code;
+
+ return ((err.toString()) + " in\n\n" + code + "\n");
+ }).join('\n'),
+ vm
+ );
+ }
+ }
+
+ return (cache[key] = res)
+ }
+}
+
+/* */
+
+function createCompilerCreator (baseCompile) {
+ return function createCompiler (baseOptions) {
+ function compile (
+ template,
+ options
+ ) {
+ var finalOptions = Object.create(baseOptions);
+ var errors = [];
+ var tips = [];
+
+ var warn = function (msg, range, tip) {
+ (tip ? tips : errors).push(msg);
+ };
+
+ if (options) {
+ if (options.outputSourceRange) {
+ // $flow-disable-line
+ var leadingSpaceLength = template.match(/^\s*/)[0].length;
+
+ warn = function (msg, range, tip) {
+ var data = { msg: msg };
+ if (range) {
+ if (range.start != null) {
+ data.start = range.start + leadingSpaceLength;
+ }
+ if (range.end != null) {
+ data.end = range.end + leadingSpaceLength;
+ }
+ }
+ (tip ? tips : errors).push(data);
+ };
+ }
+ // merge custom modules
+ if (options.modules) {
+ finalOptions.modules =
+ (baseOptions.modules || []).concat(options.modules);
+ }
+ // merge custom directives
+ if (options.directives) {
+ finalOptions.directives = extend(
+ Object.create(baseOptions.directives || null),
+ options.directives
+ );
+ }
+ // copy other options
+ for (var key in options) {
+ if (key !== 'modules' && key !== 'directives') {
+ finalOptions[key] = options[key];
+ }
+ }
+ }
+
+ finalOptions.warn = warn;
+
+ var compiled = baseCompile(template.trim(), finalOptions);
+ {
+ detectErrors(compiled.ast, warn);
+ }
+ compiled.errors = errors;
+ compiled.tips = tips;
+ return compiled
+ }
+
+ return {
+ compile: compile,
+ compileToFunctions: createCompileToFunctionFn(compile)
+ }
+ }
+}
+
+/* */
+
+// `createCompilerCreator` allows creating compilers that use alternative
+// parser/optimizer/codegen, e.g the SSR optimizing compiler.
+// Here we just export a default compiler using the default parts.
+var createCompiler = createCompilerCreator(function baseCompile (
+ template,
+ options
+) {
+ var ast = parse(template.trim(), options);
+ if (options.optimize !== false) {
+ optimize(ast, options);
+ }
+ var code = generate(ast, options);
+ return {
+ ast: ast,
+ render: code.render,
+ staticRenderFns: code.staticRenderFns
+ }
+});
+
+/* */
+
+var ref$1 = createCompiler(baseOptions);
+var compile = ref$1.compile;
+var compileToFunctions = ref$1.compileToFunctions;
+
+/* */
+
+// check whether current browser encodes a char inside attribute values
+var div;
+function getShouldDecode (href) {
+ div = div || document.createElement('div');
+ div.innerHTML = href ? "
" : "";
+ return div.innerHTML.indexOf('
') > 0
+}
+
+// #3663: IE encodes newlines inside attribute values while other browsers don't
+var shouldDecodeNewlines = inBrowser ? getShouldDecode(false) : false;
+// #6828: chrome encodes content in a[href]
+var shouldDecodeNewlinesForHref = inBrowser ? getShouldDecode(true) : false;
+
+/* */
+
+var idToTemplate = cached(function (id) {
+ var el = query(id);
+ return el && el.innerHTML
+});
+
+var mount = Vue.prototype.$mount;
+Vue.prototype.$mount = function (
+ el,
+ hydrating
+) {
+ el = el && query(el);
+
+ /* istanbul ignore if */
+ if (el === document.body || el === document.documentElement) {
+ warn(
+ "Do not mount Vue to or - mount to normal elements instead."
+ );
+ return this
+ }
+
+ var options = this.$options;
+ // resolve template/el and convert to render function
+ if (!options.render) {
+ var template = options.template;
+ if (template) {
+ if (typeof template === 'string') {
+ if (template.charAt(0) === '#') {
+ template = idToTemplate(template);
+ /* istanbul ignore if */
+ if (!template) {
+ warn(
+ ("Template element not found or is empty: " + (options.template)),
+ this
+ );
+ }
+ }
+ } else if (template.nodeType) {
+ template = template.innerHTML;
+ } else {
+ {
+ warn('invalid template option:' + template, this);
+ }
+ return this
+ }
+ } else if (el) {
+ template = getOuterHTML(el);
+ }
+ if (template) {
+ /* istanbul ignore if */
+ if (config.performance && mark) {
+ mark('compile');
+ }
+
+ var ref = compileToFunctions(template, {
+ outputSourceRange: "development" !== 'production',
+ shouldDecodeNewlines: shouldDecodeNewlines,
+ shouldDecodeNewlinesForHref: shouldDecodeNewlinesForHref,
+ delimiters: options.delimiters,
+ comments: options.comments
+ }, this);
+ var render = ref.render;
+ var staticRenderFns = ref.staticRenderFns;
+ options.render = render;
+ options.staticRenderFns = staticRenderFns;
+
+ /* istanbul ignore if */
+ if (config.performance && mark) {
+ mark('compile end');
+ measure(("vue " + (this._name) + " compile"), 'compile', 'compile end');
+ }
+ }
+ }
+ return mount.call(this, el, hydrating)
+};
+
+/**
+ * Get outerHTML of elements, taking care
+ * of SVG elements in IE as well.
+ */
+function getOuterHTML (el) {
+ if (el.outerHTML) {
+ return el.outerHTML
+ } else {
+ var container = document.createElement('div');
+ container.appendChild(el.cloneNode(true));
+ return container.innerHTML
+ }
+}
+
+Vue.compile = compileToFunctions;
+
+module.exports = Vue;
+
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../webpack/buildin/global.js */ "./node_modules/webpack/buildin/global.js"), __webpack_require__(/*! ./../../timers-browserify/main.js */ "./node_modules/timers-browserify/main.js").setImmediate))
+
+/***/ }),
+
+/***/ "./node_modules/vue/dist/vue.common.js":
+/*!*********************************************!*\
+ !*** ./node_modules/vue/dist/vue.common.js ***!
+ \*********************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+if (false) {} else {
+ module.exports = __webpack_require__(/*! ./vue.common.dev.js */ "./node_modules/vue/dist/vue.common.dev.js")
+}
+
+
+/***/ }),
+
+/***/ "./node_modules/webpack/buildin/global.js":
+/*!***********************************!*\
+ !*** (webpack)/buildin/global.js ***!
+ \***********************************/
+/*! no static exports found */
+/***/ (function(module, exports) {
+
+var g;
+
+// This works in non-strict mode
+g = (function() {
+ return this;
+})();
+
+try {
+ // This works if eval is allowed (see CSP)
+ g = g || new Function("return this")();
+} catch (e) {
+ // This works if the window reference is available
+ if (typeof window === "object") g = window;
+}
+
+// g can still be undefined, but nothing to do about it...
+// We return undefined, instead of nothing here, so it's
+// easier to handle this case. if(!global) { ...}
+
+module.exports = g;
+
+
+/***/ }),
+
+/***/ "./node_modules/webpack/buildin/module.js":
+/*!***********************************!*\
+ !*** (webpack)/buildin/module.js ***!
+ \***********************************/
+/*! no static exports found */
+/***/ (function(module, exports) {
+
+module.exports = function(module) {
+ if (!module.webpackPolyfill) {
+ module.deprecate = function() {};
+ module.paths = [];
+ // module.parent = undefined by default
+ if (!module.children) module.children = [];
+ Object.defineProperty(module, "loaded", {
+ enumerable: true,
+ get: function() {
+ return module.l;
+ }
+ });
+ Object.defineProperty(module, "id", {
+ enumerable: true,
+ get: function() {
+ return module.i;
+ }
+ });
+ module.webpackPolyfill = 1;
+ }
+ return module;
+};
+
+
+/***/ }),
+
+/***/ "./resources/js sync recursive \\.vue$/":
+/*!***********************************!*\
+ !*** ./resources/js sync \.vue$/ ***!
+ \***********************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+var map = {
+ "./components/FileSearch/FileHit.vue": "./resources/js/components/FileSearch/FileHit.vue",
+ "./components/FileSearch/FileInstantSearch.vue": "./resources/js/components/FileSearch/FileInstantSearch.vue",
+ "./components/Links/GenerateLink.vue": "./resources/js/components/Links/GenerateLink.vue",
+ "./components/LiveStats.vue": "./resources/js/components/LiveStats.vue",
+ "./components/Publish/Publish.vue": "./resources/js/components/Publish/Publish.vue",
+ "./components/Publish/Step1UploadFile.vue": "./resources/js/components/Publish/Step1UploadFile.vue",
+ "./components/Publish/Step2PrepareMail.vue": "./resources/js/components/Publish/Step2PrepareMail.vue",
+ "./components/Publish/Step3Send.vue": "./resources/js/components/Publish/Step3Send.vue",
+ "./components/Stats/EmailStatistics.vue": "./resources/js/components/Stats/EmailStatistics.vue",
+ "./components/Stats/MgStats.vue": "./resources/js/components/Stats/MgStats.vue"
+};
+
+
+function webpackContext(req) {
+ var id = webpackContextResolve(req);
+ return __webpack_require__(id);
+}
+function webpackContextResolve(req) {
+ if(!__webpack_require__.o(map, req)) {
+ var e = new Error("Cannot find module '" + req + "'");
+ e.code = 'MODULE_NOT_FOUND';
+ throw e;
+ }
+ return map[req];
+}
+webpackContext.keys = function webpackContextKeys() {
+ return Object.keys(map);
+};
+webpackContext.resolve = webpackContextResolve;
+module.exports = webpackContext;
+webpackContext.id = "./resources/js sync recursive \\.vue$/";
+
+/***/ }),
+
+/***/ "./resources/js/admin.js":
+/*!*******************************!*\
+ !*** ./resources/js/admin.js ***!
+ \*******************************/
+/*! no exports provided */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var selectize_dist_js_standalone_selectize_min_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! selectize/dist/js/standalone/selectize.min.js */ "./node_modules/selectize/dist/js/standalone/selectize.min.js");
+/* harmony import */ var selectize_dist_js_standalone_selectize_min_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(selectize_dist_js_standalone_selectize_min_js__WEBPACK_IMPORTED_MODULE_0__);
+/* harmony import */ var selectize_dist_css_selectize_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! selectize/dist/css/selectize.css */ "./node_modules/selectize/dist/css/selectize.css");
+/* harmony import */ var selectize_dist_css_selectize_css__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(selectize_dist_css_selectize_css__WEBPACK_IMPORTED_MODULE_1__);
+/* harmony import */ var _fortawesome_fontawesome_free_css_all_min_css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @fortawesome/fontawesome-free/css/all.min.css */ "./node_modules/@fortawesome/fontawesome-free/css/all.min.css");
+/* harmony import */ var _fortawesome_fontawesome_free_css_all_min_css__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_fortawesome_fontawesome_free_css_all_min_css__WEBPACK_IMPORTED_MODULE_2__);
+/* harmony import */ var _ckeditor_ckeditor5_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @ckeditor/ckeditor5-vue */ "./node_modules/@ckeditor/ckeditor5-vue/dist/ckeditor.js");
+/* harmony import */ var _ckeditor_ckeditor5_vue__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_ckeditor_ckeditor5_vue__WEBPACK_IMPORTED_MODULE_3__);
+/* harmony import */ var vue_material_dist_components__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! vue-material/dist/components */ "./node_modules/vue-material/dist/components/index.js");
+/* harmony import */ var vue_material_dist_components__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(vue_material_dist_components__WEBPACK_IMPORTED_MODULE_4__);
+/**
+ * First we will load all of this project's JavaScript dependencies which
+ * includes Vue and other libraries. It is a great starting point when
+ * building robust, powerful web applications using Vue and Laravel.
+ */
+__webpack_require__(/*! ./bootstrap */ "./resources/js/bootstrap.js");
+
+window.Vue = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.common.js");
+/** @todo fix vue material design issue */
+
+
+
+
+
+
+window.Vue.use(_ckeditor_ckeditor5_vue__WEBPACK_IMPORTED_MODULE_3___default.a);
+window.Vue.use(vue_material_dist_components__WEBPACK_IMPORTED_MODULE_4__["MdProgress"]);
+/**
+ * The following block of code may be used to automatically register your
+ * Vue components. It will recursively scan this directory for the Vue
+ * components and automatically register them with their "basename".
+ *
+ * Eg. ./components/ExampleComponent.vue ->
+ */
+
+var files = __webpack_require__("./resources/js sync recursive \\.vue$/");
+
+files.keys().map(function (key) {
+ return Vue.component(key.split('/').pop().split('.')[0], files(key)["default"]);
+}); // Vue.component('example-component', require('./components/ExampleComponent.vue').default);
+
+/**
+ * Next, we will create a fresh Vue application instance and attach it to
+ * the page. Then, you may begin adding components to this application
+ * or customize the JavaScript scaffolding to fit your unique needs.
+ */
+
+var app = new Vue({
+ el: '#app',
+ data: {
+ publishState: {
+ file: {
+ title: "",
+ slug: ""
+ },
+ email: {
+ subject: "",
+ content: ""
+ }
+ }
+ }
+});
+
+/***/ }),
+
+/***/ "./resources/js/bootstrap.js":
+/*!***********************************!*\
+ !*** ./resources/js/bootstrap.js ***!
+ \***********************************/
+/*! no exports provided */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var vue_material_dist_theme_default_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue-material/dist/theme/default.css */ "./node_modules/vue-material/dist/theme/default.css");
+/* harmony import */ var vue_material_dist_theme_default_css__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue_material_dist_theme_default_css__WEBPACK_IMPORTED_MODULE_0__);
+/* harmony import */ var laravel_echo__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! laravel-echo */ "./node_modules/laravel-echo/dist/echo.js");
+window._ = __webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js");
+/**
+ * We'll load jQuery and the Bootstrap jQuery plugin which provides support
+ * for JavaScript based Bootstrap features such as modals and tabs. This
+ * code may be modified to fit the specific needs of your application.
+ */
+
+
+
+try {
+ window.Popper = __webpack_require__(/*! popper.js */ "./node_modules/popper.js/dist/esm/popper.js")["default"];
+ window.$ = window.jQuery = __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js");
+
+ __webpack_require__(/*! bootstrap */ "./node_modules/bootstrap/dist/js/bootstrap.js");
+} catch (e) {}
+/**
+ * We'll load the axios HTTP library which allows us to easily issue requests
+ * to our Laravel back-end. This library automatically handles sending the
+ * CSRF token as a header based on the value of the "XSRF" token cookie.
+ */
+
+
+window.axios = __webpack_require__(/*! axios */ "./node_modules/axios/index.js");
+window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
+/**
+ * Echo exposes an expressive API for subscribing to channels and listening
+ * for events that are broadcast by Laravel. Echo and event broadcasting
+ * allows your team to easily build robust real-time web applications.
+ */
+
+
+window.Pusher = __webpack_require__(/*! pusher-js */ "./node_modules/pusher-js/dist/web/pusher.js");
+window.Echo = new laravel_echo__WEBPACK_IMPORTED_MODULE_1__["default"]({
+ broadcaster: 'pusher',
+ key: '459380cb6d0a29d6861f',
+ cluster: 'eu',
+ encrypted: true
+});
+
+/***/ }),
+
+/***/ "./resources/js/components/FileSearch/FileHit.vue":
+/*!********************************************************!*\
+ !*** ./resources/js/components/FileSearch/FileHit.vue ***!
+ \********************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _FileHit_vue_vue_type_template_id_25439992_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./FileHit.vue?vue&type=template&id=25439992&scoped=true& */ "./resources/js/components/FileSearch/FileHit.vue?vue&type=template&id=25439992&scoped=true&");
+/* harmony import */ var _FileHit_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FileHit.vue?vue&type=script&lang=js& */ "./resources/js/components/FileSearch/FileHit.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+ _FileHit_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _FileHit_vue_vue_type_template_id_25439992_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _FileHit_vue_vue_type_template_id_25439992_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ "25439992",
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/FileSearch/FileHit.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/FileSearch/FileHit.vue?vue&type=script&lang=js&":
+/*!*********************************************************************************!*\
+ !*** ./resources/js/components/FileSearch/FileHit.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FileHit_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./FileHit.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/FileSearch/FileHit.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FileHit_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/FileSearch/FileHit.vue?vue&type=template&id=25439992&scoped=true&":
+/*!***************************************************************************************************!*\
+ !*** ./resources/js/components/FileSearch/FileHit.vue?vue&type=template&id=25439992&scoped=true& ***!
+ \***************************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_FileHit_vue_vue_type_template_id_25439992_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./FileHit.vue?vue&type=template&id=25439992&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/FileSearch/FileHit.vue?vue&type=template&id=25439992&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_FileHit_vue_vue_type_template_id_25439992_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_FileHit_vue_vue_type_template_id_25439992_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/FileSearch/FileInstantSearch.vue":
+/*!******************************************************************!*\
+ !*** ./resources/js/components/FileSearch/FileInstantSearch.vue ***!
+ \******************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _FileInstantSearch_vue_vue_type_template_id_3d1d108d___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./FileInstantSearch.vue?vue&type=template&id=3d1d108d& */ "./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=template&id=3d1d108d&");
+/* harmony import */ var _FileInstantSearch_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FileInstantSearch.vue?vue&type=script&lang=js& */ "./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+ _FileInstantSearch_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _FileInstantSearch_vue_vue_type_template_id_3d1d108d___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _FileInstantSearch_vue_vue_type_template_id_3d1d108d___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/FileSearch/FileInstantSearch.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=script&lang=js&":
+/*!*******************************************************************************************!*\
+ !*** ./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FileInstantSearch_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./FileInstantSearch.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FileInstantSearch_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=template&id=3d1d108d&":
+/*!*************************************************************************************************!*\
+ !*** ./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=template&id=3d1d108d& ***!
+ \*************************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_FileInstantSearch_vue_vue_type_template_id_3d1d108d___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./FileInstantSearch.vue?vue&type=template&id=3d1d108d& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/FileSearch/FileInstantSearch.vue?vue&type=template&id=3d1d108d&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_FileInstantSearch_vue_vue_type_template_id_3d1d108d___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_FileInstantSearch_vue_vue_type_template_id_3d1d108d___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/Links/GenerateLink.vue":
+/*!********************************************************!*\
+ !*** ./resources/js/components/Links/GenerateLink.vue ***!
+ \********************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _GenerateLink_vue_vue_type_template_id_dc597e20___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./GenerateLink.vue?vue&type=template&id=dc597e20& */ "./resources/js/components/Links/GenerateLink.vue?vue&type=template&id=dc597e20&");
+/* harmony import */ var _GenerateLink_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./GenerateLink.vue?vue&type=script&lang=js& */ "./resources/js/components/Links/GenerateLink.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+ _GenerateLink_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _GenerateLink_vue_vue_type_template_id_dc597e20___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _GenerateLink_vue_vue_type_template_id_dc597e20___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/Links/GenerateLink.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/Links/GenerateLink.vue?vue&type=script&lang=js&":
+/*!*********************************************************************************!*\
+ !*** ./resources/js/components/Links/GenerateLink.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_GenerateLink_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./GenerateLink.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Links/GenerateLink.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_GenerateLink_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/Links/GenerateLink.vue?vue&type=template&id=dc597e20&":
+/*!***************************************************************************************!*\
+ !*** ./resources/js/components/Links/GenerateLink.vue?vue&type=template&id=dc597e20& ***!
+ \***************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_GenerateLink_vue_vue_type_template_id_dc597e20___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./GenerateLink.vue?vue&type=template&id=dc597e20& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Links/GenerateLink.vue?vue&type=template&id=dc597e20&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_GenerateLink_vue_vue_type_template_id_dc597e20___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_GenerateLink_vue_vue_type_template_id_dc597e20___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/LiveStats.vue":
+/*!***********************************************!*\
+ !*** ./resources/js/components/LiveStats.vue ***!
+ \***********************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _LiveStats_vue_vue_type_template_id_19b48090_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./LiveStats.vue?vue&type=template&id=19b48090&scoped=true& */ "./resources/js/components/LiveStats.vue?vue&type=template&id=19b48090&scoped=true&");
+/* harmony import */ var _LiveStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./LiveStats.vue?vue&type=script&lang=js& */ "./resources/js/components/LiveStats.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+ _LiveStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _LiveStats_vue_vue_type_template_id_19b48090_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _LiveStats_vue_vue_type_template_id_19b48090_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ "19b48090",
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/LiveStats.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/LiveStats.vue?vue&type=script&lang=js&":
+/*!************************************************************************!*\
+ !*** ./resources/js/components/LiveStats.vue?vue&type=script&lang=js& ***!
+ \************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_LiveStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/babel-loader/lib??ref--4-0!../../../node_modules/vue-loader/lib??vue-loader-options!./LiveStats.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/LiveStats.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_LiveStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/LiveStats.vue?vue&type=template&id=19b48090&scoped=true&":
+/*!******************************************************************************************!*\
+ !*** ./resources/js/components/LiveStats.vue?vue&type=template&id=19b48090&scoped=true& ***!
+ \******************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_LiveStats_vue_vue_type_template_id_19b48090_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../node_modules/vue-loader/lib??vue-loader-options!./LiveStats.vue?vue&type=template&id=19b48090&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/LiveStats.vue?vue&type=template&id=19b48090&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_LiveStats_vue_vue_type_template_id_19b48090_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_LiveStats_vue_vue_type_template_id_19b48090_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Publish.vue":
+/*!*****************************************************!*\
+ !*** ./resources/js/components/Publish/Publish.vue ***!
+ \*****************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Publish_vue_vue_type_template_id_6a7b0cd4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Publish.vue?vue&type=template&id=6a7b0cd4& */ "./resources/js/components/Publish/Publish.vue?vue&type=template&id=6a7b0cd4&");
+/* harmony import */ var _Publish_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Publish.vue?vue&type=script&lang=js& */ "./resources/js/components/Publish/Publish.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+ _Publish_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _Publish_vue_vue_type_template_id_6a7b0cd4___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _Publish_vue_vue_type_template_id_6a7b0cd4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/Publish/Publish.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Publish.vue?vue&type=script&lang=js&":
+/*!******************************************************************************!*\
+ !*** ./resources/js/components/Publish/Publish.vue?vue&type=script&lang=js& ***!
+ \******************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Publish_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Publish.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Publish.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Publish_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Publish.vue?vue&type=template&id=6a7b0cd4&":
+/*!************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Publish.vue?vue&type=template&id=6a7b0cd4& ***!
+ \************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Publish_vue_vue_type_template_id_6a7b0cd4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./Publish.vue?vue&type=template&id=6a7b0cd4& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Publish.vue?vue&type=template&id=6a7b0cd4&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Publish_vue_vue_type_template_id_6a7b0cd4___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Publish_vue_vue_type_template_id_6a7b0cd4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step1UploadFile.vue":
+/*!*************************************************************!*\
+ !*** ./resources/js/components/Publish/Step1UploadFile.vue ***!
+ \*************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Step1UploadFile_vue_vue_type_template_id_26de7527___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Step1UploadFile.vue?vue&type=template&id=26de7527& */ "./resources/js/components/Publish/Step1UploadFile.vue?vue&type=template&id=26de7527&");
+/* harmony import */ var _Step1UploadFile_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Step1UploadFile.vue?vue&type=script&lang=js& */ "./resources/js/components/Publish/Step1UploadFile.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _Step1UploadFile_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Step1UploadFile.vue?vue&type=style&index=0&lang=css& */ "./resources/js/components/Publish/Step1UploadFile.vue?vue&type=style&index=0&lang=css&");
+/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _Step1UploadFile_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _Step1UploadFile_vue_vue_type_template_id_26de7527___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _Step1UploadFile_vue_vue_type_template_id_26de7527___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/Publish/Step1UploadFile.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step1UploadFile.vue?vue&type=script&lang=js&":
+/*!**************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step1UploadFile.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step1UploadFile.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step1UploadFile.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step1UploadFile.vue?vue&type=style&index=0&lang=css&":
+/*!**********************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step1UploadFile.vue?vue&type=style&index=0&lang=css& ***!
+ \**********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/style-loader/dist/cjs.js!../../../../node_modules/css-loader/dist/cjs.js??ref--6-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--6-2!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step1UploadFile.vue?vue&type=style&index=0&lang=css& */ "./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step1UploadFile.vue?vue&type=style&index=0&lang=css&");
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step1UploadFile.vue?vue&type=template&id=26de7527&":
+/*!********************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step1UploadFile.vue?vue&type=template&id=26de7527& ***!
+ \********************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_template_id_26de7527___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step1UploadFile.vue?vue&type=template&id=26de7527& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step1UploadFile.vue?vue&type=template&id=26de7527&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_template_id_26de7527___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step1UploadFile_vue_vue_type_template_id_26de7527___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step2PrepareMail.vue":
+/*!**************************************************************!*\
+ !*** ./resources/js/components/Publish/Step2PrepareMail.vue ***!
+ \**************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Step2PrepareMail_vue_vue_type_template_id_5a14ddba___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Step2PrepareMail.vue?vue&type=template&id=5a14ddba& */ "./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=template&id=5a14ddba&");
+/* harmony import */ var _Step2PrepareMail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Step2PrepareMail.vue?vue&type=script&lang=js& */ "./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _Step2PrepareMail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Step2PrepareMail.vue?vue&type=style&index=0&lang=css& */ "./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=style&index=0&lang=css&");
+/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _Step2PrepareMail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _Step2PrepareMail_vue_vue_type_template_id_5a14ddba___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _Step2PrepareMail_vue_vue_type_template_id_5a14ddba___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/Publish/Step2PrepareMail.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=script&lang=js&":
+/*!***************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step2PrepareMail.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=style&index=0&lang=css&":
+/*!***********************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/style-loader/dist/cjs.js!../../../../node_modules/css-loader/dist/cjs.js??ref--6-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--6-2!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step2PrepareMail.vue?vue&type=style&index=0&lang=css& */ "./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=style&index=0&lang=css&");
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=template&id=5a14ddba&":
+/*!*********************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=template&id=5a14ddba& ***!
+ \*********************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_template_id_5a14ddba___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step2PrepareMail.vue?vue&type=template&id=5a14ddba& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step2PrepareMail.vue?vue&type=template&id=5a14ddba&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_template_id_5a14ddba___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step2PrepareMail_vue_vue_type_template_id_5a14ddba___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step3Send.vue":
+/*!*******************************************************!*\
+ !*** ./resources/js/components/Publish/Step3Send.vue ***!
+ \*******************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Step3Send_vue_vue_type_template_id_d33178d8_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Step3Send.vue?vue&type=template&id=d33178d8&scoped=true& */ "./resources/js/components/Publish/Step3Send.vue?vue&type=template&id=d33178d8&scoped=true&");
+/* harmony import */ var _Step3Send_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Step3Send.vue?vue&type=script&lang=js& */ "./resources/js/components/Publish/Step3Send.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _Step3Send_vue_vue_type_style_index_0_id_d33178d8_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Step3Send.vue?vue&type=style&index=0&id=d33178d8&scoped=true&lang=css& */ "./resources/js/components/Publish/Step3Send.vue?vue&type=style&index=0&id=d33178d8&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _Step3Send_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _Step3Send_vue_vue_type_template_id_d33178d8_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _Step3Send_vue_vue_type_template_id_d33178d8_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ "d33178d8",
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/Publish/Step3Send.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step3Send.vue?vue&type=script&lang=js&":
+/*!********************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step3Send.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step3Send.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step3Send.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step3Send.vue?vue&type=style&index=0&id=d33178d8&scoped=true&lang=css&":
+/*!****************************************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step3Send.vue?vue&type=style&index=0&id=d33178d8&scoped=true&lang=css& ***!
+ \****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_style_index_0_id_d33178d8_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/style-loader/dist/cjs.js!../../../../node_modules/css-loader/dist/cjs.js??ref--6-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--6-2!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step3Send.vue?vue&type=style&index=0&id=d33178d8&scoped=true&lang=css& */ "./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step3Send.vue?vue&type=style&index=0&id=d33178d8&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_style_index_0_id_d33178d8_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_style_index_0_id_d33178d8_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_style_index_0_id_d33178d8_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_style_index_0_id_d33178d8_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_style_index_0_id_d33178d8_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ "./resources/js/components/Publish/Step3Send.vue?vue&type=template&id=d33178d8&scoped=true&":
+/*!**************************************************************************************************!*\
+ !*** ./resources/js/components/Publish/Step3Send.vue?vue&type=template&id=d33178d8&scoped=true& ***!
+ \**************************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_template_id_d33178d8_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./Step3Send.vue?vue&type=template&id=d33178d8&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Publish/Step3Send.vue?vue&type=template&id=d33178d8&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_template_id_d33178d8_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Step3Send_vue_vue_type_template_id_d33178d8_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/Stats/EmailStatistics.vue":
+/*!***********************************************************!*\
+ !*** ./resources/js/components/Stats/EmailStatistics.vue ***!
+ \***********************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _EmailStatistics_vue_vue_type_template_id_fcb3c118_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EmailStatistics.vue?vue&type=template&id=fcb3c118&scoped=true& */ "./resources/js/components/Stats/EmailStatistics.vue?vue&type=template&id=fcb3c118&scoped=true&");
+/* harmony import */ var _EmailStatistics_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./EmailStatistics.vue?vue&type=script&lang=js& */ "./resources/js/components/Stats/EmailStatistics.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+ _EmailStatistics_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _EmailStatistics_vue_vue_type_template_id_fcb3c118_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _EmailStatistics_vue_vue_type_template_id_fcb3c118_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ "fcb3c118",
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/Stats/EmailStatistics.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/Stats/EmailStatistics.vue?vue&type=script&lang=js&":
+/*!************************************************************************************!*\
+ !*** ./resources/js/components/Stats/EmailStatistics.vue?vue&type=script&lang=js& ***!
+ \************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailStatistics_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./EmailStatistics.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Stats/EmailStatistics.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailStatistics_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/Stats/EmailStatistics.vue?vue&type=template&id=fcb3c118&scoped=true&":
+/*!******************************************************************************************************!*\
+ !*** ./resources/js/components/Stats/EmailStatistics.vue?vue&type=template&id=fcb3c118&scoped=true& ***!
+ \******************************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailStatistics_vue_vue_type_template_id_fcb3c118_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./EmailStatistics.vue?vue&type=template&id=fcb3c118&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Stats/EmailStatistics.vue?vue&type=template&id=fcb3c118&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailStatistics_vue_vue_type_template_id_fcb3c118_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailStatistics_vue_vue_type_template_id_fcb3c118_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/components/Stats/MgStats.vue":
+/*!***************************************************!*\
+ !*** ./resources/js/components/Stats/MgStats.vue ***!
+ \***************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _MgStats_vue_vue_type_template_id_64670aba_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./MgStats.vue?vue&type=template&id=64670aba&scoped=true& */ "./resources/js/components/Stats/MgStats.vue?vue&type=template&id=64670aba&scoped=true&");
+/* harmony import */ var _MgStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./MgStats.vue?vue&type=script&lang=js& */ "./resources/js/components/Stats/MgStats.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _MgStats_vue_vue_type_style_index_0_id_64670aba_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./MgStats.vue?vue&type=style&index=0&id=64670aba&scoped=true&lang=css& */ "./resources/js/components/Stats/MgStats.vue?vue&type=style&index=0&id=64670aba&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _MgStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _MgStats_vue_vue_type_template_id_64670aba_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _MgStats_vue_vue_type_template_id_64670aba_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ "64670aba",
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "resources/js/components/Stats/MgStats.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./resources/js/components/Stats/MgStats.vue?vue&type=script&lang=js&":
+/*!****************************************************************************!*\
+ !*** ./resources/js/components/Stats/MgStats.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib??ref--4-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./MgStats.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Stats/MgStats.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./resources/js/components/Stats/MgStats.vue?vue&type=style&index=0&id=64670aba&scoped=true&lang=css&":
+/*!************************************************************************************************************!*\
+ !*** ./resources/js/components/Stats/MgStats.vue?vue&type=style&index=0&id=64670aba&scoped=true&lang=css& ***!
+ \************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_style_index_0_id_64670aba_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/style-loader/dist/cjs.js!../../../../node_modules/css-loader/dist/cjs.js??ref--6-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--6-2!../../../../node_modules/vue-loader/lib??vue-loader-options!./MgStats.vue?vue&type=style&index=0&id=64670aba&scoped=true&lang=css& */ "./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Stats/MgStats.vue?vue&type=style&index=0&id=64670aba&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_style_index_0_id_64670aba_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_style_index_0_id_64670aba_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_style_index_0_id_64670aba_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_style_index_0_id_64670aba_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_style_loader_dist_cjs_js_node_modules_css_loader_dist_cjs_js_ref_6_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_2_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_style_index_0_id_64670aba_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ "./resources/js/components/Stats/MgStats.vue?vue&type=template&id=64670aba&scoped=true&":
+/*!**********************************************************************************************!*\
+ !*** ./resources/js/components/Stats/MgStats.vue?vue&type=template&id=64670aba&scoped=true& ***!
+ \**********************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_template_id_64670aba_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./MgStats.vue?vue&type=template&id=64670aba&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/Stats/MgStats.vue?vue&type=template&id=64670aba&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_template_id_64670aba_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_MgStats_vue_vue_type_template_id_64670aba_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./resources/js/mixins/SearchMixin.js":
+/*!********************************************!*\
+ !*** ./resources/js/mixins/SearchMixin.js ***!
+ \********************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var algoliasearch_lite__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! algoliasearch/lite */ "./node_modules/algoliasearch/dist/algoliasearch-lite.umd.js");
+/* harmony import */ var algoliasearch_lite__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(algoliasearch_lite__WEBPACK_IMPORTED_MODULE_0__);
+
+/* harmony default export */ __webpack_exports__["default"] = ({
+ data: function data() {
+ return {
+ searchClient: algoliasearch_lite__WEBPACK_IMPORTED_MODULE_0___default()(php_vars.algolia_app_id, php_vars.algolia_search_key),
+ prefix: php_vars.algolia_prefix
+ };
+ },
+ props: []
+});
+
+/***/ }),
+
+/***/ 1:
+/*!*************************************!*\
+ !*** multi ./resources/js/admin.js ***!
+ \*************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+module.exports = __webpack_require__(/*! /mnt/d/Programming/lettre-pharma/resources/js/admin.js */"./resources/js/admin.js");
+
+
+/***/ })
+
+/******/ });
\ No newline at end of file
diff --git a/public/css/app.css b/public/css/app.css
index 6d9e6c9..072897f 100644
--- a/public/css/app.css
+++ b/public/css/app.css
@@ -1,17 +1,16 @@
@import url(https://fonts.googleapis.com/css?family=Nunito);@charset "UTF-8";
-
/*
Begin Custom
*/
-
-/*!
- * Bootstrap v4.4.1 (https://getbootstrap.com/)
- * Copyright 2011-2019 The Bootstrap Authors
- * Copyright 2011-2019 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-
-:root {
+.bootstrap {
+ /*!
+ * Bootstrap v4.4.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+}
+.bootstrap :root {
--blue: #074e9c;
--indigo: #6574cd;
--purple: #9561e2;
@@ -41,34 +40,21 @@
--font-family-sans-serif: "Nunito", sans-serif;
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
-
-*,
-*::before,
-*::after {
+.bootstrap *,
+.bootstrap *::before,
+.bootstrap *::after {
box-sizing: border-box;
}
-
-html {
+.bootstrap html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
-
-article,
-aside,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-nav,
-section {
+.bootstrap article, .bootstrap aside, .bootstrap figcaption, .bootstrap figure, .bootstrap footer, .bootstrap header, .bootstrap hgroup, .bootstrap main, .bootstrap nav, .bootstrap section {
display: block;
}
-
-body {
+.bootstrap body {
margin: 0;
font-family: "Nunito", sans-serif;
font-size: 0.9rem;
@@ -78,34 +64,24 @@ body {
text-align: left;
background-color: #f8fafc;
}
-
-[tabindex="-1"]:focus:not(:focus-visible) {
+.bootstrap [tabindex="-1"]:focus:not(:focus-visible) {
outline: 0 !important;
}
-
-hr {
+.bootstrap hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
+.bootstrap h1, .bootstrap h2, .bootstrap h3, .bootstrap h4, .bootstrap h5, .bootstrap h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
-
-p {
+.bootstrap p {
margin-top: 0;
margin-bottom: 1rem;
}
-
-abbr[title],
-abbr[data-original-title] {
+.bootstrap abbr[title],
+.bootstrap abbr[data-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
@@ -114,217 +90,179 @@ abbr[data-original-title] {
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
-
-address {
+.bootstrap address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
-
-ol,
-ul,
-dl {
+.bootstrap ol,
+.bootstrap ul,
+.bootstrap dl {
margin-top: 0;
margin-bottom: 1rem;
}
-
-ol ol,
-ul ul,
-ol ul,
-ul ol {
+.bootstrap ol ol,
+.bootstrap ul ul,
+.bootstrap ol ul,
+.bootstrap ul ol {
margin-bottom: 0;
}
-
-dt {
+.bootstrap dt {
font-weight: 700;
}
-
-dd {
+.bootstrap dd {
margin-bottom: 0.5rem;
margin-left: 0;
}
-
-blockquote {
+.bootstrap blockquote {
margin: 0 0 1rem;
}
-
-b,
-strong {
+.bootstrap b,
+.bootstrap strong {
font-weight: bolder;
}
-
-small {
+.bootstrap small {
font-size: 80%;
}
-
-sub,
-sup {
+.bootstrap sub,
+.bootstrap sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
-
-sub {
+.bootstrap sub {
bottom: -0.25em;
}
-
-sup {
+.bootstrap sup {
top: -0.5em;
}
-
-a {
+.bootstrap a {
color: #074e9c;
text-decoration: none;
background-color: transparent;
}
-
-a:hover {
+.bootstrap a:hover {
color: #042953;
text-decoration: underline;
}
-
-a:not([href]) {
+.bootstrap a:not([href]) {
color: inherit;
text-decoration: none;
}
-
-a:not([href]):hover {
+.bootstrap a:not([href]):hover {
color: inherit;
text-decoration: none;
}
-
-pre,
-code,
-kbd,
-samp {
+.bootstrap pre,
+.bootstrap code,
+.bootstrap kbd,
+.bootstrap samp {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 1em;
}
-
-pre {
+.bootstrap pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
}
-
-figure {
+.bootstrap figure {
margin: 0 0 1rem;
}
-
-img {
+.bootstrap img {
vertical-align: middle;
border-style: none;
}
-
-svg {
+.bootstrap svg {
overflow: hidden;
vertical-align: middle;
}
-
-table {
+.bootstrap table {
border-collapse: collapse;
}
-
-caption {
+.bootstrap caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom;
}
-
-th {
+.bootstrap th {
text-align: inherit;
}
-
-label {
+.bootstrap label {
display: inline-block;
margin-bottom: 0.5rem;
}
-
-button {
+.bootstrap button {
border-radius: 0;
}
-
-button:focus {
+.bootstrap button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
-
-input,
-button,
-select,
-optgroup,
-textarea {
+.bootstrap input,
+.bootstrap button,
+.bootstrap select,
+.bootstrap optgroup,
+.bootstrap textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
-
-button,
-input {
+.bootstrap button,
+.bootstrap input {
overflow: visible;
}
-
-button,
-select {
+.bootstrap button,
+.bootstrap select {
text-transform: none;
}
-
-select {
+.bootstrap select {
word-wrap: normal;
}
-
-button,
-[type=button],
-[type=reset],
-[type=submit] {
+.bootstrap button,
+.bootstrap [type=button],
+.bootstrap [type=reset],
+.bootstrap [type=submit] {
-webkit-appearance: button;
}
-
-button:not(:disabled),
-[type=button]:not(:disabled),
-[type=reset]:not(:disabled),
-[type=submit]:not(:disabled) {
+.bootstrap button:not(:disabled),
+.bootstrap [type=button]:not(:disabled),
+.bootstrap [type=reset]:not(:disabled),
+.bootstrap [type=submit]:not(:disabled) {
cursor: pointer;
}
-
-button::-moz-focus-inner,
-[type=button]::-moz-focus-inner,
-[type=reset]::-moz-focus-inner,
-[type=submit]::-moz-focus-inner {
+.bootstrap button::-moz-focus-inner,
+.bootstrap [type=button]::-moz-focus-inner,
+.bootstrap [type=reset]::-moz-focus-inner,
+.bootstrap [type=submit]::-moz-focus-inner {
padding: 0;
border-style: none;
}
-
-input[type=radio],
-input[type=checkbox] {
+.bootstrap input[type=radio],
+.bootstrap input[type=checkbox] {
box-sizing: border-box;
padding: 0;
}
-
-input[type=date],
-input[type=time],
-input[type=datetime-local],
-input[type=month] {
+.bootstrap input[type=date],
+.bootstrap input[type=time],
+.bootstrap input[type=datetime-local],
+.bootstrap input[type=month] {
-webkit-appearance: listbox;
}
-
-textarea {
+.bootstrap textarea {
overflow: auto;
resize: vertical;
}
-
-fieldset {
+.bootstrap fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
-
-legend {
+.bootstrap legend {
display: block;
width: 100%;
max-width: 100%;
@@ -335,186 +273,136 @@ legend {
color: inherit;
white-space: normal;
}
-
-progress {
+.bootstrap progress {
vertical-align: baseline;
}
-
-[type=number]::-webkit-inner-spin-button,
-[type=number]::-webkit-outer-spin-button {
+.bootstrap [type=number]::-webkit-inner-spin-button,
+.bootstrap [type=number]::-webkit-outer-spin-button {
height: auto;
}
-
-[type=search] {
+.bootstrap [type=search] {
outline-offset: -2px;
-webkit-appearance: none;
}
-
-[type=search]::-webkit-search-decoration {
+.bootstrap [type=search]::-webkit-search-decoration {
-webkit-appearance: none;
}
-
-::-webkit-file-upload-button {
+.bootstrap ::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
-
-output {
+.bootstrap output {
display: inline-block;
}
-
-summary {
+.bootstrap summary {
display: list-item;
cursor: pointer;
}
-
-template {
+.bootstrap template {
display: none;
}
-
-[hidden] {
+.bootstrap [hidden] {
display: none !important;
}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-.h1,
-.h2,
-.h3,
-.h4,
-.h5,
-.h6 {
+.bootstrap h1, .bootstrap h2, .bootstrap h3, .bootstrap h4, .bootstrap h5, .bootstrap h6,
+.bootstrap .h1, .bootstrap .h2, .bootstrap .h3, .bootstrap .h4, .bootstrap .h5, .bootstrap .h6 {
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
-
-h1,
-.h1 {
+.bootstrap h1, .bootstrap .h1 {
font-size: 2.25rem;
}
-
-h2,
-.h2 {
+.bootstrap h2, .bootstrap .h2 {
font-size: 1.8rem;
}
-
-h3,
-.h3 {
+.bootstrap h3, .bootstrap .h3 {
font-size: 1.575rem;
}
-
-h4,
-.h4 {
+.bootstrap h4, .bootstrap .h4 {
font-size: 1.35rem;
}
-
-h5,
-.h5 {
+.bootstrap h5, .bootstrap .h5 {
font-size: 1.125rem;
}
-
-h6,
-.h6 {
+.bootstrap h6, .bootstrap .h6 {
font-size: 0.9rem;
}
-
-.lead {
+.bootstrap .lead {
font-size: 1.125rem;
font-weight: 300;
}
-
-.display-1 {
+.bootstrap .display-1 {
font-size: 6rem;
font-weight: 300;
line-height: 1.2;
}
-
-.display-2 {
+.bootstrap .display-2 {
font-size: 5.5rem;
font-weight: 300;
line-height: 1.2;
}
-
-.display-3 {
+.bootstrap .display-3 {
font-size: 4.5rem;
font-weight: 300;
line-height: 1.2;
}
-
-.display-4 {
+.bootstrap .display-4 {
font-size: 3.5rem;
font-weight: 300;
line-height: 1.2;
}
-
-hr {
+.bootstrap hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
-
-small,
-.small {
+.bootstrap small,
+.bootstrap .small {
font-size: 80%;
font-weight: 400;
}
-
-mark,
-.mark {
+.bootstrap mark,
+.bootstrap .mark {
padding: 0.2em;
background-color: #fcf8e3;
}
-
-.list-unstyled {
+.bootstrap .list-unstyled {
padding-left: 0;
list-style: none;
}
-
-.list-inline {
+.bootstrap .list-inline {
padding-left: 0;
list-style: none;
}
-
-.list-inline-item {
+.bootstrap .list-inline-item {
display: inline-block;
}
-
-.list-inline-item:not(:last-child) {
+.bootstrap .list-inline-item:not(:last-child) {
margin-right: 0.5rem;
}
-
-.initialism {
+.bootstrap .initialism {
font-size: 90%;
text-transform: uppercase;
}
-
-.blockquote {
+.bootstrap .blockquote {
margin-bottom: 1rem;
font-size: 1.125rem;
}
-
-.blockquote-footer {
+.bootstrap .blockquote-footer {
display: block;
font-size: 80%;
color: #6c757d;
}
-
-.blockquote-footer::before {
+.bootstrap .blockquote-footer::before {
content: "â ";
}
-
-.img-fluid {
+.bootstrap .img-fluid {
max-width: 100%;
height: auto;
}
-
-.img-thumbnail {
+.bootstrap .img-thumbnail {
padding: 0.25rem;
background-color: #f8fafc;
border: 1px solid #dee2e6;
@@ -523,32 +411,26 @@ mark,
max-width: 100%;
height: auto;
}
-
-.figure {
+.bootstrap .figure {
display: inline-block;
}
-
-.figure-img {
+.bootstrap .figure-img {
margin-bottom: 0.5rem;
line-height: 1;
}
-
-.figure-caption {
+.bootstrap .figure-caption {
font-size: 90%;
color: #6c757d;
}
-
-code {
+.bootstrap code {
font-size: 87.5%;
color: #f66d9b;
word-wrap: break-word;
}
-
-a > code {
+a > .bootstrap code {
color: inherit;
}
-
-kbd {
+.bootstrap kbd {
padding: 0.2rem 0.4rem;
font-size: 87.5%;
color: #fff;
@@ -556,1606 +438,1211 @@ kbd {
border-radius: 0.2rem;
box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}
-
-kbd kbd {
+.bootstrap kbd kbd {
padding: 0;
font-size: 100%;
font-weight: 700;
box-shadow: none;
}
-
-pre {
+.bootstrap pre {
display: block;
font-size: 87.5%;
color: #212529;
}
-
-pre code {
+.bootstrap pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
-
-.pre-scrollable {
+.bootstrap .pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
-
-.container {
+.bootstrap .container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
-
@media (min-width: 576px) {
- .container {
+ .bootstrap .container {
max-width: 540px;
}
}
-
@media (min-width: 768px) {
- .container {
+ .bootstrap .container {
max-width: 720px;
}
}
-
@media (min-width: 992px) {
- .container {
+ .bootstrap .container {
max-width: 960px;
}
}
-
@media (min-width: 1200px) {
- .container {
+ .bootstrap .container {
max-width: 1140px;
}
}
-
-.container-fluid,
-.container-xl,
-.container-lg,
-.container-md,
-.container-sm {
+.bootstrap .container-fluid, .bootstrap .container-xl, .bootstrap .container-lg, .bootstrap .container-md, .bootstrap .container-sm {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
-
@media (min-width: 576px) {
- .container-sm,
- .container {
+ .bootstrap .container-sm, .bootstrap .container {
max-width: 540px;
}
}
-
@media (min-width: 768px) {
- .container-md,
- .container-sm,
- .container {
+ .bootstrap .container-md, .bootstrap .container-sm, .bootstrap .container {
max-width: 720px;
}
}
-
@media (min-width: 992px) {
- .container-lg,
- .container-md,
- .container-sm,
- .container {
+ .bootstrap .container-lg, .bootstrap .container-md, .bootstrap .container-sm, .bootstrap .container {
max-width: 960px;
}
}
-
@media (min-width: 1200px) {
- .container-xl,
- .container-lg,
- .container-md,
- .container-sm,
- .container {
+ .bootstrap .container-xl, .bootstrap .container-lg, .bootstrap .container-md, .bootstrap .container-sm, .bootstrap .container {
max-width: 1140px;
}
}
-
-.row {
+.bootstrap .row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
-
-.no-gutters {
+.bootstrap .no-gutters {
margin-right: 0;
margin-left: 0;
}
-
-.no-gutters > .col,
-.no-gutters > [class*=col-] {
+.bootstrap .no-gutters > .col,
+.bootstrap .no-gutters > [class*=col-] {
padding-right: 0;
padding-left: 0;
}
-
-.col-xl,
-.col-xl-auto,
-.col-xl-12,
-.col-xl-11,
-.col-xl-10,
-.col-xl-9,
-.col-xl-8,
-.col-xl-7,
-.col-xl-6,
-.col-xl-5,
-.col-xl-4,
-.col-xl-3,
-.col-xl-2,
-.col-xl-1,
-.col-lg,
-.col-lg-auto,
-.col-lg-12,
-.col-lg-11,
-.col-lg-10,
-.col-lg-9,
-.col-lg-8,
-.col-lg-7,
-.col-lg-6,
-.col-lg-5,
-.col-lg-4,
-.col-lg-3,
-.col-lg-2,
-.col-lg-1,
-.col-md,
-.col-md-auto,
-.col-md-12,
-.col-md-11,
-.col-md-10,
-.col-md-9,
-.col-md-8,
-.col-md-7,
-.col-md-6,
-.col-md-5,
-.col-md-4,
-.col-md-3,
-.col-md-2,
-.col-md-1,
-.col-sm,
-.col-sm-auto,
-.col-sm-12,
-.col-sm-11,
-.col-sm-10,
-.col-sm-9,
-.col-sm-8,
-.col-sm-7,
-.col-sm-6,
-.col-sm-5,
-.col-sm-4,
-.col-sm-3,
-.col-sm-2,
-.col-sm-1,
-.col,
-.col-auto,
-.col-12,
-.col-11,
-.col-10,
-.col-9,
-.col-8,
-.col-7,
-.col-6,
-.col-5,
-.col-4,
-.col-3,
-.col-2,
-.col-1 {
+.bootstrap .col-xl,
+.bootstrap .col-xl-auto, .bootstrap .col-xl-12, .bootstrap .col-xl-11, .bootstrap .col-xl-10, .bootstrap .col-xl-9, .bootstrap .col-xl-8, .bootstrap .col-xl-7, .bootstrap .col-xl-6, .bootstrap .col-xl-5, .bootstrap .col-xl-4, .bootstrap .col-xl-3, .bootstrap .col-xl-2, .bootstrap .col-xl-1, .bootstrap .col-lg,
+.bootstrap .col-lg-auto, .bootstrap .col-lg-12, .bootstrap .col-lg-11, .bootstrap .col-lg-10, .bootstrap .col-lg-9, .bootstrap .col-lg-8, .bootstrap .col-lg-7, .bootstrap .col-lg-6, .bootstrap .col-lg-5, .bootstrap .col-lg-4, .bootstrap .col-lg-3, .bootstrap .col-lg-2, .bootstrap .col-lg-1, .bootstrap .col-md,
+.bootstrap .col-md-auto, .bootstrap .col-md-12, .bootstrap .col-md-11, .bootstrap .col-md-10, .bootstrap .col-md-9, .bootstrap .col-md-8, .bootstrap .col-md-7, .bootstrap .col-md-6, .bootstrap .col-md-5, .bootstrap .col-md-4, .bootstrap .col-md-3, .bootstrap .col-md-2, .bootstrap .col-md-1, .bootstrap .col-sm,
+.bootstrap .col-sm-auto, .bootstrap .col-sm-12, .bootstrap .col-sm-11, .bootstrap .col-sm-10, .bootstrap .col-sm-9, .bootstrap .col-sm-8, .bootstrap .col-sm-7, .bootstrap .col-sm-6, .bootstrap .col-sm-5, .bootstrap .col-sm-4, .bootstrap .col-sm-3, .bootstrap .col-sm-2, .bootstrap .col-sm-1, .bootstrap .col,
+.bootstrap .col-auto, .bootstrap .col-12, .bootstrap .col-11, .bootstrap .col-10, .bootstrap .col-9, .bootstrap .col-8, .bootstrap .col-7, .bootstrap .col-6, .bootstrap .col-5, .bootstrap .col-4, .bootstrap .col-3, .bootstrap .col-2, .bootstrap .col-1 {
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
-
-.col {
+.bootstrap .col {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
}
-
-.row-cols-1 > * {
+.bootstrap .row-cols-1 > * {
flex: 0 0 100%;
max-width: 100%;
}
-
-.row-cols-2 > * {
+.bootstrap .row-cols-2 > * {
flex: 0 0 50%;
max-width: 50%;
}
-
-.row-cols-3 > * {
+.bootstrap .row-cols-3 > * {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
-.row-cols-4 > * {
+.bootstrap .row-cols-4 > * {
flex: 0 0 25%;
max-width: 25%;
}
-
-.row-cols-5 > * {
+.bootstrap .row-cols-5 > * {
flex: 0 0 20%;
max-width: 20%;
}
-
-.row-cols-6 > * {
+.bootstrap .row-cols-6 > * {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
-.col-auto {
+.bootstrap .col-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
-
-.col-1 {
+.bootstrap .col-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
-
-.col-2 {
+.bootstrap .col-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
-.col-3 {
+.bootstrap .col-3 {
flex: 0 0 25%;
max-width: 25%;
}
-
-.col-4 {
+.bootstrap .col-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
-.col-5 {
+.bootstrap .col-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
-
-.col-6 {
+.bootstrap .col-6 {
flex: 0 0 50%;
max-width: 50%;
}
-
-.col-7 {
+.bootstrap .col-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
-
-.col-8 {
+.bootstrap .col-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
-
-.col-9 {
+.bootstrap .col-9 {
flex: 0 0 75%;
max-width: 75%;
}
-
-.col-10 {
+.bootstrap .col-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
-
-.col-11 {
+.bootstrap .col-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
-
-.col-12 {
+.bootstrap .col-12 {
flex: 0 0 100%;
max-width: 100%;
}
-
-.order-first {
+.bootstrap .order-first {
order: -1;
}
-
-.order-last {
+.bootstrap .order-last {
order: 13;
}
-
-.order-0 {
+.bootstrap .order-0 {
order: 0;
}
-
-.order-1 {
+.bootstrap .order-1 {
order: 1;
}
-
-.order-2 {
+.bootstrap .order-2 {
order: 2;
}
-
-.order-3 {
+.bootstrap .order-3 {
order: 3;
}
-
-.order-4 {
+.bootstrap .order-4 {
order: 4;
}
-
-.order-5 {
+.bootstrap .order-5 {
order: 5;
}
-
-.order-6 {
+.bootstrap .order-6 {
order: 6;
}
-
-.order-7 {
+.bootstrap .order-7 {
order: 7;
}
-
-.order-8 {
+.bootstrap .order-8 {
order: 8;
}
-
-.order-9 {
+.bootstrap .order-9 {
order: 9;
}
-
-.order-10 {
+.bootstrap .order-10 {
order: 10;
}
-
-.order-11 {
+.bootstrap .order-11 {
order: 11;
}
-
-.order-12 {
+.bootstrap .order-12 {
order: 12;
}
-
-.offset-1 {
+.bootstrap .offset-1 {
margin-left: 8.3333333333%;
}
-
-.offset-2 {
+.bootstrap .offset-2 {
margin-left: 16.6666666667%;
}
-
-.offset-3 {
+.bootstrap .offset-3 {
margin-left: 25%;
}
-
-.offset-4 {
+.bootstrap .offset-4 {
margin-left: 33.3333333333%;
}
-
-.offset-5 {
+.bootstrap .offset-5 {
margin-left: 41.6666666667%;
}
-
-.offset-6 {
+.bootstrap .offset-6 {
margin-left: 50%;
}
-
-.offset-7 {
+.bootstrap .offset-7 {
margin-left: 58.3333333333%;
}
-
-.offset-8 {
+.bootstrap .offset-8 {
margin-left: 66.6666666667%;
}
-
-.offset-9 {
+.bootstrap .offset-9 {
margin-left: 75%;
}
-
-.offset-10 {
+.bootstrap .offset-10 {
margin-left: 83.3333333333%;
}
-
-.offset-11 {
+.bootstrap .offset-11 {
margin-left: 91.6666666667%;
}
-
@media (min-width: 576px) {
- .col-sm {
+ .bootstrap .col-sm {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
}
-
- .row-cols-sm-1 > * {
+ .bootstrap .row-cols-sm-1 > * {
flex: 0 0 100%;
max-width: 100%;
}
-
- .row-cols-sm-2 > * {
+ .bootstrap .row-cols-sm-2 > * {
flex: 0 0 50%;
max-width: 50%;
}
-
- .row-cols-sm-3 > * {
+ .bootstrap .row-cols-sm-3 > * {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .row-cols-sm-4 > * {
+ .bootstrap .row-cols-sm-4 > * {
flex: 0 0 25%;
max-width: 25%;
}
-
- .row-cols-sm-5 > * {
+ .bootstrap .row-cols-sm-5 > * {
flex: 0 0 20%;
max-width: 20%;
}
-
- .row-cols-sm-6 > * {
+ .bootstrap .row-cols-sm-6 > * {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-sm-auto {
+ .bootstrap .col-sm-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
-
- .col-sm-1 {
+ .bootstrap .col-sm-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
-
- .col-sm-2 {
+ .bootstrap .col-sm-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-sm-3 {
+ .bootstrap .col-sm-3 {
flex: 0 0 25%;
max-width: 25%;
}
-
- .col-sm-4 {
+ .bootstrap .col-sm-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .col-sm-5 {
+ .bootstrap .col-sm-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
-
- .col-sm-6 {
+ .bootstrap .col-sm-6 {
flex: 0 0 50%;
max-width: 50%;
}
-
- .col-sm-7 {
+ .bootstrap .col-sm-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
-
- .col-sm-8 {
+ .bootstrap .col-sm-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
-
- .col-sm-9 {
+ .bootstrap .col-sm-9 {
flex: 0 0 75%;
max-width: 75%;
}
-
- .col-sm-10 {
+ .bootstrap .col-sm-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
-
- .col-sm-11 {
+ .bootstrap .col-sm-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
-
- .col-sm-12 {
+ .bootstrap .col-sm-12 {
flex: 0 0 100%;
max-width: 100%;
}
-
- .order-sm-first {
+ .bootstrap .order-sm-first {
order: -1;
}
-
- .order-sm-last {
+ .bootstrap .order-sm-last {
order: 13;
}
-
- .order-sm-0 {
+ .bootstrap .order-sm-0 {
order: 0;
}
-
- .order-sm-1 {
+ .bootstrap .order-sm-1 {
order: 1;
}
-
- .order-sm-2 {
+ .bootstrap .order-sm-2 {
order: 2;
}
-
- .order-sm-3 {
+ .bootstrap .order-sm-3 {
order: 3;
}
-
- .order-sm-4 {
+ .bootstrap .order-sm-4 {
order: 4;
}
-
- .order-sm-5 {
+ .bootstrap .order-sm-5 {
order: 5;
}
-
- .order-sm-6 {
+ .bootstrap .order-sm-6 {
order: 6;
}
-
- .order-sm-7 {
+ .bootstrap .order-sm-7 {
order: 7;
}
-
- .order-sm-8 {
+ .bootstrap .order-sm-8 {
order: 8;
}
-
- .order-sm-9 {
+ .bootstrap .order-sm-9 {
order: 9;
}
-
- .order-sm-10 {
+ .bootstrap .order-sm-10 {
order: 10;
}
-
- .order-sm-11 {
+ .bootstrap .order-sm-11 {
order: 11;
}
-
- .order-sm-12 {
+ .bootstrap .order-sm-12 {
order: 12;
}
-
- .offset-sm-0 {
+ .bootstrap .offset-sm-0 {
margin-left: 0;
}
-
- .offset-sm-1 {
+ .bootstrap .offset-sm-1 {
margin-left: 8.3333333333%;
}
-
- .offset-sm-2 {
+ .bootstrap .offset-sm-2 {
margin-left: 16.6666666667%;
}
-
- .offset-sm-3 {
+ .bootstrap .offset-sm-3 {
margin-left: 25%;
}
-
- .offset-sm-4 {
+ .bootstrap .offset-sm-4 {
margin-left: 33.3333333333%;
}
-
- .offset-sm-5 {
+ .bootstrap .offset-sm-5 {
margin-left: 41.6666666667%;
}
-
- .offset-sm-6 {
+ .bootstrap .offset-sm-6 {
margin-left: 50%;
}
-
- .offset-sm-7 {
+ .bootstrap .offset-sm-7 {
margin-left: 58.3333333333%;
}
-
- .offset-sm-8 {
+ .bootstrap .offset-sm-8 {
margin-left: 66.6666666667%;
}
-
- .offset-sm-9 {
+ .bootstrap .offset-sm-9 {
margin-left: 75%;
}
-
- .offset-sm-10 {
+ .bootstrap .offset-sm-10 {
margin-left: 83.3333333333%;
}
-
- .offset-sm-11 {
+ .bootstrap .offset-sm-11 {
margin-left: 91.6666666667%;
}
}
-
@media (min-width: 768px) {
- .col-md {
+ .bootstrap .col-md {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
}
-
- .row-cols-md-1 > * {
+ .bootstrap .row-cols-md-1 > * {
flex: 0 0 100%;
max-width: 100%;
}
-
- .row-cols-md-2 > * {
+ .bootstrap .row-cols-md-2 > * {
flex: 0 0 50%;
max-width: 50%;
}
-
- .row-cols-md-3 > * {
+ .bootstrap .row-cols-md-3 > * {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .row-cols-md-4 > * {
+ .bootstrap .row-cols-md-4 > * {
flex: 0 0 25%;
max-width: 25%;
}
-
- .row-cols-md-5 > * {
+ .bootstrap .row-cols-md-5 > * {
flex: 0 0 20%;
max-width: 20%;
}
-
- .row-cols-md-6 > * {
+ .bootstrap .row-cols-md-6 > * {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-md-auto {
+ .bootstrap .col-md-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
-
- .col-md-1 {
+ .bootstrap .col-md-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
-
- .col-md-2 {
+ .bootstrap .col-md-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-md-3 {
+ .bootstrap .col-md-3 {
flex: 0 0 25%;
max-width: 25%;
}
-
- .col-md-4 {
+ .bootstrap .col-md-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .col-md-5 {
+ .bootstrap .col-md-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
-
- .col-md-6 {
+ .bootstrap .col-md-6 {
flex: 0 0 50%;
max-width: 50%;
}
-
- .col-md-7 {
+ .bootstrap .col-md-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
-
- .col-md-8 {
+ .bootstrap .col-md-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
-
- .col-md-9 {
+ .bootstrap .col-md-9 {
flex: 0 0 75%;
max-width: 75%;
}
-
- .col-md-10 {
+ .bootstrap .col-md-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
-
- .col-md-11 {
+ .bootstrap .col-md-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
-
- .col-md-12 {
+ .bootstrap .col-md-12 {
flex: 0 0 100%;
max-width: 100%;
}
-
- .order-md-first {
+ .bootstrap .order-md-first {
order: -1;
}
-
- .order-md-last {
+ .bootstrap .order-md-last {
order: 13;
}
-
- .order-md-0 {
+ .bootstrap .order-md-0 {
order: 0;
}
-
- .order-md-1 {
+ .bootstrap .order-md-1 {
order: 1;
}
-
- .order-md-2 {
+ .bootstrap .order-md-2 {
order: 2;
}
-
- .order-md-3 {
+ .bootstrap .order-md-3 {
order: 3;
}
-
- .order-md-4 {
+ .bootstrap .order-md-4 {
order: 4;
}
-
- .order-md-5 {
+ .bootstrap .order-md-5 {
order: 5;
}
-
- .order-md-6 {
+ .bootstrap .order-md-6 {
order: 6;
}
-
- .order-md-7 {
+ .bootstrap .order-md-7 {
order: 7;
}
-
- .order-md-8 {
+ .bootstrap .order-md-8 {
order: 8;
}
-
- .order-md-9 {
+ .bootstrap .order-md-9 {
order: 9;
}
-
- .order-md-10 {
+ .bootstrap .order-md-10 {
order: 10;
}
-
- .order-md-11 {
+ .bootstrap .order-md-11 {
order: 11;
}
-
- .order-md-12 {
+ .bootstrap .order-md-12 {
order: 12;
}
-
- .offset-md-0 {
+ .bootstrap .offset-md-0 {
margin-left: 0;
}
-
- .offset-md-1 {
+ .bootstrap .offset-md-1 {
margin-left: 8.3333333333%;
}
-
- .offset-md-2 {
+ .bootstrap .offset-md-2 {
margin-left: 16.6666666667%;
}
-
- .offset-md-3 {
+ .bootstrap .offset-md-3 {
margin-left: 25%;
}
-
- .offset-md-4 {
+ .bootstrap .offset-md-4 {
margin-left: 33.3333333333%;
}
-
- .offset-md-5 {
+ .bootstrap .offset-md-5 {
margin-left: 41.6666666667%;
}
-
- .offset-md-6 {
+ .bootstrap .offset-md-6 {
margin-left: 50%;
}
-
- .offset-md-7 {
+ .bootstrap .offset-md-7 {
margin-left: 58.3333333333%;
}
-
- .offset-md-8 {
+ .bootstrap .offset-md-8 {
margin-left: 66.6666666667%;
}
-
- .offset-md-9 {
+ .bootstrap .offset-md-9 {
margin-left: 75%;
}
-
- .offset-md-10 {
+ .bootstrap .offset-md-10 {
margin-left: 83.3333333333%;
}
-
- .offset-md-11 {
+ .bootstrap .offset-md-11 {
margin-left: 91.6666666667%;
}
}
-
@media (min-width: 992px) {
- .col-lg {
+ .bootstrap .col-lg {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
}
-
- .row-cols-lg-1 > * {
+ .bootstrap .row-cols-lg-1 > * {
flex: 0 0 100%;
max-width: 100%;
}
-
- .row-cols-lg-2 > * {
+ .bootstrap .row-cols-lg-2 > * {
flex: 0 0 50%;
max-width: 50%;
}
-
- .row-cols-lg-3 > * {
+ .bootstrap .row-cols-lg-3 > * {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .row-cols-lg-4 > * {
+ .bootstrap .row-cols-lg-4 > * {
flex: 0 0 25%;
max-width: 25%;
}
-
- .row-cols-lg-5 > * {
+ .bootstrap .row-cols-lg-5 > * {
flex: 0 0 20%;
max-width: 20%;
}
-
- .row-cols-lg-6 > * {
+ .bootstrap .row-cols-lg-6 > * {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-lg-auto {
+ .bootstrap .col-lg-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
-
- .col-lg-1 {
+ .bootstrap .col-lg-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
-
- .col-lg-2 {
+ .bootstrap .col-lg-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-lg-3 {
+ .bootstrap .col-lg-3 {
flex: 0 0 25%;
max-width: 25%;
}
-
- .col-lg-4 {
+ .bootstrap .col-lg-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .col-lg-5 {
+ .bootstrap .col-lg-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
-
- .col-lg-6 {
+ .bootstrap .col-lg-6 {
flex: 0 0 50%;
max-width: 50%;
}
-
- .col-lg-7 {
+ .bootstrap .col-lg-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
-
- .col-lg-8 {
+ .bootstrap .col-lg-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
-
- .col-lg-9 {
+ .bootstrap .col-lg-9 {
flex: 0 0 75%;
max-width: 75%;
}
-
- .col-lg-10 {
+ .bootstrap .col-lg-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
-
- .col-lg-11 {
+ .bootstrap .col-lg-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
-
- .col-lg-12 {
+ .bootstrap .col-lg-12 {
flex: 0 0 100%;
max-width: 100%;
}
-
- .order-lg-first {
+ .bootstrap .order-lg-first {
order: -1;
}
-
- .order-lg-last {
+ .bootstrap .order-lg-last {
order: 13;
}
-
- .order-lg-0 {
+ .bootstrap .order-lg-0 {
order: 0;
}
-
- .order-lg-1 {
+ .bootstrap .order-lg-1 {
order: 1;
}
-
- .order-lg-2 {
+ .bootstrap .order-lg-2 {
order: 2;
}
-
- .order-lg-3 {
+ .bootstrap .order-lg-3 {
order: 3;
}
-
- .order-lg-4 {
+ .bootstrap .order-lg-4 {
order: 4;
}
-
- .order-lg-5 {
+ .bootstrap .order-lg-5 {
order: 5;
}
-
- .order-lg-6 {
+ .bootstrap .order-lg-6 {
order: 6;
}
-
- .order-lg-7 {
+ .bootstrap .order-lg-7 {
order: 7;
}
-
- .order-lg-8 {
+ .bootstrap .order-lg-8 {
order: 8;
}
-
- .order-lg-9 {
+ .bootstrap .order-lg-9 {
order: 9;
}
-
- .order-lg-10 {
+ .bootstrap .order-lg-10 {
order: 10;
}
-
- .order-lg-11 {
+ .bootstrap .order-lg-11 {
order: 11;
}
-
- .order-lg-12 {
+ .bootstrap .order-lg-12 {
order: 12;
}
-
- .offset-lg-0 {
+ .bootstrap .offset-lg-0 {
margin-left: 0;
}
-
- .offset-lg-1 {
+ .bootstrap .offset-lg-1 {
margin-left: 8.3333333333%;
}
-
- .offset-lg-2 {
+ .bootstrap .offset-lg-2 {
margin-left: 16.6666666667%;
}
-
- .offset-lg-3 {
+ .bootstrap .offset-lg-3 {
margin-left: 25%;
}
-
- .offset-lg-4 {
+ .bootstrap .offset-lg-4 {
margin-left: 33.3333333333%;
}
-
- .offset-lg-5 {
+ .bootstrap .offset-lg-5 {
margin-left: 41.6666666667%;
}
-
- .offset-lg-6 {
+ .bootstrap .offset-lg-6 {
margin-left: 50%;
}
-
- .offset-lg-7 {
+ .bootstrap .offset-lg-7 {
margin-left: 58.3333333333%;
}
-
- .offset-lg-8 {
+ .bootstrap .offset-lg-8 {
margin-left: 66.6666666667%;
}
-
- .offset-lg-9 {
+ .bootstrap .offset-lg-9 {
margin-left: 75%;
}
-
- .offset-lg-10 {
+ .bootstrap .offset-lg-10 {
margin-left: 83.3333333333%;
}
-
- .offset-lg-11 {
+ .bootstrap .offset-lg-11 {
margin-left: 91.6666666667%;
}
}
-
@media (min-width: 1200px) {
- .col-xl {
+ .bootstrap .col-xl {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
}
-
- .row-cols-xl-1 > * {
+ .bootstrap .row-cols-xl-1 > * {
flex: 0 0 100%;
max-width: 100%;
}
-
- .row-cols-xl-2 > * {
+ .bootstrap .row-cols-xl-2 > * {
flex: 0 0 50%;
max-width: 50%;
}
-
- .row-cols-xl-3 > * {
+ .bootstrap .row-cols-xl-3 > * {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .row-cols-xl-4 > * {
+ .bootstrap .row-cols-xl-4 > * {
flex: 0 0 25%;
max-width: 25%;
}
-
- .row-cols-xl-5 > * {
+ .bootstrap .row-cols-xl-5 > * {
flex: 0 0 20%;
max-width: 20%;
}
-
- .row-cols-xl-6 > * {
+ .bootstrap .row-cols-xl-6 > * {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-xl-auto {
+ .bootstrap .col-xl-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
-
- .col-xl-1 {
+ .bootstrap .col-xl-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
-
- .col-xl-2 {
+ .bootstrap .col-xl-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
-
- .col-xl-3 {
+ .bootstrap .col-xl-3 {
flex: 0 0 25%;
max-width: 25%;
}
-
- .col-xl-4 {
+ .bootstrap .col-xl-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
-
- .col-xl-5 {
+ .bootstrap .col-xl-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
-
- .col-xl-6 {
+ .bootstrap .col-xl-6 {
flex: 0 0 50%;
max-width: 50%;
}
-
- .col-xl-7 {
+ .bootstrap .col-xl-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
-
- .col-xl-8 {
+ .bootstrap .col-xl-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
-
- .col-xl-9 {
+ .bootstrap .col-xl-9 {
flex: 0 0 75%;
max-width: 75%;
}
-
- .col-xl-10 {
+ .bootstrap .col-xl-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
-
- .col-xl-11 {
+ .bootstrap .col-xl-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
-
- .col-xl-12 {
+ .bootstrap .col-xl-12 {
flex: 0 0 100%;
max-width: 100%;
}
-
- .order-xl-first {
+ .bootstrap .order-xl-first {
order: -1;
}
-
- .order-xl-last {
+ .bootstrap .order-xl-last {
order: 13;
}
-
- .order-xl-0 {
+ .bootstrap .order-xl-0 {
order: 0;
}
-
- .order-xl-1 {
+ .bootstrap .order-xl-1 {
order: 1;
}
-
- .order-xl-2 {
+ .bootstrap .order-xl-2 {
order: 2;
}
-
- .order-xl-3 {
+ .bootstrap .order-xl-3 {
order: 3;
}
-
- .order-xl-4 {
+ .bootstrap .order-xl-4 {
order: 4;
}
-
- .order-xl-5 {
+ .bootstrap .order-xl-5 {
order: 5;
}
-
- .order-xl-6 {
+ .bootstrap .order-xl-6 {
order: 6;
}
-
- .order-xl-7 {
+ .bootstrap .order-xl-7 {
order: 7;
}
-
- .order-xl-8 {
+ .bootstrap .order-xl-8 {
order: 8;
}
-
- .order-xl-9 {
+ .bootstrap .order-xl-9 {
order: 9;
}
-
- .order-xl-10 {
+ .bootstrap .order-xl-10 {
order: 10;
}
-
- .order-xl-11 {
+ .bootstrap .order-xl-11 {
order: 11;
}
-
- .order-xl-12 {
+ .bootstrap .order-xl-12 {
order: 12;
}
-
- .offset-xl-0 {
+ .bootstrap .offset-xl-0 {
margin-left: 0;
}
-
- .offset-xl-1 {
+ .bootstrap .offset-xl-1 {
margin-left: 8.3333333333%;
}
-
- .offset-xl-2 {
+ .bootstrap .offset-xl-2 {
margin-left: 16.6666666667%;
}
-
- .offset-xl-3 {
+ .bootstrap .offset-xl-3 {
margin-left: 25%;
}
-
- .offset-xl-4 {
+ .bootstrap .offset-xl-4 {
margin-left: 33.3333333333%;
}
-
- .offset-xl-5 {
+ .bootstrap .offset-xl-5 {
margin-left: 41.6666666667%;
}
-
- .offset-xl-6 {
+ .bootstrap .offset-xl-6 {
margin-left: 50%;
}
-
- .offset-xl-7 {
+ .bootstrap .offset-xl-7 {
margin-left: 58.3333333333%;
}
-
- .offset-xl-8 {
+ .bootstrap .offset-xl-8 {
margin-left: 66.6666666667%;
}
-
- .offset-xl-9 {
+ .bootstrap .offset-xl-9 {
margin-left: 75%;
}
-
- .offset-xl-10 {
+ .bootstrap .offset-xl-10 {
margin-left: 83.3333333333%;
}
-
- .offset-xl-11 {
+ .bootstrap .offset-xl-11 {
margin-left: 91.6666666667%;
}
}
-
-.table {
+.bootstrap .table {
width: 100%;
margin-bottom: 1rem;
color: #212529;
}
-
-.table th,
-.table td {
+.bootstrap .table th,
+.bootstrap .table td {
padding: 0.75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
-
-.table thead th {
+.bootstrap .table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
-
-.table tbody + tbody {
+.bootstrap .table tbody + tbody {
border-top: 2px solid #dee2e6;
}
-
-.table-sm th,
-.table-sm td {
+.bootstrap .table-sm th,
+.bootstrap .table-sm td {
padding: 0.3rem;
}
-
-.table-bordered {
+.bootstrap .table-bordered {
border: 1px solid #dee2e6;
}
-
-.table-bordered th,
-.table-bordered td {
+.bootstrap .table-bordered th,
+.bootstrap .table-bordered td {
border: 1px solid #dee2e6;
}
-
-.table-bordered thead th,
-.table-bordered thead td {
+.bootstrap .table-bordered thead th,
+.bootstrap .table-bordered thead td {
border-bottom-width: 2px;
}
-
-.table-borderless th,
-.table-borderless td,
-.table-borderless thead th,
-.table-borderless tbody + tbody {
+.bootstrap .table-borderless th,
+.bootstrap .table-borderless td,
+.bootstrap .table-borderless thead th,
+.bootstrap .table-borderless tbody + tbody {
border: 0;
}
-
-.table-striped tbody tr:nth-of-type(odd) {
+.bootstrap .table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, 0.05);
}
-
-.table-hover tbody tr:hover {
+.bootstrap .table-hover tbody tr:hover {
color: #212529;
background-color: rgba(0, 0, 0, 0.075);
}
-
-.table-primary,
-.table-primary > th,
-.table-primary > td {
+.bootstrap .table-primary,
+.bootstrap .table-primary > th,
+.bootstrap .table-primary > td {
background-color: #bacde3;
}
-
-.table-primary th,
-.table-primary td,
-.table-primary thead th,
-.table-primary tbody + tbody {
+.bootstrap .table-primary th,
+.bootstrap .table-primary td,
+.bootstrap .table-primary thead th,
+.bootstrap .table-primary tbody + tbody {
border-color: #7ea3cc;
}
-
-.table-hover .table-primary:hover {
+.bootstrap .table-hover .table-primary:hover {
background-color: #a8c0dc;
}
-
-.table-hover .table-primary:hover > td,
-.table-hover .table-primary:hover > th {
+.bootstrap .table-hover .table-primary:hover > td,
+.bootstrap .table-hover .table-primary:hover > th {
background-color: #a8c0dc;
}
-
-.table-secondary,
-.table-secondary > th,
-.table-secondary > td {
+.bootstrap .table-secondary,
+.bootstrap .table-secondary > th,
+.bootstrap .table-secondary > td {
background-color: #d6d8db;
}
-
-.table-secondary th,
-.table-secondary td,
-.table-secondary thead th,
-.table-secondary tbody + tbody {
+.bootstrap .table-secondary th,
+.bootstrap .table-secondary td,
+.bootstrap .table-secondary thead th,
+.bootstrap .table-secondary tbody + tbody {
border-color: #b3b7bb;
}
-
-.table-hover .table-secondary:hover {
+.bootstrap .table-hover .table-secondary:hover {
background-color: #c8cbcf;
}
-
-.table-hover .table-secondary:hover > td,
-.table-hover .table-secondary:hover > th {
+.bootstrap .table-hover .table-secondary:hover > td,
+.bootstrap .table-hover .table-secondary:hover > th {
background-color: #c8cbcf;
}
-
-.table-success,
-.table-success > th,
-.table-success > td {
+.bootstrap .table-success,
+.bootstrap .table-success > th,
+.bootstrap .table-success > td {
background-color: #c7eed8;
}
-
-.table-success th,
-.table-success td,
-.table-success thead th,
-.table-success tbody + tbody {
+.bootstrap .table-success th,
+.bootstrap .table-success td,
+.bootstrap .table-success thead th,
+.bootstrap .table-success tbody + tbody {
border-color: #98dfb6;
}
-
-.table-hover .table-success:hover {
+.bootstrap .table-hover .table-success:hover {
background-color: #b3e8ca;
}
-
-.table-hover .table-success:hover > td,
-.table-hover .table-success:hover > th {
+.bootstrap .table-hover .table-success:hover > td,
+.bootstrap .table-hover .table-success:hover > th {
background-color: #b3e8ca;
}
-
-.table-info,
-.table-info > th,
-.table-info > td {
+.bootstrap .table-info,
+.bootstrap .table-info > th,
+.bootstrap .table-info > td {
background-color: #d6e9f9;
}
-
-.table-info th,
-.table-info td,
-.table-info thead th,
-.table-info tbody + tbody {
+.bootstrap .table-info th,
+.bootstrap .table-info td,
+.bootstrap .table-info thead th,
+.bootstrap .table-info tbody + tbody {
border-color: #b3d7f5;
}
-
-.table-hover .table-info:hover {
+.bootstrap .table-hover .table-info:hover {
background-color: #c0ddf6;
}
-
-.table-hover .table-info:hover > td,
-.table-hover .table-info:hover > th {
+.bootstrap .table-hover .table-info:hover > td,
+.bootstrap .table-hover .table-info:hover > th {
background-color: #c0ddf6;
}
-
-.table-warning,
-.table-warning > th,
-.table-warning > td {
+.bootstrap .table-warning,
+.bootstrap .table-warning > th,
+.bootstrap .table-warning > td {
background-color: #fffacc;
}
-
-.table-warning th,
-.table-warning td,
-.table-warning thead th,
-.table-warning tbody + tbody {
+.bootstrap .table-warning th,
+.bootstrap .table-warning td,
+.bootstrap .table-warning thead th,
+.bootstrap .table-warning tbody + tbody {
border-color: #fff6a1;
}
-
-.table-hover .table-warning:hover {
+.bootstrap .table-hover .table-warning:hover {
background-color: #fff8b3;
}
-
-.table-hover .table-warning:hover > td,
-.table-hover .table-warning:hover > th {
+.bootstrap .table-hover .table-warning:hover > td,
+.bootstrap .table-hover .table-warning:hover > th {
background-color: #fff8b3;
}
-
-.table-danger,
-.table-danger > th,
-.table-danger > td {
+.bootstrap .table-danger,
+.bootstrap .table-danger > th,
+.bootstrap .table-danger > td {
background-color: #f2cdcc;
}
-
-.table-danger th,
-.table-danger td,
-.table-danger thead th,
-.table-danger tbody + tbody {
+.bootstrap .table-danger th,
+.bootstrap .table-danger td,
+.bootstrap .table-danger thead th,
+.bootstrap .table-danger tbody + tbody {
border-color: #e7a2a1;
}
-
-.table-hover .table-danger:hover {
+.bootstrap .table-hover .table-danger:hover {
background-color: #edb9b8;
}
-
-.table-hover .table-danger:hover > td,
-.table-hover .table-danger:hover > th {
+.bootstrap .table-hover .table-danger:hover > td,
+.bootstrap .table-hover .table-danger:hover > th {
background-color: #edb9b8;
}
-
-.table-light,
-.table-light > th,
-.table-light > td {
+.bootstrap .table-light,
+.bootstrap .table-light > th,
+.bootstrap .table-light > td {
background-color: #fdfdfe;
}
-
-.table-light th,
-.table-light td,
-.table-light thead th,
-.table-light tbody + tbody {
+.bootstrap .table-light th,
+.bootstrap .table-light td,
+.bootstrap .table-light thead th,
+.bootstrap .table-light tbody + tbody {
border-color: #fbfcfc;
}
-
-.table-hover .table-light:hover {
+.bootstrap .table-hover .table-light:hover {
background-color: #ececf6;
}
-
-.table-hover .table-light:hover > td,
-.table-hover .table-light:hover > th {
+.bootstrap .table-hover .table-light:hover > td,
+.bootstrap .table-hover .table-light:hover > th {
background-color: #ececf6;
}
-
-.table-dark,
-.table-dark > th,
-.table-dark > td {
+.bootstrap .table-dark,
+.bootstrap .table-dark > th,
+.bootstrap .table-dark > td {
background-color: #c6c8ca;
}
-
-.table-dark th,
-.table-dark td,
-.table-dark thead th,
-.table-dark tbody + tbody {
+.bootstrap .table-dark th,
+.bootstrap .table-dark td,
+.bootstrap .table-dark thead th,
+.bootstrap .table-dark tbody + tbody {
border-color: #95999c;
}
-
-.table-hover .table-dark:hover {
+.bootstrap .table-hover .table-dark:hover {
background-color: #b9bbbe;
}
-
-.table-hover .table-dark:hover > td,
-.table-hover .table-dark:hover > th {
+.bootstrap .table-hover .table-dark:hover > td,
+.bootstrap .table-hover .table-dark:hover > th {
background-color: #b9bbbe;
}
-
-.table-active,
-.table-active > th,
-.table-active > td {
+.bootstrap .table-active,
+.bootstrap .table-active > th,
+.bootstrap .table-active > td {
background-color: rgba(0, 0, 0, 0.075);
}
-
-.table-hover .table-active:hover {
+.bootstrap .table-hover .table-active:hover {
background-color: rgba(0, 0, 0, 0.075);
}
-
-.table-hover .table-active:hover > td,
-.table-hover .table-active:hover > th {
+.bootstrap .table-hover .table-active:hover > td,
+.bootstrap .table-hover .table-active:hover > th {
background-color: rgba(0, 0, 0, 0.075);
}
-
-.table .thead-dark th {
+.bootstrap .table .thead-dark th {
color: #fff;
background-color: #343a40;
border-color: #454d55;
}
-
-.table .thead-light th {
+.bootstrap .table .thead-light th {
color: #495057;
background-color: #e9ecef;
border-color: #dee2e6;
}
-
-.table-dark {
+.bootstrap .table-dark {
color: #fff;
background-color: #343a40;
}
-
-.table-dark th,
-.table-dark td,
-.table-dark thead th {
+.bootstrap .table-dark th,
+.bootstrap .table-dark td,
+.bootstrap .table-dark thead th {
border-color: #454d55;
}
-
-.table-dark.table-bordered {
+.bootstrap .table-dark.table-bordered {
border: 0;
}
-
-.table-dark.table-striped tbody tr:nth-of-type(odd) {
+.bootstrap .table-dark.table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(255, 255, 255, 0.05);
}
-
-.table-dark.table-hover tbody tr:hover {
+.bootstrap .table-dark.table-hover tbody tr:hover {
color: #fff;
background-color: rgba(255, 255, 255, 0.075);
}
-
@media (max-width: 575.98px) {
- .table-responsive-sm {
+ .bootstrap .table-responsive-sm {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
-
- .table-responsive-sm > .table-bordered {
+ .bootstrap .table-responsive-sm > .table-bordered {
border: 0;
}
}
-
@media (max-width: 767.98px) {
- .table-responsive-md {
+ .bootstrap .table-responsive-md {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
-
- .table-responsive-md > .table-bordered {
+ .bootstrap .table-responsive-md > .table-bordered {
border: 0;
}
}
-
@media (max-width: 991.98px) {
- .table-responsive-lg {
+ .bootstrap .table-responsive-lg {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
-
- .table-responsive-lg > .table-bordered {
+ .bootstrap .table-responsive-lg > .table-bordered {
border: 0;
}
}
-
@media (max-width: 1199.98px) {
- .table-responsive-xl {
+ .bootstrap .table-responsive-xl {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
-
- .table-responsive-xl > .table-bordered {
+ .bootstrap .table-responsive-xl > .table-bordered {
border: 0;
}
}
-
-.table-responsive {
+.bootstrap .table-responsive {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
-
-.table-responsive > .table-bordered {
+.bootstrap .table-responsive > .table-bordered {
border: 0;
}
-
-.form-control,
-.ais-SearchBox-input {
+.bootstrap .form-control, .bootstrap .ais-SearchBox-input {
display: block;
width: 100%;
height: calc(1.6em + 0.75rem + 2px);
@@ -2171,104 +1658,79 @@ pre code {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
-
@media (prefers-reduced-motion: reduce) {
- .form-control,
- .ais-SearchBox-input {
+ .bootstrap .form-control, .bootstrap .ais-SearchBox-input {
transition: none;
}
}
-
-.form-control::-ms-expand,
-.ais-SearchBox-input::-ms-expand {
+.bootstrap .form-control::-ms-expand, .bootstrap .ais-SearchBox-input::-ms-expand {
background-color: transparent;
border: 0;
}
-
-.form-control:-moz-focusring,
-.ais-SearchBox-input:-moz-focusring {
+.bootstrap .form-control:-moz-focusring, .bootstrap .ais-SearchBox-input:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #495057;
}
-
-.form-control:focus,
-.ais-SearchBox-input:focus {
+.bootstrap .form-control:focus, .bootstrap .ais-SearchBox-input:focus {
color: #495057;
background-color: #fff;
border-color: #2d8df6;
outline: 0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.form-control::-webkit-input-placeholder, .ais-SearchBox-input::-webkit-input-placeholder {
+.bootstrap .form-control::-webkit-input-placeholder, .bootstrap .ais-SearchBox-input::-webkit-input-placeholder {
color: #6c757d;
opacity: 1;
}
-
-.form-control::-moz-placeholder, .ais-SearchBox-input::-moz-placeholder {
+.bootstrap .form-control::-moz-placeholder, .bootstrap .ais-SearchBox-input::-moz-placeholder {
color: #6c757d;
opacity: 1;
}
-
-.form-control:-ms-input-placeholder, .ais-SearchBox-input:-ms-input-placeholder {
+.bootstrap .form-control:-ms-input-placeholder, .bootstrap .ais-SearchBox-input:-ms-input-placeholder {
color: #6c757d;
opacity: 1;
}
-
-.form-control::-ms-input-placeholder, .ais-SearchBox-input::-ms-input-placeholder {
+.bootstrap .form-control::-ms-input-placeholder, .bootstrap .ais-SearchBox-input::-ms-input-placeholder {
color: #6c757d;
opacity: 1;
}
-
-.form-control::placeholder,
-.ais-SearchBox-input::placeholder {
+.bootstrap .form-control::placeholder, .bootstrap .ais-SearchBox-input::placeholder {
color: #6c757d;
opacity: 1;
}
-
-.form-control:disabled,
-.ais-SearchBox-input:disabled,
-.form-control[readonly],
-[readonly].ais-SearchBox-input {
+.bootstrap .form-control:disabled, .bootstrap .ais-SearchBox-input:disabled, .bootstrap .form-control[readonly], .bootstrap [readonly].ais-SearchBox-input {
background-color: #e9ecef;
opacity: 1;
}
-
-select.form-control:focus::-ms-value,
-select.ais-SearchBox-input:focus::-ms-value {
+.bootstrap select.form-control:focus::-ms-value, .bootstrap select.ais-SearchBox-input:focus::-ms-value {
color: #495057;
background-color: #fff;
}
-
-.form-control-file,
-.form-control-range {
+.bootstrap .form-control-file,
+.bootstrap .form-control-range {
display: block;
width: 100%;
}
-
-.col-form-label {
+.bootstrap .col-form-label {
padding-top: calc(0.375rem + 1px);
padding-bottom: calc(0.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.6;
}
-
-.col-form-label-lg {
+.bootstrap .col-form-label-lg {
padding-top: calc(0.5rem + 1px);
padding-bottom: calc(0.5rem + 1px);
font-size: 1.125rem;
line-height: 1.5;
}
-
-.col-form-label-sm {
+.bootstrap .col-form-label-sm {
padding-top: calc(0.25rem + 1px);
padding-bottom: calc(0.25rem + 1px);
font-size: 0.7875rem;
line-height: 1.5;
}
-
-.form-control-plaintext {
+.bootstrap .form-control-plaintext {
display: block;
width: 100%;
padding: 0.375rem 0;
@@ -2280,107 +1742,84 @@ select.ais-SearchBox-input:focus::-ms-value {
border: solid transparent;
border-width: 1px 0;
}
-
-.form-control-plaintext.form-control-sm,
-.form-control-plaintext.form-control-lg {
+.bootstrap .form-control-plaintext.form-control-sm, .bootstrap .form-control-plaintext.form-control-lg {
padding-right: 0;
padding-left: 0;
}
-
-.form-control-sm {
+.bootstrap .form-control-sm {
height: calc(1.5em + 0.5rem + 2px);
padding: 0.25rem 0.5rem;
font-size: 0.7875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
-
-.form-control-lg {
+.bootstrap .form-control-lg {
height: calc(1.5em + 1rem + 2px);
padding: 0.5rem 1rem;
font-size: 1.125rem;
line-height: 1.5;
border-radius: 0.3rem;
}
-
-select.form-control[size],
-select[size].ais-SearchBox-input,
-select.form-control[multiple],
-select[multiple].ais-SearchBox-input {
+.bootstrap select.form-control[size], .bootstrap select[size].ais-SearchBox-input, .bootstrap select.form-control[multiple], .bootstrap select[multiple].ais-SearchBox-input {
height: auto;
}
-
-textarea.form-control,
-textarea.ais-SearchBox-input {
+.bootstrap textarea.form-control, .bootstrap textarea.ais-SearchBox-input {
height: auto;
}
-
-.form-group {
+.bootstrap .form-group {
margin-bottom: 1rem;
}
-
-.form-text {
+.bootstrap .form-text {
display: block;
margin-top: 0.25rem;
}
-
-.form-row {
+.bootstrap .form-row {
display: flex;
flex-wrap: wrap;
margin-right: -5px;
margin-left: -5px;
}
-
-.form-row > .col,
-.form-row > [class*=col-] {
+.bootstrap .form-row > .col,
+.bootstrap .form-row > [class*=col-] {
padding-right: 5px;
padding-left: 5px;
}
-
-.form-check {
+.bootstrap .form-check {
position: relative;
display: block;
padding-left: 1.25rem;
}
-
-.form-check-input {
+.bootstrap .form-check-input {
position: absolute;
margin-top: 0.3rem;
margin-left: -1.25rem;
}
-
-.form-check-input[disabled] ~ .form-check-label,
-.form-check-input:disabled ~ .form-check-label {
+.bootstrap .form-check-input[disabled] ~ .form-check-label, .bootstrap .form-check-input:disabled ~ .form-check-label {
color: #6c757d;
}
-
-.form-check-label {
+.bootstrap .form-check-label {
margin-bottom: 0;
}
-
-.form-check-inline {
+.bootstrap .form-check-inline {
display: inline-flex;
align-items: center;
padding-left: 0;
margin-right: 0.75rem;
}
-
-.form-check-inline .form-check-input {
+.bootstrap .form-check-inline .form-check-input {
position: static;
margin-top: 0;
margin-right: 0.3125rem;
margin-left: 0;
}
-
-.valid-feedback {
+.bootstrap .valid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 80%;
color: #38c172;
}
-
-.valid-tooltip {
+.bootstrap .valid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
@@ -2394,18 +1833,12 @@ textarea.ais-SearchBox-input {
background-color: rgba(56, 193, 114, 0.9);
border-radius: 0.25rem;
}
-
-.was-validated :valid ~ .valid-feedback,
-.was-validated :valid ~ .valid-tooltip,
-.is-valid ~ .valid-feedback,
-.is-valid ~ .valid-tooltip {
+.was-validated .bootstrap:valid ~ .valid-feedback,
+.was-validated .bootstrap:valid ~ .valid-tooltip, .bootstrap.is-valid ~ .valid-feedback,
+.bootstrap.is-valid ~ .valid-tooltip {
display: block;
}
-
-.was-validated .form-control:valid,
-.was-validated .ais-SearchBox-input:valid,
-.form-control.is-valid,
-.is-valid.ais-SearchBox-input {
+.was-validated .bootstrap .form-control:valid, .was-validated .bootstrap .ais-SearchBox-input:valid, .bootstrap .form-control.is-valid, .bootstrap .is-valid.ais-SearchBox-input {
border-color: #38c172;
padding-right: calc(1.6em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
@@ -2413,94 +1846,62 @@ textarea.ais-SearchBox-input {
background-position: right calc(0.4em + 0.1875rem) center;
background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
-
-.was-validated .form-control:valid:focus,
-.was-validated .ais-SearchBox-input:valid:focus,
-.form-control.is-valid:focus,
-.is-valid.ais-SearchBox-input:focus {
+.was-validated .bootstrap .form-control:valid:focus, .was-validated .bootstrap .ais-SearchBox-input:valid:focus, .bootstrap .form-control.is-valid:focus, .bootstrap .is-valid.ais-SearchBox-input:focus {
border-color: #38c172;
box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}
-
-.was-validated textarea.form-control:valid,
-.was-validated textarea.ais-SearchBox-input:valid,
-textarea.form-control.is-valid,
-textarea.is-valid.ais-SearchBox-input {
+.was-validated .bootstrap textarea.form-control:valid, .was-validated .bootstrap textarea.ais-SearchBox-input:valid, .bootstrap textarea.form-control.is-valid, .bootstrap textarea.is-valid.ais-SearchBox-input {
padding-right: calc(1.6em + 0.75rem);
background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}
-
-.was-validated .custom-select:valid,
-.custom-select.is-valid {
+.was-validated .bootstrap .custom-select:valid, .bootstrap .custom-select.is-valid {
border-color: #38c172;
padding-right: calc(0.75em + 2.3125rem);
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
-
-.was-validated .custom-select:valid:focus,
-.custom-select.is-valid:focus {
+.was-validated .bootstrap .custom-select:valid:focus, .bootstrap .custom-select.is-valid:focus {
border-color: #38c172;
box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}
-
-.was-validated .form-check-input:valid ~ .form-check-label,
-.form-check-input.is-valid ~ .form-check-label {
+.was-validated .bootstrap .form-check-input:valid ~ .form-check-label, .bootstrap .form-check-input.is-valid ~ .form-check-label {
color: #38c172;
}
-
-.was-validated .form-check-input:valid ~ .valid-feedback,
-.was-validated .form-check-input:valid ~ .valid-tooltip,
-.form-check-input.is-valid ~ .valid-feedback,
-.form-check-input.is-valid ~ .valid-tooltip {
+.was-validated .bootstrap .form-check-input:valid ~ .valid-feedback,
+.was-validated .bootstrap .form-check-input:valid ~ .valid-tooltip, .bootstrap .form-check-input.is-valid ~ .valid-feedback,
+.bootstrap .form-check-input.is-valid ~ .valid-tooltip {
display: block;
}
-
-.was-validated .custom-control-input:valid ~ .custom-control-label,
-.custom-control-input.is-valid ~ .custom-control-label {
+.was-validated .bootstrap .custom-control-input:valid ~ .custom-control-label, .bootstrap .custom-control-input.is-valid ~ .custom-control-label {
color: #38c172;
}
-
-.was-validated .custom-control-input:valid ~ .custom-control-label::before,
-.custom-control-input.is-valid ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:valid ~ .custom-control-label::before, .bootstrap .custom-control-input.is-valid ~ .custom-control-label::before {
border-color: #38c172;
}
-
-.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
-.custom-control-input.is-valid:checked ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:valid:checked ~ .custom-control-label::before, .bootstrap .custom-control-input.is-valid:checked ~ .custom-control-label::before {
border-color: #5cd08d;
background-color: #5cd08d;
}
-
-.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
-.custom-control-input.is-valid:focus ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:valid:focus ~ .custom-control-label::before, .bootstrap .custom-control-input.is-valid:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}
-
-.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
-.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .bootstrap .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
border-color: #38c172;
}
-
-.was-validated .custom-file-input:valid ~ .custom-file-label,
-.custom-file-input.is-valid ~ .custom-file-label {
+.was-validated .bootstrap .custom-file-input:valid ~ .custom-file-label, .bootstrap .custom-file-input.is-valid ~ .custom-file-label {
border-color: #38c172;
}
-
-.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
-.custom-file-input.is-valid:focus ~ .custom-file-label {
+.was-validated .bootstrap .custom-file-input:valid:focus ~ .custom-file-label, .bootstrap .custom-file-input.is-valid:focus ~ .custom-file-label {
border-color: #38c172;
box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}
-
-.invalid-feedback {
+.bootstrap .invalid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 80%;
color: #d04d4a;
}
-
-.invalid-tooltip {
+.bootstrap .invalid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
@@ -2514,18 +1915,12 @@ textarea.is-valid.ais-SearchBox-input {
background-color: rgba(208, 77, 74, 0.9);
border-radius: 0.25rem;
}
-
-.was-validated :invalid ~ .invalid-feedback,
-.was-validated :invalid ~ .invalid-tooltip,
-.is-invalid ~ .invalid-feedback,
-.is-invalid ~ .invalid-tooltip {
+.was-validated .bootstrap:invalid ~ .invalid-feedback,
+.was-validated .bootstrap:invalid ~ .invalid-tooltip, .bootstrap.is-invalid ~ .invalid-feedback,
+.bootstrap.is-invalid ~ .invalid-tooltip {
display: block;
}
-
-.was-validated .form-control:invalid,
-.was-validated .ais-SearchBox-input:invalid,
-.form-control.is-invalid,
-.is-invalid.ais-SearchBox-input {
+.was-validated .bootstrap .form-control:invalid, .was-validated .bootstrap .ais-SearchBox-input:invalid, .bootstrap .form-control.is-invalid, .bootstrap .is-invalid.ais-SearchBox-input {
border-color: #d04d4a;
padding-right: calc(1.6em + 0.75rem);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d04d4a' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23d04d4a' stroke='none'/%3e%3c/svg%3e");
@@ -2533,154 +1928,111 @@ textarea.is-valid.ais-SearchBox-input {
background-position: right calc(0.4em + 0.1875rem) center;
background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
-
-.was-validated .form-control:invalid:focus,
-.was-validated .ais-SearchBox-input:invalid:focus,
-.form-control.is-invalid:focus,
-.is-invalid.ais-SearchBox-input:focus {
+.was-validated .bootstrap .form-control:invalid:focus, .was-validated .bootstrap .ais-SearchBox-input:invalid:focus, .bootstrap .form-control.is-invalid:focus, .bootstrap .is-invalid.ais-SearchBox-input:focus {
border-color: #d04d4a;
box-shadow: 0 0 0 0.2rem rgba(208, 77, 74, 0.25);
}
-
-.was-validated textarea.form-control:invalid,
-.was-validated textarea.ais-SearchBox-input:invalid,
-textarea.form-control.is-invalid,
-textarea.is-invalid.ais-SearchBox-input {
+.was-validated .bootstrap textarea.form-control:invalid, .was-validated .bootstrap textarea.ais-SearchBox-input:invalid, .bootstrap textarea.form-control.is-invalid, .bootstrap textarea.is-invalid.ais-SearchBox-input {
padding-right: calc(1.6em + 0.75rem);
background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}
-
-.was-validated .custom-select:invalid,
-.custom-select.is-invalid {
+.was-validated .bootstrap .custom-select:invalid, .bootstrap .custom-select.is-invalid {
border-color: #d04d4a;
padding-right: calc(0.75em + 2.3125rem);
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d04d4a' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23d04d4a' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
-
-.was-validated .custom-select:invalid:focus,
-.custom-select.is-invalid:focus {
+.was-validated .bootstrap .custom-select:invalid:focus, .bootstrap .custom-select.is-invalid:focus {
border-color: #d04d4a;
box-shadow: 0 0 0 0.2rem rgba(208, 77, 74, 0.25);
}
-
-.was-validated .form-check-input:invalid ~ .form-check-label,
-.form-check-input.is-invalid ~ .form-check-label {
+.was-validated .bootstrap .form-check-input:invalid ~ .form-check-label, .bootstrap .form-check-input.is-invalid ~ .form-check-label {
color: #d04d4a;
}
-
-.was-validated .form-check-input:invalid ~ .invalid-feedback,
-.was-validated .form-check-input:invalid ~ .invalid-tooltip,
-.form-check-input.is-invalid ~ .invalid-feedback,
-.form-check-input.is-invalid ~ .invalid-tooltip {
+.was-validated .bootstrap .form-check-input:invalid ~ .invalid-feedback,
+.was-validated .bootstrap .form-check-input:invalid ~ .invalid-tooltip, .bootstrap .form-check-input.is-invalid ~ .invalid-feedback,
+.bootstrap .form-check-input.is-invalid ~ .invalid-tooltip {
display: block;
}
-
-.was-validated .custom-control-input:invalid ~ .custom-control-label,
-.custom-control-input.is-invalid ~ .custom-control-label {
+.was-validated .bootstrap .custom-control-input:invalid ~ .custom-control-label, .bootstrap .custom-control-input.is-invalid ~ .custom-control-label {
color: #d04d4a;
}
-
-.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
-.custom-control-input.is-invalid ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:invalid ~ .custom-control-label::before, .bootstrap .custom-control-input.is-invalid ~ .custom-control-label::before {
border-color: #d04d4a;
}
-
-.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
-.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:invalid:checked ~ .custom-control-label::before, .bootstrap .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
border-color: #db7572;
background-color: #db7572;
}
-
-.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
-.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:invalid:focus ~ .custom-control-label::before, .bootstrap .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(208, 77, 74, 0.25);
}
-
-.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
-.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
+.was-validated .bootstrap .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .bootstrap .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
border-color: #d04d4a;
}
-
-.was-validated .custom-file-input:invalid ~ .custom-file-label,
-.custom-file-input.is-invalid ~ .custom-file-label {
+.was-validated .bootstrap .custom-file-input:invalid ~ .custom-file-label, .bootstrap .custom-file-input.is-invalid ~ .custom-file-label {
border-color: #d04d4a;
}
-
-.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
-.custom-file-input.is-invalid:focus ~ .custom-file-label {
+.was-validated .bootstrap .custom-file-input:invalid:focus ~ .custom-file-label, .bootstrap .custom-file-input.is-invalid:focus ~ .custom-file-label {
border-color: #d04d4a;
box-shadow: 0 0 0 0.2rem rgba(208, 77, 74, 0.25);
}
-
-.form-inline {
+.bootstrap .form-inline {
display: flex;
flex-flow: row wrap;
align-items: center;
}
-
-.form-inline .form-check {
+.bootstrap .form-inline .form-check {
width: 100%;
}
-
@media (min-width: 576px) {
- .form-inline label {
+ .bootstrap .form-inline label {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0;
}
-
- .form-inline .form-group {
+ .bootstrap .form-inline .form-group {
display: flex;
flex: 0 0 auto;
flex-flow: row wrap;
align-items: center;
margin-bottom: 0;
}
-
- .form-inline .form-control,
- .form-inline .ais-SearchBox-input {
+ .bootstrap .form-inline .form-control, .bootstrap .form-inline .ais-SearchBox-input {
display: inline-block;
width: auto;
vertical-align: middle;
}
-
- .form-inline .form-control-plaintext {
+ .bootstrap .form-inline .form-control-plaintext {
display: inline-block;
}
-
- .form-inline .input-group,
- .form-inline .custom-select {
+ .bootstrap .form-inline .input-group,
+.bootstrap .form-inline .custom-select {
width: auto;
}
-
- .form-inline .form-check {
+ .bootstrap .form-inline .form-check {
display: flex;
align-items: center;
justify-content: center;
width: auto;
padding-left: 0;
}
-
- .form-inline .form-check-input {
+ .bootstrap .form-inline .form-check-input {
position: relative;
flex-shrink: 0;
margin-top: 0;
margin-right: 0.25rem;
margin-left: 0;
}
-
- .form-inline .custom-control {
+ .bootstrap .form-inline .custom-control {
align-items: center;
justify-content: center;
}
-
- .form-inline .custom-control-label {
+ .bootstrap .form-inline .custom-control-label {
margin-bottom: 0;
}
}
-
-.btn {
+.bootstrap .btn {
display: inline-block;
font-weight: 400;
color: #212529;
@@ -2699,766 +2051,541 @@ textarea.is-invalid.ais-SearchBox-input {
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
-
@media (prefers-reduced-motion: reduce) {
- .btn {
+ .bootstrap .btn {
transition: none;
}
}
-
-.btn:hover {
+.bootstrap .btn:hover {
color: #212529;
text-decoration: none;
}
-
-.btn:focus,
-.btn.focus {
+.bootstrap .btn:focus, .bootstrap .btn.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.btn.disabled,
-.btn:disabled {
+.bootstrap .btn.disabled, .bootstrap .btn:disabled {
opacity: 0.65;
box-shadow: none;
}
-
-.btn:not(:disabled):not(.disabled):active,
-.btn:not(:disabled):not(.disabled).active {
+.bootstrap .btn:not(:disabled):not(.disabled):active, .bootstrap .btn:not(:disabled):not(.disabled).active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
-
-.btn:not(:disabled):not(.disabled):active:focus,
-.btn:not(:disabled):not(.disabled).active:focus {
+.bootstrap .btn:not(:disabled):not(.disabled):active:focus, .bootstrap .btn:not(:disabled):not(.disabled).active:focus {
box-shadow: 0 0 0 0.2rem rgba(7, 78, 156, 0.25), inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
-
-a.btn.disabled,
-fieldset:disabled a.btn {
+.bootstrap a.btn.disabled,
+.bootstrap fieldset:disabled a.btn {
pointer-events: none;
}
-
-.btn-primary {
+.bootstrap .btn-primary {
color: #fff;
background-color: #074e9c;
border-color: #074e9c;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-primary:hover {
+.bootstrap .btn-primary:hover {
color: #fff;
background-color: #053c77;
border-color: #05366b;
}
-
-.btn-primary:focus,
-.btn-primary.focus {
+.bootstrap .btn-primary:focus, .bootstrap .btn-primary.focus {
color: #fff;
background-color: #053c77;
border-color: #05366b;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(44, 105, 171, 0.5);
}
-
-.btn-primary.disabled,
-.btn-primary:disabled {
+.bootstrap .btn-primary.disabled, .bootstrap .btn-primary:disabled {
color: #fff;
background-color: #074e9c;
border-color: #074e9c;
}
-
-.btn-primary:not(:disabled):not(.disabled):active,
-.btn-primary:not(:disabled):not(.disabled).active,
-.show > .btn-primary.dropdown-toggle {
+.bootstrap .btn-primary:not(:disabled):not(.disabled):active, .bootstrap .btn-primary:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-primary.dropdown-toggle {
color: #fff;
background-color: #05366b;
border-color: #042f5f;
}
-
-.btn-primary:not(:disabled):not(.disabled):active:focus,
-.btn-primary:not(:disabled):not(.disabled).active:focus,
-.show > .btn-primary.dropdown-toggle:focus {
+.bootstrap .btn-primary:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-primary.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(44, 105, 171, 0.5);
}
-
-.btn-secondary {
+.bootstrap .btn-secondary {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-secondary:hover {
+.bootstrap .btn-secondary:hover {
color: #fff;
background-color: #5a6268;
border-color: #545b62;
}
-
-.btn-secondary:focus,
-.btn-secondary.focus {
+.bootstrap .btn-secondary:focus, .bootstrap .btn-secondary.focus {
color: #fff;
background-color: #5a6268;
border-color: #545b62;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
-
-.btn-secondary.disabled,
-.btn-secondary:disabled {
+.bootstrap .btn-secondary.disabled, .bootstrap .btn-secondary:disabled {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
-
-.btn-secondary:not(:disabled):not(.disabled):active,
-.btn-secondary:not(:disabled):not(.disabled).active,
-.show > .btn-secondary.dropdown-toggle {
+.bootstrap .btn-secondary:not(:disabled):not(.disabled):active, .bootstrap .btn-secondary:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-secondary.dropdown-toggle {
color: #fff;
background-color: #545b62;
border-color: #4e555b;
}
-
-.btn-secondary:not(:disabled):not(.disabled):active:focus,
-.btn-secondary:not(:disabled):not(.disabled).active:focus,
-.show > .btn-secondary.dropdown-toggle:focus {
+.bootstrap .btn-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-secondary.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
-
-.btn-success {
+.bootstrap .btn-success {
color: #fff;
background-color: #38c172;
border-color: #38c172;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-success:hover {
+.bootstrap .btn-success:hover {
color: #fff;
background-color: #2fa360;
border-color: #2d995b;
}
-
-.btn-success:focus,
-.btn-success.focus {
+.bootstrap .btn-success:focus, .bootstrap .btn-success.focus {
color: #fff;
background-color: #2fa360;
border-color: #2d995b;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
}
-
-.btn-success.disabled,
-.btn-success:disabled {
+.bootstrap .btn-success.disabled, .bootstrap .btn-success:disabled {
color: #fff;
background-color: #38c172;
border-color: #38c172;
}
-
-.btn-success:not(:disabled):not(.disabled):active,
-.btn-success:not(:disabled):not(.disabled).active,
-.show > .btn-success.dropdown-toggle {
+.bootstrap .btn-success:not(:disabled):not(.disabled):active, .bootstrap .btn-success:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-success.dropdown-toggle {
color: #fff;
background-color: #2d995b;
border-color: #2a9055;
}
-
-.btn-success:not(:disabled):not(.disabled):active:focus,
-.btn-success:not(:disabled):not(.disabled).active:focus,
-.show > .btn-success.dropdown-toggle:focus {
+.bootstrap .btn-success:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-success:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-success.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
}
-
-.btn-info {
+.bootstrap .btn-info {
color: #212529;
background-color: #6cb2eb;
border-color: #6cb2eb;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-info:hover {
+.bootstrap .btn-info:hover {
color: #fff;
background-color: #4aa0e6;
border-color: #3f9ae5;
}
-
-.btn-info:focus,
-.btn-info.focus {
+.bootstrap .btn-info:focus, .bootstrap .btn-info.focus {
color: #fff;
background-color: #4aa0e6;
border-color: #3f9ae5;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
}
-
-.btn-info.disabled,
-.btn-info:disabled {
+.bootstrap .btn-info.disabled, .bootstrap .btn-info:disabled {
color: #212529;
background-color: #6cb2eb;
border-color: #6cb2eb;
}
-
-.btn-info:not(:disabled):not(.disabled):active,
-.btn-info:not(:disabled):not(.disabled).active,
-.show > .btn-info.dropdown-toggle {
+.bootstrap .btn-info:not(:disabled):not(.disabled):active, .bootstrap .btn-info:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-info.dropdown-toggle {
color: #fff;
background-color: #3f9ae5;
border-color: #3495e3;
}
-
-.btn-info:not(:disabled):not(.disabled):active:focus,
-.btn-info:not(:disabled):not(.disabled).active:focus,
-.show > .btn-info.dropdown-toggle:focus {
+.bootstrap .btn-info:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-info:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-info.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
}
-
-.btn-warning {
+.bootstrap .btn-warning {
color: #212529;
background-color: #ffed4a;
border-color: #ffed4a;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-warning:hover {
+.bootstrap .btn-warning:hover {
color: #212529;
background-color: #ffe924;
border-color: #ffe817;
}
-
-.btn-warning:focus,
-.btn-warning.focus {
+.bootstrap .btn-warning:focus, .bootstrap .btn-warning.focus {
color: #212529;
background-color: #ffe924;
border-color: #ffe817;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
}
-
-.btn-warning.disabled,
-.btn-warning:disabled {
+.bootstrap .btn-warning.disabled, .bootstrap .btn-warning:disabled {
color: #212529;
background-color: #ffed4a;
border-color: #ffed4a;
}
-
-.btn-warning:not(:disabled):not(.disabled):active,
-.btn-warning:not(:disabled):not(.disabled).active,
-.show > .btn-warning.dropdown-toggle {
+.bootstrap .btn-warning:not(:disabled):not(.disabled):active, .bootstrap .btn-warning:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-warning.dropdown-toggle {
color: #212529;
background-color: #ffe817;
border-color: #ffe70a;
}
-
-.btn-warning:not(:disabled):not(.disabled):active:focus,
-.btn-warning:not(:disabled):not(.disabled).active:focus,
-.show > .btn-warning.dropdown-toggle:focus {
+.bootstrap .btn-warning:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-warning.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
}
-
-.btn-danger {
+.bootstrap .btn-danger {
color: #fff;
background-color: #d04d4a;
border-color: #d04d4a;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-danger:hover {
+.bootstrap .btn-danger:hover {
color: #fff;
background-color: #c23532;
border-color: #b73330;
}
-
-.btn-danger:focus,
-.btn-danger.focus {
+.bootstrap .btn-danger:focus, .bootstrap .btn-danger.focus {
color: #fff;
background-color: #c23532;
border-color: #b73330;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(215, 104, 101, 0.5);
}
-
-.btn-danger.disabled,
-.btn-danger:disabled {
+.bootstrap .btn-danger.disabled, .bootstrap .btn-danger:disabled {
color: #fff;
background-color: #d04d4a;
border-color: #d04d4a;
}
-
-.btn-danger:not(:disabled):not(.disabled):active,
-.btn-danger:not(:disabled):not(.disabled).active,
-.show > .btn-danger.dropdown-toggle {
+.bootstrap .btn-danger:not(:disabled):not(.disabled):active, .bootstrap .btn-danger:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-danger.dropdown-toggle {
color: #fff;
background-color: #b73330;
border-color: #ad302d;
}
-
-.btn-danger:not(:disabled):not(.disabled):active:focus,
-.btn-danger:not(:disabled):not(.disabled).active:focus,
-.show > .btn-danger.dropdown-toggle:focus {
+.bootstrap .btn-danger:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-danger.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(215, 104, 101, 0.5);
}
-
-.btn-light {
+.bootstrap .btn-light {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-light:hover {
+.bootstrap .btn-light:hover {
color: #212529;
background-color: #e2e6ea;
border-color: #dae0e5;
}
-
-.btn-light:focus,
-.btn-light.focus {
+.bootstrap .btn-light:focus, .bootstrap .btn-light.focus {
color: #212529;
background-color: #e2e6ea;
border-color: #dae0e5;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
-
-.btn-light.disabled,
-.btn-light:disabled {
+.bootstrap .btn-light.disabled, .bootstrap .btn-light:disabled {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
-
-.btn-light:not(:disabled):not(.disabled):active,
-.btn-light:not(:disabled):not(.disabled).active,
-.show > .btn-light.dropdown-toggle {
+.bootstrap .btn-light:not(:disabled):not(.disabled):active, .bootstrap .btn-light:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-light.dropdown-toggle {
color: #212529;
background-color: #dae0e5;
border-color: #d3d9df;
}
-
-.btn-light:not(:disabled):not(.disabled):active:focus,
-.btn-light:not(:disabled):not(.disabled).active:focus,
-.show > .btn-light.dropdown-toggle:focus {
+.bootstrap .btn-light:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-light:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-light.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
-
-.btn-dark {
+.bootstrap .btn-dark {
color: #fff;
background-color: #343a40;
border-color: #343a40;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.btn-dark:hover {
+.bootstrap .btn-dark:hover {
color: #fff;
background-color: #23272b;
border-color: #1d2124;
}
-
-.btn-dark:focus,
-.btn-dark.focus {
+.bootstrap .btn-dark:focus, .bootstrap .btn-dark.focus {
color: #fff;
background-color: #23272b;
border-color: #1d2124;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
-
-.btn-dark.disabled,
-.btn-dark:disabled {
+.bootstrap .btn-dark.disabled, .bootstrap .btn-dark:disabled {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
-
-.btn-dark:not(:disabled):not(.disabled):active,
-.btn-dark:not(:disabled):not(.disabled).active,
-.show > .btn-dark.dropdown-toggle {
+.bootstrap .btn-dark:not(:disabled):not(.disabled):active, .bootstrap .btn-dark:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-dark.dropdown-toggle {
color: #fff;
background-color: #1d2124;
border-color: #171a1d;
}
-
-.btn-dark:not(:disabled):not(.disabled):active:focus,
-.btn-dark:not(:disabled):not(.disabled).active:focus,
-.show > .btn-dark.dropdown-toggle:focus {
+.bootstrap .btn-dark:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-dark.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
-
-.btn-outline-primary {
+.bootstrap .btn-outline-primary {
color: #074e9c;
border-color: #074e9c;
}
-
-.btn-outline-primary:hover {
+.bootstrap .btn-outline-primary:hover {
color: #fff;
background-color: #074e9c;
border-color: #074e9c;
}
-
-.btn-outline-primary:focus,
-.btn-outline-primary.focus {
+.bootstrap .btn-outline-primary:focus, .bootstrap .btn-outline-primary.focus {
box-shadow: 0 0 0 0.2rem rgba(7, 78, 156, 0.5);
}
-
-.btn-outline-primary.disabled,
-.btn-outline-primary:disabled {
+.bootstrap .btn-outline-primary.disabled, .bootstrap .btn-outline-primary:disabled {
color: #074e9c;
background-color: transparent;
}
-
-.btn-outline-primary:not(:disabled):not(.disabled):active,
-.btn-outline-primary:not(:disabled):not(.disabled).active,
-.show > .btn-outline-primary.dropdown-toggle {
+.bootstrap .btn-outline-primary:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #074e9c;
border-color: #074e9c;
}
-
-.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
-.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-primary.dropdown-toggle:focus {
+.bootstrap .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-primary.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(7, 78, 156, 0.5);
}
-
-.btn-outline-secondary {
+.bootstrap .btn-outline-secondary {
color: #6c757d;
border-color: #6c757d;
}
-
-.btn-outline-secondary:hover {
+.bootstrap .btn-outline-secondary:hover {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
-
-.btn-outline-secondary:focus,
-.btn-outline-secondary.focus {
+.bootstrap .btn-outline-secondary:focus, .bootstrap .btn-outline-secondary.focus {
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
-
-.btn-outline-secondary.disabled,
-.btn-outline-secondary:disabled {
+.bootstrap .btn-outline-secondary.disabled, .bootstrap .btn-outline-secondary:disabled {
color: #6c757d;
background-color: transparent;
}
-
-.btn-outline-secondary:not(:disabled):not(.disabled):active,
-.btn-outline-secondary:not(:disabled):not(.disabled).active,
-.show > .btn-outline-secondary.dropdown-toggle {
+.bootstrap .btn-outline-secondary:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-secondary.dropdown-toggle {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
-
-.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
-.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-secondary.dropdown-toggle:focus {
+.bootstrap .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-secondary.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
-
-.btn-outline-success {
+.bootstrap .btn-outline-success {
color: #38c172;
border-color: #38c172;
}
-
-.btn-outline-success:hover {
+.bootstrap .btn-outline-success:hover {
color: #fff;
background-color: #38c172;
border-color: #38c172;
}
-
-.btn-outline-success:focus,
-.btn-outline-success.focus {
+.bootstrap .btn-outline-success:focus, .bootstrap .btn-outline-success.focus {
box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
}
-
-.btn-outline-success.disabled,
-.btn-outline-success:disabled {
+.bootstrap .btn-outline-success.disabled, .bootstrap .btn-outline-success:disabled {
color: #38c172;
background-color: transparent;
}
-
-.btn-outline-success:not(:disabled):not(.disabled):active,
-.btn-outline-success:not(:disabled):not(.disabled).active,
-.show > .btn-outline-success.dropdown-toggle {
+.bootstrap .btn-outline-success:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-success:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-success.dropdown-toggle {
color: #fff;
background-color: #38c172;
border-color: #38c172;
}
-
-.btn-outline-success:not(:disabled):not(.disabled):active:focus,
-.btn-outline-success:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-success.dropdown-toggle:focus {
+.bootstrap .btn-outline-success:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-success.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
}
-
-.btn-outline-info {
+.bootstrap .btn-outline-info {
color: #6cb2eb;
border-color: #6cb2eb;
}
-
-.btn-outline-info:hover {
+.bootstrap .btn-outline-info:hover {
color: #212529;
background-color: #6cb2eb;
border-color: #6cb2eb;
}
-
-.btn-outline-info:focus,
-.btn-outline-info.focus {
+.bootstrap .btn-outline-info:focus, .bootstrap .btn-outline-info.focus {
box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}
-
-.btn-outline-info.disabled,
-.btn-outline-info:disabled {
+.bootstrap .btn-outline-info.disabled, .bootstrap .btn-outline-info:disabled {
color: #6cb2eb;
background-color: transparent;
}
-
-.btn-outline-info:not(:disabled):not(.disabled):active,
-.btn-outline-info:not(:disabled):not(.disabled).active,
-.show > .btn-outline-info.dropdown-toggle {
+.bootstrap .btn-outline-info:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-info:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-info.dropdown-toggle {
color: #212529;
background-color: #6cb2eb;
border-color: #6cb2eb;
}
-
-.btn-outline-info:not(:disabled):not(.disabled):active:focus,
-.btn-outline-info:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-info.dropdown-toggle:focus {
+.bootstrap .btn-outline-info:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-info.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}
-
-.btn-outline-warning {
+.bootstrap .btn-outline-warning {
color: #ffed4a;
border-color: #ffed4a;
}
-
-.btn-outline-warning:hover {
+.bootstrap .btn-outline-warning:hover {
color: #212529;
background-color: #ffed4a;
border-color: #ffed4a;
}
-
-.btn-outline-warning:focus,
-.btn-outline-warning.focus {
+.bootstrap .btn-outline-warning:focus, .bootstrap .btn-outline-warning.focus {
box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}
-
-.btn-outline-warning.disabled,
-.btn-outline-warning:disabled {
+.bootstrap .btn-outline-warning.disabled, .bootstrap .btn-outline-warning:disabled {
color: #ffed4a;
background-color: transparent;
}
-
-.btn-outline-warning:not(:disabled):not(.disabled):active,
-.btn-outline-warning:not(:disabled):not(.disabled).active,
-.show > .btn-outline-warning.dropdown-toggle {
+.bootstrap .btn-outline-warning:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-warning.dropdown-toggle {
color: #212529;
background-color: #ffed4a;
border-color: #ffed4a;
}
-
-.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
-.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-warning.dropdown-toggle:focus {
+.bootstrap .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-warning.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}
-
-.btn-outline-danger {
+.bootstrap .btn-outline-danger {
color: #d04d4a;
border-color: #d04d4a;
}
-
-.btn-outline-danger:hover {
+.bootstrap .btn-outline-danger:hover {
color: #fff;
background-color: #d04d4a;
border-color: #d04d4a;
}
-
-.btn-outline-danger:focus,
-.btn-outline-danger.focus {
+.bootstrap .btn-outline-danger:focus, .bootstrap .btn-outline-danger.focus {
box-shadow: 0 0 0 0.2rem rgba(208, 77, 74, 0.5);
}
-
-.btn-outline-danger.disabled,
-.btn-outline-danger:disabled {
+.bootstrap .btn-outline-danger.disabled, .bootstrap .btn-outline-danger:disabled {
color: #d04d4a;
background-color: transparent;
}
-
-.btn-outline-danger:not(:disabled):not(.disabled):active,
-.btn-outline-danger:not(:disabled):not(.disabled).active,
-.show > .btn-outline-danger.dropdown-toggle {
+.bootstrap .btn-outline-danger:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-danger.dropdown-toggle {
color: #fff;
background-color: #d04d4a;
border-color: #d04d4a;
}
-
-.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
-.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-danger.dropdown-toggle:focus {
+.bootstrap .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-danger.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(208, 77, 74, 0.5);
}
-
-.btn-outline-light {
+.bootstrap .btn-outline-light {
color: #f8f9fa;
border-color: #f8f9fa;
}
-
-.btn-outline-light:hover {
+.bootstrap .btn-outline-light:hover {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
-
-.btn-outline-light:focus,
-.btn-outline-light.focus {
+.bootstrap .btn-outline-light:focus, .bootstrap .btn-outline-light.focus {
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
-
-.btn-outline-light.disabled,
-.btn-outline-light:disabled {
+.bootstrap .btn-outline-light.disabled, .bootstrap .btn-outline-light:disabled {
color: #f8f9fa;
background-color: transparent;
}
-
-.btn-outline-light:not(:disabled):not(.disabled):active,
-.btn-outline-light:not(:disabled):not(.disabled).active,
-.show > .btn-outline-light.dropdown-toggle {
+.bootstrap .btn-outline-light:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-light:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-light.dropdown-toggle {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
-
-.btn-outline-light:not(:disabled):not(.disabled):active:focus,
-.btn-outline-light:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-light.dropdown-toggle:focus {
+.bootstrap .btn-outline-light:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-light.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
-
-.btn-outline-dark {
+.bootstrap .btn-outline-dark {
color: #343a40;
border-color: #343a40;
}
-
-.btn-outline-dark:hover {
+.bootstrap .btn-outline-dark:hover {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
-
-.btn-outline-dark:focus,
-.btn-outline-dark.focus {
+.bootstrap .btn-outline-dark:focus, .bootstrap .btn-outline-dark.focus {
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
-
-.btn-outline-dark.disabled,
-.btn-outline-dark:disabled {
+.bootstrap .btn-outline-dark.disabled, .bootstrap .btn-outline-dark:disabled {
color: #343a40;
background-color: transparent;
}
-
-.btn-outline-dark:not(:disabled):not(.disabled):active,
-.btn-outline-dark:not(:disabled):not(.disabled).active,
-.show > .btn-outline-dark.dropdown-toggle {
+.bootstrap .btn-outline-dark:not(:disabled):not(.disabled):active, .bootstrap .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .bootstrap .btn-outline-dark.dropdown-toggle {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
-
-.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
-.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
-.show > .btn-outline-dark.dropdown-toggle:focus {
+.bootstrap .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .bootstrap .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .bootstrap .btn-outline-dark.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
-
-.btn-link {
+.bootstrap .btn-link {
font-weight: 400;
color: #074e9c;
text-decoration: none;
}
-
-.btn-link:hover {
+.bootstrap .btn-link:hover {
color: #042953;
text-decoration: underline;
}
-
-.btn-link:focus,
-.btn-link.focus {
+.bootstrap .btn-link:focus, .bootstrap .btn-link.focus {
text-decoration: underline;
box-shadow: none;
}
-
-.btn-link:disabled,
-.btn-link.disabled {
+.bootstrap .btn-link:disabled, .bootstrap .btn-link.disabled {
color: #6c757d;
pointer-events: none;
}
-
-.btn-lg,
-.btn-group-lg > .btn {
+.bootstrap .btn-lg, .bootstrap .btn-group-lg > .btn {
padding: 0.5rem 1rem;
font-size: 1.125rem;
line-height: 1.5;
border-radius: 0.3rem;
}
-
-.btn-sm,
-.btn-group-sm > .btn {
+.bootstrap .btn-sm, .bootstrap .btn-group-sm > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.7875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
-
-.btn-block {
+.bootstrap .btn-block {
display: block;
width: 100%;
}
-
-.btn-block + .btn-block {
+.bootstrap .btn-block + .btn-block {
margin-top: 0.5rem;
}
-
-input[type=submit].btn-block,
-input[type=reset].btn-block,
-input[type=button].btn-block {
+.bootstrap input[type=submit].btn-block,
+.bootstrap input[type=reset].btn-block,
+.bootstrap input[type=button].btn-block {
width: 100%;
}
-
-.fade {
+.bootstrap .fade {
transition: opacity 0.15s linear;
}
-
@media (prefers-reduced-motion: reduce) {
- .fade {
+ .bootstrap .fade {
transition: none;
}
}
-
-.fade:not(.show) {
+.bootstrap .fade:not(.show) {
opacity: 0;
}
-
-.collapse:not(.show) {
+.bootstrap .collapse:not(.show) {
display: none;
}
-
-.collapsing {
+.bootstrap .collapsing {
position: relative;
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
-
@media (prefers-reduced-motion: reduce) {
- .collapsing {
+ .bootstrap .collapsing {
transition: none;
}
}
-
-.dropup,
-.dropright,
-.dropdown,
-.dropleft {
+.bootstrap .dropup,
+.bootstrap .dropright,
+.bootstrap .dropdown,
+.bootstrap .dropleft {
position: relative;
}
-
-.dropdown-toggle {
+.bootstrap .dropdown-toggle {
white-space: nowrap;
}
-
-.dropdown-toggle::after {
+.bootstrap .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
@@ -3468,12 +2595,10 @@ input[type=button].btn-block {
border-bottom: 0;
border-left: 0.3em solid transparent;
}
-
-.dropdown-toggle:empty::after {
+.bootstrap .dropdown-toggle:empty::after {
margin-left: 0;
}
-
-.dropdown-menu {
+.bootstrap .dropdown-menu {
position: absolute;
top: 100%;
left: 0;
@@ -3493,73 +2618,61 @@ input[type=button].btn-block {
border-radius: 0.25rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}
-
-.dropdown-menu-left {
+.bootstrap .dropdown-menu-left {
right: auto;
left: 0;
}
-
-.dropdown-menu-right {
+.bootstrap .dropdown-menu-right {
right: 0;
left: auto;
}
-
@media (min-width: 576px) {
- .dropdown-menu-sm-left {
+ .bootstrap .dropdown-menu-sm-left {
right: auto;
left: 0;
}
-
- .dropdown-menu-sm-right {
+ .bootstrap .dropdown-menu-sm-right {
right: 0;
left: auto;
}
}
-
@media (min-width: 768px) {
- .dropdown-menu-md-left {
+ .bootstrap .dropdown-menu-md-left {
right: auto;
left: 0;
}
-
- .dropdown-menu-md-right {
+ .bootstrap .dropdown-menu-md-right {
right: 0;
left: auto;
}
}
-
@media (min-width: 992px) {
- .dropdown-menu-lg-left {
+ .bootstrap .dropdown-menu-lg-left {
right: auto;
left: 0;
}
-
- .dropdown-menu-lg-right {
+ .bootstrap .dropdown-menu-lg-right {
right: 0;
left: auto;
}
}
-
@media (min-width: 1200px) {
- .dropdown-menu-xl-left {
+ .bootstrap .dropdown-menu-xl-left {
right: auto;
left: 0;
}
-
- .dropdown-menu-xl-right {
+ .bootstrap .dropdown-menu-xl-right {
right: 0;
left: auto;
}
}
-
-.dropup .dropdown-menu {
+.bootstrap .dropup .dropdown-menu {
top: auto;
bottom: 100%;
margin-top: 0;
margin-bottom: 0.125rem;
}
-
-.dropup .dropdown-toggle::after {
+.bootstrap .dropup .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
@@ -3569,20 +2682,17 @@ input[type=button].btn-block {
border-bottom: 0.3em solid;
border-left: 0.3em solid transparent;
}
-
-.dropup .dropdown-toggle:empty::after {
+.bootstrap .dropup .dropdown-toggle:empty::after {
margin-left: 0;
}
-
-.dropright .dropdown-menu {
+.bootstrap .dropright .dropdown-menu {
top: 0;
right: auto;
left: 100%;
margin-top: 0;
margin-left: 0.125rem;
}
-
-.dropright .dropdown-toggle::after {
+.bootstrap .dropright .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
@@ -3592,35 +2702,29 @@ input[type=button].btn-block {
border-bottom: 0.3em solid transparent;
border-left: 0.3em solid;
}
-
-.dropright .dropdown-toggle:empty::after {
+.bootstrap .dropright .dropdown-toggle:empty::after {
margin-left: 0;
}
-
-.dropright .dropdown-toggle::after {
+.bootstrap .dropright .dropdown-toggle::after {
vertical-align: 0;
}
-
-.dropleft .dropdown-menu {
+.bootstrap .dropleft .dropdown-menu {
top: 0;
right: 100%;
left: auto;
margin-top: 0;
margin-right: 0.125rem;
}
-
-.dropleft .dropdown-toggle::after {
+.bootstrap .dropleft .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
}
-
-.dropleft .dropdown-toggle::after {
+.bootstrap .dropleft .dropdown-toggle::after {
display: none;
}
-
-.dropleft .dropdown-toggle::before {
+.bootstrap .dropleft .dropdown-toggle::before {
display: inline-block;
margin-right: 0.255em;
vertical-align: 0.255em;
@@ -3629,31 +2733,23 @@ input[type=button].btn-block {
border-right: 0.3em solid;
border-bottom: 0.3em solid transparent;
}
-
-.dropleft .dropdown-toggle:empty::after {
+.bootstrap .dropleft .dropdown-toggle:empty::after {
margin-left: 0;
}
-
-.dropleft .dropdown-toggle::before {
+.bootstrap .dropleft .dropdown-toggle::before {
vertical-align: 0;
}
-
-.dropdown-menu[x-placement^=top],
-.dropdown-menu[x-placement^=right],
-.dropdown-menu[x-placement^=bottom],
-.dropdown-menu[x-placement^=left] {
+.bootstrap .dropdown-menu[x-placement^=top], .bootstrap .dropdown-menu[x-placement^=right], .bootstrap .dropdown-menu[x-placement^=bottom], .bootstrap .dropdown-menu[x-placement^=left] {
right: auto;
bottom: auto;
}
-
-.dropdown-divider {
+.bootstrap .dropdown-divider {
height: 0;
margin: 0.5rem 0;
overflow: hidden;
border-top: 1px solid #e9ecef;
}
-
-.dropdown-item {
+.bootstrap .dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1.5rem;
@@ -3665,33 +2761,25 @@ input[type=button].btn-block {
background-color: transparent;
border: 0;
}
-
-.dropdown-item:hover,
-.dropdown-item:focus {
+.bootstrap .dropdown-item:hover, .bootstrap .dropdown-item:focus {
color: #16181b;
text-decoration: none;
background-color: #f8f9fa;
}
-
-.dropdown-item.active,
-.dropdown-item:active {
+.bootstrap .dropdown-item.active, .bootstrap .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #074e9c;
}
-
-.dropdown-item.disabled,
-.dropdown-item:disabled {
+.bootstrap .dropdown-item.disabled, .bootstrap .dropdown-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: transparent;
}
-
-.dropdown-menu.show {
+.bootstrap .dropdown-menu.show {
display: block;
}
-
-.dropdown-header {
+.bootstrap .dropdown-header {
display: block;
padding: 0.5rem 1.5rem;
margin-bottom: 0;
@@ -3699,263 +2787,208 @@ input[type=button].btn-block {
color: #6c757d;
white-space: nowrap;
}
-
-.dropdown-item-text {
+.bootstrap .dropdown-item-text {
display: block;
padding: 0.25rem 1.5rem;
color: #212529;
}
-
-.btn-group,
-.btn-group-vertical {
+.bootstrap .btn-group,
+.bootstrap .btn-group-vertical {
position: relative;
display: inline-flex;
vertical-align: middle;
}
-
-.btn-group > .btn,
-.btn-group-vertical > .btn {
+.bootstrap .btn-group > .btn,
+.bootstrap .btn-group-vertical > .btn {
position: relative;
flex: 1 1 auto;
}
-
-.btn-group > .btn:hover,
-.btn-group-vertical > .btn:hover {
+.bootstrap .btn-group > .btn:hover,
+.bootstrap .btn-group-vertical > .btn:hover {
z-index: 1;
}
-
-.btn-group > .btn:focus,
-.btn-group > .btn:active,
-.btn-group > .btn.active,
-.btn-group-vertical > .btn:focus,
-.btn-group-vertical > .btn:active,
-.btn-group-vertical > .btn.active {
+.bootstrap .btn-group > .btn:focus, .bootstrap .btn-group > .btn:active, .bootstrap .btn-group > .btn.active,
+.bootstrap .btn-group-vertical > .btn:focus,
+.bootstrap .btn-group-vertical > .btn:active,
+.bootstrap .btn-group-vertical > .btn.active {
z-index: 1;
}
-
-.btn-toolbar {
+.bootstrap .btn-toolbar {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
-
-.btn-toolbar .input-group {
+.bootstrap .btn-toolbar .input-group {
width: auto;
}
-
-.btn-group > .btn:not(:first-child),
-.btn-group > .btn-group:not(:first-child) {
+.bootstrap .btn-group > .btn:not(:first-child),
+.bootstrap .btn-group > .btn-group:not(:first-child) {
margin-left: -1px;
}
-
-.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
-.btn-group > .btn-group:not(:last-child) > .btn {
+.bootstrap .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
+.bootstrap .btn-group > .btn-group:not(:last-child) > .btn {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
-
-.btn-group > .btn:not(:first-child),
-.btn-group > .btn-group:not(:first-child) > .btn {
+.bootstrap .btn-group > .btn:not(:first-child),
+.bootstrap .btn-group > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
-
-.dropdown-toggle-split {
+.bootstrap .dropdown-toggle-split {
padding-right: 0.5625rem;
padding-left: 0.5625rem;
}
-
-.dropdown-toggle-split::after,
-.dropup .dropdown-toggle-split::after,
-.dropright .dropdown-toggle-split::after {
+.bootstrap .dropdown-toggle-split::after, .dropup .bootstrap .dropdown-toggle-split::after, .dropright .bootstrap .dropdown-toggle-split::after {
margin-left: 0;
}
-
-.dropleft .dropdown-toggle-split::before {
+.dropleft .bootstrap .dropdown-toggle-split::before {
margin-right: 0;
}
-
-.btn-sm + .dropdown-toggle-split,
-.btn-group-sm > .btn + .dropdown-toggle-split {
+.bootstrap .btn-sm + .dropdown-toggle-split, .bootstrap .btn-group-sm > .btn + .dropdown-toggle-split {
padding-right: 0.375rem;
padding-left: 0.375rem;
}
-
-.btn-lg + .dropdown-toggle-split,
-.btn-group-lg > .btn + .dropdown-toggle-split {
+.bootstrap .btn-lg + .dropdown-toggle-split, .bootstrap .btn-group-lg > .btn + .dropdown-toggle-split {
padding-right: 0.75rem;
padding-left: 0.75rem;
}
-
-.btn-group.show .dropdown-toggle {
+.bootstrap .btn-group.show .dropdown-toggle {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
-
-.btn-group.show .dropdown-toggle.btn-link {
+.bootstrap .btn-group.show .dropdown-toggle.btn-link {
box-shadow: none;
}
-
-.btn-group-vertical {
+.bootstrap .btn-group-vertical {
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
-
-.btn-group-vertical > .btn,
-.btn-group-vertical > .btn-group {
+.bootstrap .btn-group-vertical > .btn,
+.bootstrap .btn-group-vertical > .btn-group {
width: 100%;
}
-
-.btn-group-vertical > .btn:not(:first-child),
-.btn-group-vertical > .btn-group:not(:first-child) {
+.bootstrap .btn-group-vertical > .btn:not(:first-child),
+.bootstrap .btn-group-vertical > .btn-group:not(:first-child) {
margin-top: -1px;
}
-
-.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
-.btn-group-vertical > .btn-group:not(:last-child) > .btn {
+.bootstrap .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
+.bootstrap .btn-group-vertical > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
-
-.btn-group-vertical > .btn:not(:first-child),
-.btn-group-vertical > .btn-group:not(:first-child) > .btn {
+.bootstrap .btn-group-vertical > .btn:not(:first-child),
+.bootstrap .btn-group-vertical > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
-
-.btn-group-toggle > .btn,
-.btn-group-toggle > .btn-group > .btn {
+.bootstrap .btn-group-toggle > .btn,
+.bootstrap .btn-group-toggle > .btn-group > .btn {
margin-bottom: 0;
}
-
-.btn-group-toggle > .btn input[type=radio],
-.btn-group-toggle > .btn input[type=checkbox],
-.btn-group-toggle > .btn-group > .btn input[type=radio],
-.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
+.bootstrap .btn-group-toggle > .btn input[type=radio],
+.bootstrap .btn-group-toggle > .btn input[type=checkbox],
+.bootstrap .btn-group-toggle > .btn-group > .btn input[type=radio],
+.bootstrap .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
-
-.input-group {
+.bootstrap .input-group {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 100%;
}
-
-.input-group > .form-control,
-.input-group > .ais-SearchBox-input,
-.input-group > .form-control-plaintext,
-.input-group > .custom-select,
-.input-group > .custom-file {
+.bootstrap .input-group > .form-control, .bootstrap .input-group > .ais-SearchBox-input,
+.bootstrap .input-group > .form-control-plaintext,
+.bootstrap .input-group > .custom-select,
+.bootstrap .input-group > .custom-file {
position: relative;
flex: 1 1 0%;
min-width: 0;
margin-bottom: 0;
}
-
-.input-group > .form-control + .form-control,
-.input-group > .ais-SearchBox-input + .form-control,
-.input-group > .form-control + .ais-SearchBox-input,
-.input-group > .ais-SearchBox-input + .ais-SearchBox-input,
-.input-group > .form-control + .custom-select,
-.input-group > .ais-SearchBox-input + .custom-select,
-.input-group > .form-control + .custom-file,
-.input-group > .ais-SearchBox-input + .custom-file,
-.input-group > .form-control-plaintext + .form-control,
-.input-group > .form-control-plaintext + .ais-SearchBox-input,
-.input-group > .form-control-plaintext + .custom-select,
-.input-group > .form-control-plaintext + .custom-file,
-.input-group > .custom-select + .form-control,
-.input-group > .custom-select + .ais-SearchBox-input,
-.input-group > .custom-select + .custom-select,
-.input-group > .custom-select + .custom-file,
-.input-group > .custom-file + .form-control,
-.input-group > .custom-file + .ais-SearchBox-input,
-.input-group > .custom-file + .custom-select,
-.input-group > .custom-file + .custom-file {
+.bootstrap .input-group > .form-control + .form-control, .bootstrap .input-group > .ais-SearchBox-input + .form-control, .bootstrap .input-group > .form-control + .ais-SearchBox-input, .bootstrap .input-group > .ais-SearchBox-input + .ais-SearchBox-input,
+.bootstrap .input-group > .form-control + .custom-select,
+.bootstrap .input-group > .ais-SearchBox-input + .custom-select,
+.bootstrap .input-group > .form-control + .custom-file,
+.bootstrap .input-group > .ais-SearchBox-input + .custom-file,
+.bootstrap .input-group > .form-control-plaintext + .form-control,
+.bootstrap .input-group > .form-control-plaintext + .ais-SearchBox-input,
+.bootstrap .input-group > .form-control-plaintext + .custom-select,
+.bootstrap .input-group > .form-control-plaintext + .custom-file,
+.bootstrap .input-group > .custom-select + .form-control,
+.bootstrap .input-group > .custom-select + .ais-SearchBox-input,
+.bootstrap .input-group > .custom-select + .custom-select,
+.bootstrap .input-group > .custom-select + .custom-file,
+.bootstrap .input-group > .custom-file + .form-control,
+.bootstrap .input-group > .custom-file + .ais-SearchBox-input,
+.bootstrap .input-group > .custom-file + .custom-select,
+.bootstrap .input-group > .custom-file + .custom-file {
margin-left: -1px;
}
-
-.input-group > .form-control:focus,
-.input-group > .ais-SearchBox-input:focus,
-.input-group > .custom-select:focus,
-.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
+.bootstrap .input-group > .form-control:focus, .bootstrap .input-group > .ais-SearchBox-input:focus,
+.bootstrap .input-group > .custom-select:focus,
+.bootstrap .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
z-index: 3;
}
-
-.input-group > .custom-file .custom-file-input:focus {
+.bootstrap .input-group > .custom-file .custom-file-input:focus {
z-index: 4;
}
-
-.input-group > .form-control:not(:last-child),
-.input-group > .ais-SearchBox-input:not(:last-child),
-.input-group > .custom-select:not(:last-child) {
+.bootstrap .input-group > .form-control:not(:last-child), .bootstrap .input-group > .ais-SearchBox-input:not(:last-child),
+.bootstrap .input-group > .custom-select:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
-
-.input-group > .form-control:not(:first-child),
-.input-group > .ais-SearchBox-input:not(:first-child),
-.input-group > .custom-select:not(:first-child) {
+.bootstrap .input-group > .form-control:not(:first-child), .bootstrap .input-group > .ais-SearchBox-input:not(:first-child),
+.bootstrap .input-group > .custom-select:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
-
-.input-group > .custom-file {
+.bootstrap .input-group > .custom-file {
display: flex;
align-items: center;
}
-
-.input-group > .custom-file:not(:last-child) .custom-file-label,
-.input-group > .custom-file:not(:last-child) .custom-file-label::after {
+.bootstrap .input-group > .custom-file:not(:last-child) .custom-file-label, .bootstrap .input-group > .custom-file:not(:last-child) .custom-file-label::after {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
-
-.input-group > .custom-file:not(:first-child) .custom-file-label {
+.bootstrap .input-group > .custom-file:not(:first-child) .custom-file-label {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
-
-.input-group-prepend,
-.input-group-append {
+.bootstrap .input-group-prepend,
+.bootstrap .input-group-append {
display: flex;
}
-
-.input-group-prepend .btn,
-.input-group-append .btn {
+.bootstrap .input-group-prepend .btn,
+.bootstrap .input-group-append .btn {
position: relative;
z-index: 2;
}
-
-.input-group-prepend .btn:focus,
-.input-group-append .btn:focus {
+.bootstrap .input-group-prepend .btn:focus,
+.bootstrap .input-group-append .btn:focus {
z-index: 3;
}
-
-.input-group-prepend .btn + .btn,
-.input-group-prepend .btn + .input-group-text,
-.input-group-prepend .input-group-text + .input-group-text,
-.input-group-prepend .input-group-text + .btn,
-.input-group-append .btn + .btn,
-.input-group-append .btn + .input-group-text,
-.input-group-append .input-group-text + .input-group-text,
-.input-group-append .input-group-text + .btn {
+.bootstrap .input-group-prepend .btn + .btn,
+.bootstrap .input-group-prepend .btn + .input-group-text,
+.bootstrap .input-group-prepend .input-group-text + .input-group-text,
+.bootstrap .input-group-prepend .input-group-text + .btn,
+.bootstrap .input-group-append .btn + .btn,
+.bootstrap .input-group-append .btn + .input-group-text,
+.bootstrap .input-group-append .input-group-text + .input-group-text,
+.bootstrap .input-group-append .input-group-text + .btn {
margin-left: -1px;
}
-
-.input-group-prepend {
+.bootstrap .input-group-prepend {
margin-right: -1px;
}
-
-.input-group-append {
+.bootstrap .input-group-append {
margin-left: -1px;
}
-
-.input-group-text {
+.bootstrap .input-group-text {
display: flex;
align-items: center;
padding: 0.375rem 0.75rem;
@@ -3970,88 +3003,73 @@ input[type=button].btn-block {
border: 1px solid #ced4da;
border-radius: 0.25rem;
}
-
-.input-group-text input[type=radio],
-.input-group-text input[type=checkbox] {
+.bootstrap .input-group-text input[type=radio],
+.bootstrap .input-group-text input[type=checkbox] {
margin-top: 0;
}
-
-.input-group-lg > .form-control:not(textarea),
-.input-group-lg > .ais-SearchBox-input:not(textarea),
-.input-group-lg > .custom-select {
+.bootstrap .input-group-lg > .form-control:not(textarea), .bootstrap .input-group-lg > .ais-SearchBox-input:not(textarea),
+.bootstrap .input-group-lg > .custom-select {
height: calc(1.5em + 1rem + 2px);
}
-
-.input-group-lg > .form-control,
-.input-group-lg > .ais-SearchBox-input,
-.input-group-lg > .custom-select,
-.input-group-lg > .input-group-prepend > .input-group-text,
-.input-group-lg > .input-group-append > .input-group-text,
-.input-group-lg > .input-group-prepend > .btn,
-.input-group-lg > .input-group-append > .btn {
+.bootstrap .input-group-lg > .form-control, .bootstrap .input-group-lg > .ais-SearchBox-input,
+.bootstrap .input-group-lg > .custom-select,
+.bootstrap .input-group-lg > .input-group-prepend > .input-group-text,
+.bootstrap .input-group-lg > .input-group-append > .input-group-text,
+.bootstrap .input-group-lg > .input-group-prepend > .btn,
+.bootstrap .input-group-lg > .input-group-append > .btn {
padding: 0.5rem 1rem;
font-size: 1.125rem;
line-height: 1.5;
border-radius: 0.3rem;
}
-
-.input-group-sm > .form-control:not(textarea),
-.input-group-sm > .ais-SearchBox-input:not(textarea),
-.input-group-sm > .custom-select {
+.bootstrap .input-group-sm > .form-control:not(textarea), .bootstrap .input-group-sm > .ais-SearchBox-input:not(textarea),
+.bootstrap .input-group-sm > .custom-select {
height: calc(1.5em + 0.5rem + 2px);
}
-
-.input-group-sm > .form-control,
-.input-group-sm > .ais-SearchBox-input,
-.input-group-sm > .custom-select,
-.input-group-sm > .input-group-prepend > .input-group-text,
-.input-group-sm > .input-group-append > .input-group-text,
-.input-group-sm > .input-group-prepend > .btn,
-.input-group-sm > .input-group-append > .btn {
+.bootstrap .input-group-sm > .form-control, .bootstrap .input-group-sm > .ais-SearchBox-input,
+.bootstrap .input-group-sm > .custom-select,
+.bootstrap .input-group-sm > .input-group-prepend > .input-group-text,
+.bootstrap .input-group-sm > .input-group-append > .input-group-text,
+.bootstrap .input-group-sm > .input-group-prepend > .btn,
+.bootstrap .input-group-sm > .input-group-append > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.7875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
-
-.input-group-lg > .custom-select,
-.input-group-sm > .custom-select {
+.bootstrap .input-group-lg > .custom-select,
+.bootstrap .input-group-sm > .custom-select {
padding-right: 1.75rem;
}
-
-.input-group > .input-group-prepend > .btn,
-.input-group > .input-group-prepend > .input-group-text,
-.input-group > .input-group-append:not(:last-child) > .btn,
-.input-group > .input-group-append:not(:last-child) > .input-group-text,
-.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
-.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
+.bootstrap .input-group > .input-group-prepend > .btn,
+.bootstrap .input-group > .input-group-prepend > .input-group-text,
+.bootstrap .input-group > .input-group-append:not(:last-child) > .btn,
+.bootstrap .input-group > .input-group-append:not(:last-child) > .input-group-text,
+.bootstrap .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.bootstrap .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
-
-.input-group > .input-group-append > .btn,
-.input-group > .input-group-append > .input-group-text,
-.input-group > .input-group-prepend:not(:first-child) > .btn,
-.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
-.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
-.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
+.bootstrap .input-group > .input-group-append > .btn,
+.bootstrap .input-group > .input-group-append > .input-group-text,
+.bootstrap .input-group > .input-group-prepend:not(:first-child) > .btn,
+.bootstrap .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
+.bootstrap .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
+.bootstrap .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
-
-.custom-control {
+.bootstrap .custom-control {
position: relative;
display: block;
min-height: 1.44rem;
padding-left: 1.5rem;
}
-
-.custom-control-inline {
+.bootstrap .custom-control-inline {
display: inline-flex;
margin-right: 1rem;
}
-
-.custom-control-input {
+.bootstrap .custom-control-input {
position: absolute;
left: 0;
z-index: -1;
@@ -4059,46 +3077,36 @@ input[type=button].btn-block {
height: 1.22rem;
opacity: 0;
}
-
-.custom-control-input:checked ~ .custom-control-label::before {
+.bootstrap .custom-control-input:checked ~ .custom-control-label::before {
color: #fff;
border-color: #074e9c;
background-color: #074e9c;
box-shadow: none;
}
-
-.custom-control-input:focus ~ .custom-control-label::before {
+.bootstrap .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
+.bootstrap .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
border-color: #2d8df6;
}
-
-.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
+.bootstrap .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
color: #fff;
background-color: #5ea7f8;
border-color: #5ea7f8;
box-shadow: none;
}
-
-.custom-control-input[disabled] ~ .custom-control-label,
-.custom-control-input:disabled ~ .custom-control-label {
+.bootstrap .custom-control-input[disabled] ~ .custom-control-label, .bootstrap .custom-control-input:disabled ~ .custom-control-label {
color: #6c757d;
}
-
-.custom-control-input[disabled] ~ .custom-control-label::before,
-.custom-control-input:disabled ~ .custom-control-label::before {
+.bootstrap .custom-control-input[disabled] ~ .custom-control-label::before, .bootstrap .custom-control-input:disabled ~ .custom-control-label::before {
background-color: #e9ecef;
}
-
-.custom-control-label {
+.bootstrap .custom-control-label {
position: relative;
margin-bottom: 0;
vertical-align: top;
}
-
-.custom-control-label::before {
+.bootstrap .custom-control-label::before {
position: absolute;
top: 0.22rem;
left: -1.5rem;
@@ -4111,8 +3119,7 @@ input[type=button].btn-block {
border: #adb5bd solid 1px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.custom-control-label::after {
+.bootstrap .custom-control-label::after {
position: absolute;
top: 0.22rem;
left: -1.5rem;
@@ -4122,57 +3129,45 @@ input[type=button].btn-block {
content: "";
background: no-repeat 50%/50% 50%;
}
-
-.custom-checkbox .custom-control-label::before {
+.bootstrap .custom-checkbox .custom-control-label::before {
border-radius: 0.25rem;
}
-
-.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
+.bootstrap .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
-
-.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
+.bootstrap .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
border-color: #074e9c;
background-color: #074e9c;
box-shadow: none;
}
-
-.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
+.bootstrap .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
-
-.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
+.bootstrap .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
background-color: rgba(7, 78, 156, 0.5);
}
-
-.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
+.bootstrap .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
background-color: rgba(7, 78, 156, 0.5);
}
-
-.custom-radio .custom-control-label::before {
+.bootstrap .custom-radio .custom-control-label::before {
border-radius: 50%;
}
-
-.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
+.bootstrap .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
-
-.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
+.bootstrap .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
background-color: rgba(7, 78, 156, 0.5);
}
-
-.custom-switch {
+.bootstrap .custom-switch {
padding-left: 2.25rem;
}
-
-.custom-switch .custom-control-label::before {
+.bootstrap .custom-switch .custom-control-label::before {
left: -2.25rem;
width: 1.75rem;
pointer-events: all;
border-radius: 0.5rem;
}
-
-.custom-switch .custom-control-label::after {
+.bootstrap .custom-switch .custom-control-label::after {
top: calc(0.22rem + 2px);
left: calc(-2.25rem + 2px);
width: calc(1rem - 4px);
@@ -4181,23 +3176,19 @@ input[type=button].btn-block {
border-radius: 0.5rem;
transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
-
@media (prefers-reduced-motion: reduce) {
- .custom-switch .custom-control-label::after {
+ .bootstrap .custom-switch .custom-control-label::after {
transition: none;
}
}
-
-.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
+.bootstrap .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
background-color: #fff;
transform: translateX(0.75rem);
}
-
-.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
+.bootstrap .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
background-color: rgba(7, 78, 156, 0.5);
}
-
-.custom-select {
+.bootstrap .custom-select {
display: inline-block;
width: 100%;
height: calc(1.6em + 0.75rem + 2px);
@@ -4215,64 +3206,53 @@ input[type=button].btn-block {
-moz-appearance: none;
appearance: none;
}
-
-.custom-select:focus {
+.bootstrap .custom-select:focus {
border-color: #2d8df6;
outline: 0;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.custom-select:focus::-ms-value {
+.bootstrap .custom-select:focus::-ms-value {
color: #495057;
background-color: #fff;
}
-
-.custom-select[multiple],
-.custom-select[size]:not([size="1"]) {
+.bootstrap .custom-select[multiple], .bootstrap .custom-select[size]:not([size="1"]) {
height: auto;
padding-right: 0.75rem;
background-image: none;
}
-
-.custom-select:disabled {
+.bootstrap .custom-select:disabled {
color: #6c757d;
background-color: #e9ecef;
}
-
-.custom-select::-ms-expand {
+.bootstrap .custom-select::-ms-expand {
display: none;
}
-
-.custom-select:-moz-focusring {
+.bootstrap .custom-select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #495057;
}
-
-.custom-select-sm {
+.bootstrap .custom-select-sm {
height: calc(1.5em + 0.5rem + 2px);
padding-top: 0.25rem;
padding-bottom: 0.25rem;
padding-left: 0.5rem;
font-size: 0.7875rem;
}
-
-.custom-select-lg {
+.bootstrap .custom-select-lg {
height: calc(1.5em + 1rem + 2px);
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.125rem;
}
-
-.custom-file {
+.bootstrap .custom-file {
position: relative;
display: inline-block;
width: 100%;
height: calc(1.6em + 0.75rem + 2px);
margin-bottom: 0;
}
-
-.custom-file-input {
+.bootstrap .custom-file-input {
position: relative;
z-index: 2;
width: 100%;
@@ -4280,26 +3260,20 @@ input[type=button].btn-block {
margin: 0;
opacity: 0;
}
-
-.custom-file-input:focus ~ .custom-file-label {
+.bootstrap .custom-file-input:focus ~ .custom-file-label {
border-color: #2d8df6;
box-shadow: 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.custom-file-input[disabled] ~ .custom-file-label,
-.custom-file-input:disabled ~ .custom-file-label {
+.bootstrap .custom-file-input[disabled] ~ .custom-file-label, .bootstrap .custom-file-input:disabled ~ .custom-file-label {
background-color: #e9ecef;
}
-
-.custom-file-input:lang(en) ~ .custom-file-label::after {
+.bootstrap .custom-file-input:lang(en) ~ .custom-file-label::after {
content: "Browse";
}
-
-.custom-file-input ~ .custom-file-label[data-browse]::after {
+.bootstrap .custom-file-input ~ .custom-file-label[data-browse]::after {
content: attr(data-browse);
}
-
-.custom-file-label {
+.bootstrap .custom-file-label {
position: absolute;
top: 0;
right: 0;
@@ -4315,8 +3289,7 @@ input[type=button].btn-block {
border-radius: 0.25rem;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
-
-.custom-file-label::after {
+.bootstrap .custom-file-label::after {
position: absolute;
top: 0;
right: 0;
@@ -4332,8 +3305,7 @@ input[type=button].btn-block {
border-left: inherit;
border-radius: 0 0.25rem 0.25rem 0;
}
-
-.custom-range {
+.bootstrap .custom-range {
width: 100%;
height: 1.4rem;
padding: 0;
@@ -4342,28 +3314,22 @@ input[type=button].btn-block {
-moz-appearance: none;
appearance: none;
}
-
-.custom-range:focus {
+.bootstrap .custom-range:focus {
outline: none;
}
-
-.custom-range:focus::-webkit-slider-thumb {
+.bootstrap .custom-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.custom-range:focus::-moz-range-thumb {
+.bootstrap .custom-range:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.custom-range:focus::-ms-thumb {
+.bootstrap .custom-range:focus::-ms-thumb {
box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.custom-range::-moz-focus-outer {
+.bootstrap .custom-range::-moz-focus-outer {
border: 0;
}
-
-.custom-range::-webkit-slider-thumb {
+.bootstrap .custom-range::-webkit-slider-thumb {
width: 1rem;
height: 1rem;
margin-top: -0.25rem;
@@ -4376,19 +3342,16 @@ input[type=button].btn-block {
-webkit-appearance: none;
appearance: none;
}
-
@media (prefers-reduced-motion: reduce) {
- .custom-range::-webkit-slider-thumb {
+ .bootstrap .custom-range::-webkit-slider-thumb {
-webkit-transition: none;
transition: none;
}
}
-
-.custom-range::-webkit-slider-thumb:active {
+.bootstrap .custom-range::-webkit-slider-thumb:active {
background-color: #5ea7f8;
}
-
-.custom-range::-webkit-slider-runnable-track {
+.bootstrap .custom-range::-webkit-slider-runnable-track {
width: 100%;
height: 0.5rem;
color: transparent;
@@ -4398,8 +3361,7 @@ input[type=button].btn-block {
border-radius: 1rem;
box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
-
-.custom-range::-moz-range-thumb {
+.bootstrap .custom-range::-moz-range-thumb {
width: 1rem;
height: 1rem;
background-color: #074e9c;
@@ -4411,19 +3373,16 @@ input[type=button].btn-block {
-moz-appearance: none;
appearance: none;
}
-
@media (prefers-reduced-motion: reduce) {
- .custom-range::-moz-range-thumb {
+ .bootstrap .custom-range::-moz-range-thumb {
-moz-transition: none;
transition: none;
}
}
-
-.custom-range::-moz-range-thumb:active {
+.bootstrap .custom-range::-moz-range-thumb:active {
background-color: #5ea7f8;
}
-
-.custom-range::-moz-range-track {
+.bootstrap .custom-range::-moz-range-track {
width: 100%;
height: 0.5rem;
color: transparent;
@@ -4433,8 +3392,7 @@ input[type=button].btn-block {
border-radius: 1rem;
box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
-
-.custom-range::-ms-thumb {
+.bootstrap .custom-range::-ms-thumb {
width: 1rem;
height: 1rem;
margin-top: 0;
@@ -4448,19 +3406,16 @@ input[type=button].btn-block {
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
appearance: none;
}
-
@media (prefers-reduced-motion: reduce) {
- .custom-range::-ms-thumb {
+ .bootstrap .custom-range::-ms-thumb {
-ms-transition: none;
transition: none;
}
}
-
-.custom-range::-ms-thumb:active {
+.bootstrap .custom-range::-ms-thumb:active {
background-color: #5ea7f8;
}
-
-.custom-range::-ms-track {
+.bootstrap .custom-range::-ms-track {
width: 100%;
height: 0.5rem;
color: transparent;
@@ -4470,144 +3425,115 @@ input[type=button].btn-block {
border-width: 0.5rem;
box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
-
-.custom-range::-ms-fill-lower {
+.bootstrap .custom-range::-ms-fill-lower {
background-color: #dee2e6;
border-radius: 1rem;
}
-
-.custom-range::-ms-fill-upper {
+.bootstrap .custom-range::-ms-fill-upper {
margin-right: 15px;
background-color: #dee2e6;
border-radius: 1rem;
}
-
-.custom-range:disabled::-webkit-slider-thumb {
+.bootstrap .custom-range:disabled::-webkit-slider-thumb {
background-color: #adb5bd;
}
-
-.custom-range:disabled::-webkit-slider-runnable-track {
+.bootstrap .custom-range:disabled::-webkit-slider-runnable-track {
cursor: default;
}
-
-.custom-range:disabled::-moz-range-thumb {
+.bootstrap .custom-range:disabled::-moz-range-thumb {
background-color: #adb5bd;
}
-
-.custom-range:disabled::-moz-range-track {
+.bootstrap .custom-range:disabled::-moz-range-track {
cursor: default;
}
-
-.custom-range:disabled::-ms-thumb {
+.bootstrap .custom-range:disabled::-ms-thumb {
background-color: #adb5bd;
}
-
-.custom-control-label::before,
-.custom-file-label,
-.custom-select {
+.bootstrap .custom-control-label::before,
+.bootstrap .custom-file-label,
+.bootstrap .custom-select {
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
-
@media (prefers-reduced-motion: reduce) {
- .custom-control-label::before,
- .custom-file-label,
- .custom-select {
+ .bootstrap .custom-control-label::before,
+.bootstrap .custom-file-label,
+.bootstrap .custom-select {
transition: none;
}
}
-
-.nav {
+.bootstrap .nav {
display: flex;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
-
-.nav-link {
+.bootstrap .nav-link {
display: block;
padding: 0.5rem 1rem;
}
-
-.nav-link:hover,
-.nav-link:focus {
+.bootstrap .nav-link:hover, .bootstrap .nav-link:focus {
text-decoration: none;
}
-
-.nav-link.disabled {
+.bootstrap .nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
-
-.nav-tabs {
+.bootstrap .nav-tabs {
border-bottom: 1px solid #dee2e6;
}
-
-.nav-tabs .nav-item {
+.bootstrap .nav-tabs .nav-item {
margin-bottom: -1px;
}
-
-.nav-tabs .nav-link {
+.bootstrap .nav-tabs .nav-link {
border: 1px solid transparent;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
-
-.nav-tabs .nav-link:hover,
-.nav-tabs .nav-link:focus {
+.bootstrap .nav-tabs .nav-link:hover, .bootstrap .nav-tabs .nav-link:focus {
border-color: #e9ecef #e9ecef #dee2e6;
}
-
-.nav-tabs .nav-link.disabled {
+.bootstrap .nav-tabs .nav-link.disabled {
color: #6c757d;
background-color: transparent;
border-color: transparent;
}
-
-.nav-tabs .nav-link.active,
-.nav-tabs .nav-item.show .nav-link {
+.bootstrap .nav-tabs .nav-link.active,
+.bootstrap .nav-tabs .nav-item.show .nav-link {
color: #495057;
background-color: #f8fafc;
border-color: #dee2e6 #dee2e6 #f8fafc;
}
-
-.nav-tabs .dropdown-menu {
+.bootstrap .nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
-
-.nav-pills .nav-link {
+.bootstrap .nav-pills .nav-link {
border-radius: 0.25rem;
}
-
-.nav-pills .nav-link.active,
-.nav-pills .show > .nav-link {
+.bootstrap .nav-pills .nav-link.active,
+.bootstrap .nav-pills .show > .nav-link {
color: #fff;
background-color: #074e9c;
}
-
-.nav-fill .nav-item {
+.bootstrap .nav-fill .nav-item {
flex: 1 1 auto;
text-align: center;
}
-
-.nav-justified .nav-item {
+.bootstrap .nav-justified .nav-item {
flex-basis: 0;
flex-grow: 1;
text-align: center;
}
-
-.tab-content > .tab-pane {
+.bootstrap .tab-content > .tab-pane {
display: none;
}
-
-.tab-content > .active {
+.bootstrap .tab-content > .active {
display: block;
}
-
-.navbar {
+.bootstrap .navbar {
position: relative;
display: flex;
flex-wrap: wrap;
@@ -4615,20 +3541,18 @@ input[type=button].btn-block {
justify-content: space-between;
padding: 0.5rem 1rem;
}
-
-.navbar .container,
-.navbar .container-fluid,
-.navbar .container-sm,
-.navbar .container-md,
-.navbar .container-lg,
-.navbar .container-xl {
+.bootstrap .navbar .container,
+.bootstrap .navbar .container-fluid,
+.bootstrap .navbar .container-sm,
+.bootstrap .navbar .container-md,
+.bootstrap .navbar .container-lg,
+.bootstrap .navbar .container-xl {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
-
-.navbar-brand {
+.bootstrap .navbar-brand {
display: inline-block;
padding-top: 0.32rem;
padding-bottom: 0.32rem;
@@ -4637,43 +3561,35 @@ input[type=button].btn-block {
line-height: inherit;
white-space: nowrap;
}
-
-.navbar-brand:hover,
-.navbar-brand:focus {
+.bootstrap .navbar-brand:hover, .bootstrap .navbar-brand:focus {
text-decoration: none;
}
-
-.navbar-nav {
+.bootstrap .navbar-nav {
display: flex;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
-
-.navbar-nav .nav-link {
+.bootstrap .navbar-nav .nav-link {
padding-right: 0;
padding-left: 0;
}
-
-.navbar-nav .dropdown-menu {
+.bootstrap .navbar-nav .dropdown-menu {
position: static;
float: none;
}
-
-.navbar-text {
+.bootstrap .navbar-text {
display: inline-block;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
-
-.navbar-collapse {
+.bootstrap .navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
}
-
-.navbar-toggler {
+.bootstrap .navbar-toggler {
padding: 0.25rem 0.75rem;
font-size: 1.125rem;
line-height: 1;
@@ -4681,13 +3597,10 @@ input[type=button].btn-block {
border: 1px solid transparent;
border-radius: 0.25rem;
}
-
-.navbar-toggler:hover,
-.navbar-toggler:focus {
+.bootstrap .navbar-toggler:hover, .bootstrap .navbar-toggler:focus {
text-decoration: none;
}
-
-.navbar-toggler-icon {
+.bootstrap .navbar-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
@@ -4696,356 +3609,287 @@ input[type=button].btn-block {
background: no-repeat center center;
background-size: 100% 100%;
}
-
@media (max-width: 575.98px) {
- .navbar-expand-sm > .container,
- .navbar-expand-sm > .container-fluid,
- .navbar-expand-sm > .container-sm,
- .navbar-expand-sm > .container-md,
- .navbar-expand-sm > .container-lg,
- .navbar-expand-sm > .container-xl {
+ .bootstrap .navbar-expand-sm > .container,
+.bootstrap .navbar-expand-sm > .container-fluid,
+.bootstrap .navbar-expand-sm > .container-sm,
+.bootstrap .navbar-expand-sm > .container-md,
+.bootstrap .navbar-expand-sm > .container-lg,
+.bootstrap .navbar-expand-sm > .container-xl {
padding-right: 0;
padding-left: 0;
}
}
-
@media (min-width: 576px) {
- .navbar-expand-sm {
+ .bootstrap .navbar-expand-sm {
flex-flow: row nowrap;
justify-content: flex-start;
}
-
- .navbar-expand-sm .navbar-nav {
+ .bootstrap .navbar-expand-sm .navbar-nav {
flex-direction: row;
}
-
- .navbar-expand-sm .navbar-nav .dropdown-menu {
+ .bootstrap .navbar-expand-sm .navbar-nav .dropdown-menu {
position: absolute;
}
-
- .navbar-expand-sm .navbar-nav .nav-link {
+ .bootstrap .navbar-expand-sm .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
-
- .navbar-expand-sm > .container,
- .navbar-expand-sm > .container-fluid,
- .navbar-expand-sm > .container-sm,
- .navbar-expand-sm > .container-md,
- .navbar-expand-sm > .container-lg,
- .navbar-expand-sm > .container-xl {
+ .bootstrap .navbar-expand-sm > .container,
+.bootstrap .navbar-expand-sm > .container-fluid,
+.bootstrap .navbar-expand-sm > .container-sm,
+.bootstrap .navbar-expand-sm > .container-md,
+.bootstrap .navbar-expand-sm > .container-lg,
+.bootstrap .navbar-expand-sm > .container-xl {
flex-wrap: nowrap;
}
-
- .navbar-expand-sm .navbar-collapse {
+ .bootstrap .navbar-expand-sm .navbar-collapse {
display: flex !important;
flex-basis: auto;
}
-
- .navbar-expand-sm .navbar-toggler {
+ .bootstrap .navbar-expand-sm .navbar-toggler {
display: none;
}
}
-
@media (max-width: 767.98px) {
- .navbar-expand-md > .container,
- .navbar-expand-md > .container-fluid,
- .navbar-expand-md > .container-sm,
- .navbar-expand-md > .container-md,
- .navbar-expand-md > .container-lg,
- .navbar-expand-md > .container-xl {
+ .bootstrap .navbar-expand-md > .container,
+.bootstrap .navbar-expand-md > .container-fluid,
+.bootstrap .navbar-expand-md > .container-sm,
+.bootstrap .navbar-expand-md > .container-md,
+.bootstrap .navbar-expand-md > .container-lg,
+.bootstrap .navbar-expand-md > .container-xl {
padding-right: 0;
padding-left: 0;
}
}
-
@media (min-width: 768px) {
- .navbar-expand-md {
+ .bootstrap .navbar-expand-md {
flex-flow: row nowrap;
justify-content: flex-start;
}
-
- .navbar-expand-md .navbar-nav {
+ .bootstrap .navbar-expand-md .navbar-nav {
flex-direction: row;
}
-
- .navbar-expand-md .navbar-nav .dropdown-menu {
+ .bootstrap .navbar-expand-md .navbar-nav .dropdown-menu {
position: absolute;
}
-
- .navbar-expand-md .navbar-nav .nav-link {
+ .bootstrap .navbar-expand-md .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
-
- .navbar-expand-md > .container,
- .navbar-expand-md > .container-fluid,
- .navbar-expand-md > .container-sm,
- .navbar-expand-md > .container-md,
- .navbar-expand-md > .container-lg,
- .navbar-expand-md > .container-xl {
+ .bootstrap .navbar-expand-md > .container,
+.bootstrap .navbar-expand-md > .container-fluid,
+.bootstrap .navbar-expand-md > .container-sm,
+.bootstrap .navbar-expand-md > .container-md,
+.bootstrap .navbar-expand-md > .container-lg,
+.bootstrap .navbar-expand-md > .container-xl {
flex-wrap: nowrap;
}
-
- .navbar-expand-md .navbar-collapse {
+ .bootstrap .navbar-expand-md .navbar-collapse {
display: flex !important;
flex-basis: auto;
}
-
- .navbar-expand-md .navbar-toggler {
+ .bootstrap .navbar-expand-md .navbar-toggler {
display: none;
}
}
-
@media (max-width: 991.98px) {
- .navbar-expand-lg > .container,
- .navbar-expand-lg > .container-fluid,
- .navbar-expand-lg > .container-sm,
- .navbar-expand-lg > .container-md,
- .navbar-expand-lg > .container-lg,
- .navbar-expand-lg > .container-xl {
+ .bootstrap .navbar-expand-lg > .container,
+.bootstrap .navbar-expand-lg > .container-fluid,
+.bootstrap .navbar-expand-lg > .container-sm,
+.bootstrap .navbar-expand-lg > .container-md,
+.bootstrap .navbar-expand-lg > .container-lg,
+.bootstrap .navbar-expand-lg > .container-xl {
padding-right: 0;
padding-left: 0;
}
}
-
@media (min-width: 992px) {
- .navbar-expand-lg {
+ .bootstrap .navbar-expand-lg {
flex-flow: row nowrap;
justify-content: flex-start;
}
-
- .navbar-expand-lg .navbar-nav {
+ .bootstrap .navbar-expand-lg .navbar-nav {
flex-direction: row;
}
-
- .navbar-expand-lg .navbar-nav .dropdown-menu {
+ .bootstrap .navbar-expand-lg .navbar-nav .dropdown-menu {
position: absolute;
}
-
- .navbar-expand-lg .navbar-nav .nav-link {
+ .bootstrap .navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
-
- .navbar-expand-lg > .container,
- .navbar-expand-lg > .container-fluid,
- .navbar-expand-lg > .container-sm,
- .navbar-expand-lg > .container-md,
- .navbar-expand-lg > .container-lg,
- .navbar-expand-lg > .container-xl {
+ .bootstrap .navbar-expand-lg > .container,
+.bootstrap .navbar-expand-lg > .container-fluid,
+.bootstrap .navbar-expand-lg > .container-sm,
+.bootstrap .navbar-expand-lg > .container-md,
+.bootstrap .navbar-expand-lg > .container-lg,
+.bootstrap .navbar-expand-lg > .container-xl {
flex-wrap: nowrap;
}
-
- .navbar-expand-lg .navbar-collapse {
+ .bootstrap .navbar-expand-lg .navbar-collapse {
display: flex !important;
flex-basis: auto;
}
-
- .navbar-expand-lg .navbar-toggler {
+ .bootstrap .navbar-expand-lg .navbar-toggler {
display: none;
}
}
-
@media (max-width: 1199.98px) {
- .navbar-expand-xl > .container,
- .navbar-expand-xl > .container-fluid,
- .navbar-expand-xl > .container-sm,
- .navbar-expand-xl > .container-md,
- .navbar-expand-xl > .container-lg,
- .navbar-expand-xl > .container-xl {
+ .bootstrap .navbar-expand-xl > .container,
+.bootstrap .navbar-expand-xl > .container-fluid,
+.bootstrap .navbar-expand-xl > .container-sm,
+.bootstrap .navbar-expand-xl > .container-md,
+.bootstrap .navbar-expand-xl > .container-lg,
+.bootstrap .navbar-expand-xl > .container-xl {
padding-right: 0;
padding-left: 0;
}
}
-
@media (min-width: 1200px) {
- .navbar-expand-xl {
+ .bootstrap .navbar-expand-xl {
flex-flow: row nowrap;
justify-content: flex-start;
}
-
- .navbar-expand-xl .navbar-nav {
+ .bootstrap .navbar-expand-xl .navbar-nav {
flex-direction: row;
}
-
- .navbar-expand-xl .navbar-nav .dropdown-menu {
+ .bootstrap .navbar-expand-xl .navbar-nav .dropdown-menu {
position: absolute;
}
-
- .navbar-expand-xl .navbar-nav .nav-link {
+ .bootstrap .navbar-expand-xl .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
-
- .navbar-expand-xl > .container,
- .navbar-expand-xl > .container-fluid,
- .navbar-expand-xl > .container-sm,
- .navbar-expand-xl > .container-md,
- .navbar-expand-xl > .container-lg,
- .navbar-expand-xl > .container-xl {
+ .bootstrap .navbar-expand-xl > .container,
+.bootstrap .navbar-expand-xl > .container-fluid,
+.bootstrap .navbar-expand-xl > .container-sm,
+.bootstrap .navbar-expand-xl > .container-md,
+.bootstrap .navbar-expand-xl > .container-lg,
+.bootstrap .navbar-expand-xl > .container-xl {
flex-wrap: nowrap;
}
-
- .navbar-expand-xl .navbar-collapse {
+ .bootstrap .navbar-expand-xl .navbar-collapse {
display: flex !important;
flex-basis: auto;
}
-
- .navbar-expand-xl .navbar-toggler {
+ .bootstrap .navbar-expand-xl .navbar-toggler {
display: none;
}
}
-
-.navbar-expand {
+.bootstrap .navbar-expand {
flex-flow: row nowrap;
justify-content: flex-start;
}
-
-.navbar-expand > .container,
-.navbar-expand > .container-fluid,
-.navbar-expand > .container-sm,
-.navbar-expand > .container-md,
-.navbar-expand > .container-lg,
-.navbar-expand > .container-xl {
+.bootstrap .navbar-expand > .container,
+.bootstrap .navbar-expand > .container-fluid,
+.bootstrap .navbar-expand > .container-sm,
+.bootstrap .navbar-expand > .container-md,
+.bootstrap .navbar-expand > .container-lg,
+.bootstrap .navbar-expand > .container-xl {
padding-right: 0;
padding-left: 0;
}
-
-.navbar-expand .navbar-nav {
+.bootstrap .navbar-expand .navbar-nav {
flex-direction: row;
}
-
-.navbar-expand .navbar-nav .dropdown-menu {
+.bootstrap .navbar-expand .navbar-nav .dropdown-menu {
position: absolute;
}
-
-.navbar-expand .navbar-nav .nav-link {
+.bootstrap .navbar-expand .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem;
}
-
-.navbar-expand > .container,
-.navbar-expand > .container-fluid,
-.navbar-expand > .container-sm,
-.navbar-expand > .container-md,
-.navbar-expand > .container-lg,
-.navbar-expand > .container-xl {
+.bootstrap .navbar-expand > .container,
+.bootstrap .navbar-expand > .container-fluid,
+.bootstrap .navbar-expand > .container-sm,
+.bootstrap .navbar-expand > .container-md,
+.bootstrap .navbar-expand > .container-lg,
+.bootstrap .navbar-expand > .container-xl {
flex-wrap: nowrap;
}
-
-.navbar-expand .navbar-collapse {
+.bootstrap .navbar-expand .navbar-collapse {
display: flex !important;
flex-basis: auto;
}
-
-.navbar-expand .navbar-toggler {
+.bootstrap .navbar-expand .navbar-toggler {
display: none;
}
-
-.navbar-light .navbar-brand {
+.bootstrap .navbar-light .navbar-brand {
color: rgba(0, 0, 0, 0.9);
}
-
-.navbar-light .navbar-brand:hover,
-.navbar-light .navbar-brand:focus {
+.bootstrap .navbar-light .navbar-brand:hover, .bootstrap .navbar-light .navbar-brand:focus {
color: rgba(0, 0, 0, 0.9);
}
-
-.navbar-light .navbar-nav .nav-link {
+.bootstrap .navbar-light .navbar-nav .nav-link {
color: rgba(0, 0, 0, 0.5);
}
-
-.navbar-light .navbar-nav .nav-link:hover,
-.navbar-light .navbar-nav .nav-link:focus {
+.bootstrap .navbar-light .navbar-nav .nav-link:hover, .bootstrap .navbar-light .navbar-nav .nav-link:focus {
color: rgba(0, 0, 0, 0.7);
}
-
-.navbar-light .navbar-nav .nav-link.disabled {
+.bootstrap .navbar-light .navbar-nav .nav-link.disabled {
color: rgba(0, 0, 0, 0.3);
}
-
-.navbar-light .navbar-nav .show > .nav-link,
-.navbar-light .navbar-nav .active > .nav-link,
-.navbar-light .navbar-nav .nav-link.show,
-.navbar-light .navbar-nav .nav-link.active {
+.bootstrap .navbar-light .navbar-nav .show > .nav-link,
+.bootstrap .navbar-light .navbar-nav .active > .nav-link,
+.bootstrap .navbar-light .navbar-nav .nav-link.show,
+.bootstrap .navbar-light .navbar-nav .nav-link.active {
color: rgba(0, 0, 0, 0.9);
}
-
-.navbar-light .navbar-toggler {
+.bootstrap .navbar-light .navbar-toggler {
color: rgba(0, 0, 0, 0.5);
border-color: rgba(0, 0, 0, 0.1);
}
-
-.navbar-light .navbar-toggler-icon {
+.bootstrap .navbar-light .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
-
-.navbar-light .navbar-text {
+.bootstrap .navbar-light .navbar-text {
color: rgba(0, 0, 0, 0.5);
}
-
-.navbar-light .navbar-text a {
+.bootstrap .navbar-light .navbar-text a {
color: rgba(0, 0, 0, 0.9);
}
-
-.navbar-light .navbar-text a:hover,
-.navbar-light .navbar-text a:focus {
+.bootstrap .navbar-light .navbar-text a:hover, .bootstrap .navbar-light .navbar-text a:focus {
color: rgba(0, 0, 0, 0.9);
}
-
-.navbar-dark .navbar-brand {
+.bootstrap .navbar-dark .navbar-brand {
color: #fff;
}
-
-.navbar-dark .navbar-brand:hover,
-.navbar-dark .navbar-brand:focus {
+.bootstrap .navbar-dark .navbar-brand:hover, .bootstrap .navbar-dark .navbar-brand:focus {
color: #fff;
}
-
-.navbar-dark .navbar-nav .nav-link {
+.bootstrap .navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.5);
}
-
-.navbar-dark .navbar-nav .nav-link:hover,
-.navbar-dark .navbar-nav .nav-link:focus {
+.bootstrap .navbar-dark .navbar-nav .nav-link:hover, .bootstrap .navbar-dark .navbar-nav .nav-link:focus {
color: rgba(255, 255, 255, 0.75);
}
-
-.navbar-dark .navbar-nav .nav-link.disabled {
+.bootstrap .navbar-dark .navbar-nav .nav-link.disabled {
color: rgba(255, 255, 255, 0.25);
}
-
-.navbar-dark .navbar-nav .show > .nav-link,
-.navbar-dark .navbar-nav .active > .nav-link,
-.navbar-dark .navbar-nav .nav-link.show,
-.navbar-dark .navbar-nav .nav-link.active {
+.bootstrap .navbar-dark .navbar-nav .show > .nav-link,
+.bootstrap .navbar-dark .navbar-nav .active > .nav-link,
+.bootstrap .navbar-dark .navbar-nav .nav-link.show,
+.bootstrap .navbar-dark .navbar-nav .nav-link.active {
color: #fff;
}
-
-.navbar-dark .navbar-toggler {
+.bootstrap .navbar-dark .navbar-toggler {
color: rgba(255, 255, 255, 0.5);
border-color: rgba(255, 255, 255, 0.1);
}
-
-.navbar-dark .navbar-toggler-icon {
+.bootstrap .navbar-dark .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
-
-.navbar-dark .navbar-text {
+.bootstrap .navbar-dark .navbar-text {
color: rgba(255, 255, 255, 0.5);
}
-
-.navbar-dark .navbar-text a {
+.bootstrap .navbar-dark .navbar-text a {
color: #fff;
}
-
-.navbar-dark .navbar-text a:hover,
-.navbar-dark .navbar-text a:focus {
+.bootstrap .navbar-dark .navbar-text a:hover, .bootstrap .navbar-dark .navbar-text a:focus {
color: #fff;
}
-
-.card {
+.bootstrap .card {
position: relative;
display: flex;
flex-direction: column;
@@ -5056,87 +3900,70 @@ input[type=button].btn-block {
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem;
}
-
-.card > hr {
+.bootstrap .card > hr {
margin-right: 0;
margin-left: 0;
}
-
-.card > .list-group:first-child .list-group-item:first-child {
+.bootstrap .card > .list-group:first-child .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
-
-.card > .list-group:last-child .list-group-item:last-child {
+.bootstrap .card > .list-group:last-child .list-group-item:last-child {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
-
-.card-body {
+.bootstrap .card-body {
flex: 1 1 auto;
min-height: 1px;
padding: 1.25rem;
}
-
-.card-title {
+.bootstrap .card-title {
margin-bottom: 0.75rem;
}
-
-.card-subtitle {
+.bootstrap .card-subtitle {
margin-top: -0.375rem;
margin-bottom: 0;
}
-
-.card-text:last-child {
+.bootstrap .card-text:last-child {
margin-bottom: 0;
}
-
-.card-link:hover {
+.bootstrap .card-link:hover {
text-decoration: none;
}
-
-.card-link + .card-link {
+.bootstrap .card-link + .card-link {
margin-left: 1.25rem;
}
-
-.card-header {
+.bootstrap .card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
-
-.card-header:first-child {
+.bootstrap .card-header:first-child {
border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
-
-.card-header + .list-group .list-group-item:first-child {
+.bootstrap .card-header + .list-group .list-group-item:first-child {
border-top: 0;
}
-
-.card-footer {
+.bootstrap .card-footer {
padding: 0.75rem 1.25rem;
background-color: rgba(0, 0, 0, 0.03);
border-top: 1px solid rgba(0, 0, 0, 0.125);
}
-
-.card-footer:last-child {
+.bootstrap .card-footer:last-child {
border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
-
-.card-header-tabs {
+.bootstrap .card-header-tabs {
margin-right: -0.625rem;
margin-bottom: -0.75rem;
margin-left: -0.625rem;
border-bottom: 0;
}
-
-.card-header-pills {
+.bootstrap .card-header-pills {
margin-right: -0.625rem;
margin-left: -0.625rem;
}
-
-.card-img-overlay {
+.bootstrap .card-img-overlay {
position: absolute;
top: 0;
right: 0;
@@ -5144,103 +3971,85 @@ input[type=button].btn-block {
left: 0;
padding: 1.25rem;
}
-
-.card-img,
-.card-img-top,
-.card-img-bottom {
+.bootstrap .card-img,
+.bootstrap .card-img-top,
+.bootstrap .card-img-bottom {
flex-shrink: 0;
width: 100%;
}
-
-.card-img,
-.card-img-top {
+.bootstrap .card-img,
+.bootstrap .card-img-top {
border-top-left-radius: calc(0.25rem - 1px);
border-top-right-radius: calc(0.25rem - 1px);
}
-
-.card-img,
-.card-img-bottom {
+.bootstrap .card-img,
+.bootstrap .card-img-bottom {
border-bottom-right-radius: calc(0.25rem - 1px);
border-bottom-left-radius: calc(0.25rem - 1px);
}
-
-.card-deck .card {
+.bootstrap .card-deck .card {
margin-bottom: 15px;
}
-
@media (min-width: 576px) {
- .card-deck {
+ .bootstrap .card-deck {
display: flex;
flex-flow: row wrap;
margin-right: -15px;
margin-left: -15px;
}
-
- .card-deck .card {
+ .bootstrap .card-deck .card {
flex: 1 0 0%;
margin-right: 15px;
margin-bottom: 0;
margin-left: 15px;
}
}
-
-.card-group > .card {
+.bootstrap .card-group > .card {
margin-bottom: 15px;
}
-
@media (min-width: 576px) {
- .card-group {
+ .bootstrap .card-group {
display: flex;
flex-flow: row wrap;
}
-
- .card-group > .card {
+ .bootstrap .card-group > .card {
flex: 1 0 0%;
margin-bottom: 0;
}
-
- .card-group > .card + .card {
+ .bootstrap .card-group > .card + .card {
margin-left: 0;
border-left: 0;
}
-
- .card-group > .card:not(:last-child) {
+ .bootstrap .card-group > .card:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
-
- .card-group > .card:not(:last-child) .card-img-top,
- .card-group > .card:not(:last-child) .card-header {
+ .bootstrap .card-group > .card:not(:last-child) .card-img-top,
+.bootstrap .card-group > .card:not(:last-child) .card-header {
border-top-right-radius: 0;
}
-
- .card-group > .card:not(:last-child) .card-img-bottom,
- .card-group > .card:not(:last-child) .card-footer {
+ .bootstrap .card-group > .card:not(:last-child) .card-img-bottom,
+.bootstrap .card-group > .card:not(:last-child) .card-footer {
border-bottom-right-radius: 0;
}
-
- .card-group > .card:not(:first-child) {
+ .bootstrap .card-group > .card:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
-
- .card-group > .card:not(:first-child) .card-img-top,
- .card-group > .card:not(:first-child) .card-header {
+ .bootstrap .card-group > .card:not(:first-child) .card-img-top,
+.bootstrap .card-group > .card:not(:first-child) .card-header {
border-top-left-radius: 0;
}
-
- .card-group > .card:not(:first-child) .card-img-bottom,
- .card-group > .card:not(:first-child) .card-footer {
+ .bootstrap .card-group > .card:not(:first-child) .card-img-bottom,
+.bootstrap .card-group > .card:not(:first-child) .card-footer {
border-bottom-left-radius: 0;
}
}
-
-.card-columns .card {
+.bootstrap .card-columns .card {
margin-bottom: 0.75rem;
}
-
@media (min-width: 576px) {
- .card-columns {
+ .bootstrap .card-columns {
-moz-column-count: 3;
column-count: 3;
-moz-column-gap: 1.25rem;
@@ -5248,34 +4057,28 @@ input[type=button].btn-block {
orphans: 1;
widows: 1;
}
-
- .card-columns .card {
+ .bootstrap .card-columns .card {
display: inline-block;
width: 100%;
}
}
-
-.accordion > .card {
+.bootstrap .accordion > .card {
overflow: hidden;
}
-
-.accordion > .card:not(:last-of-type) {
+.bootstrap .accordion > .card:not(:last-of-type) {
border-bottom: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
-
-.accordion > .card:not(:first-of-type) {
+.bootstrap .accordion > .card:not(:first-of-type) {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
-
-.accordion > .card > .card-header {
+.bootstrap .accordion > .card > .card-header {
border-radius: 0;
margin-bottom: -1px;
}
-
-.breadcrumb {
+.bootstrap .breadcrumb {
display: flex;
flex-wrap: wrap;
padding: 0.75rem 1rem;
@@ -5284,38 +4087,31 @@ input[type=button].btn-block {
background-color: #e9ecef;
border-radius: 0.25rem;
}
-
-.breadcrumb-item + .breadcrumb-item {
+.bootstrap .breadcrumb-item + .breadcrumb-item {
padding-left: 0.5rem;
}
-
-.breadcrumb-item + .breadcrumb-item::before {
+.bootstrap .breadcrumb-item + .breadcrumb-item::before {
display: inline-block;
padding-right: 0.5rem;
color: #6c757d;
content: "/";
}
-
-.breadcrumb-item + .breadcrumb-item:hover::before {
+.bootstrap .breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: underline;
}
-
-.breadcrumb-item + .breadcrumb-item:hover::before {
+.bootstrap .breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: none;
}
-
-.breadcrumb-item.active {
+.bootstrap .breadcrumb-item.active {
color: #6c757d;
}
-
-.pagination {
+.bootstrap .pagination {
display: flex;
padding-left: 0;
list-style: none;
border-radius: 0.25rem;
}
-
-.page-link {
+.bootstrap .page-link {
position: relative;
display: block;
padding: 0.5rem 0.75rem;
@@ -5325,80 +4121,67 @@ input[type=button].btn-block {
background-color: #fff;
border: 1px solid #dee2e6;
}
-
-.page-link:hover {
+.bootstrap .page-link:hover {
z-index: 2;
color: #042953;
text-decoration: none;
background-color: #e9ecef;
border-color: #dee2e6;
}
-
-.page-link:focus {
+.bootstrap .page-link:focus {
z-index: 3;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(7, 78, 156, 0.25);
}
-
-.page-item:first-child .page-link {
+.bootstrap .page-item:first-child .page-link {
margin-left: 0;
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
-
-.page-item:last-child .page-link {
+.bootstrap .page-item:last-child .page-link {
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
-
-.page-item.active .page-link {
+.bootstrap .page-item.active .page-link {
z-index: 3;
color: #fff;
background-color: #074e9c;
border-color: #074e9c;
}
-
-.page-item.disabled .page-link {
+.bootstrap .page-item.disabled .page-link {
color: #6c757d;
pointer-events: none;
cursor: auto;
background-color: #fff;
border-color: #dee2e6;
}
-
-.pagination-lg .page-link {
+.bootstrap .pagination-lg .page-link {
padding: 0.75rem 1.5rem;
font-size: 1.125rem;
line-height: 1.5;
}
-
-.pagination-lg .page-item:first-child .page-link {
+.bootstrap .pagination-lg .page-item:first-child .page-link {
border-top-left-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
}
-
-.pagination-lg .page-item:last-child .page-link {
+.bootstrap .pagination-lg .page-item:last-child .page-link {
border-top-right-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
}
-
-.pagination-sm .page-link {
+.bootstrap .pagination-sm .page-link {
padding: 0.25rem 0.5rem;
font-size: 0.7875rem;
line-height: 1.5;
}
-
-.pagination-sm .page-item:first-child .page-link {
+.bootstrap .pagination-sm .page-item:first-child .page-link {
border-top-left-radius: 0.2rem;
border-bottom-left-radius: 0.2rem;
}
-
-.pagination-sm .page-item:last-child .page-link {
+.bootstrap .pagination-sm .page-item:last-child .page-link {
border-top-right-radius: 0.2rem;
border-bottom-right-radius: 0.2rem;
}
-
-.badge {
+.bootstrap .badge {
display: inline-block;
padding: 0.25em 0.4em;
font-size: 75%;
@@ -5410,349 +4193,275 @@ input[type=button].btn-block {
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
-
@media (prefers-reduced-motion: reduce) {
- .badge {
+ .bootstrap .badge {
transition: none;
}
}
-
-a.badge:hover,
-a.badge:focus {
+a.bootstrap .badge:hover, a.bootstrap .badge:focus {
text-decoration: none;
}
-.badge:empty {
+.bootstrap .badge:empty {
display: none;
}
-
-.btn .badge {
+.bootstrap .btn .badge {
position: relative;
top: -1px;
}
-
-.badge-pill {
+.bootstrap .badge-pill {
padding-right: 0.6em;
padding-left: 0.6em;
border-radius: 10rem;
}
-
-.badge-primary {
+.bootstrap .badge-primary {
color: #fff;
background-color: #074e9c;
}
-
-a.badge-primary:hover,
-a.badge-primary:focus {
+a.bootstrap .badge-primary:hover, a.bootstrap .badge-primary:focus {
color: #fff;
background-color: #05366b;
}
-
-a.badge-primary:focus,
-a.badge-primary.focus {
+a.bootstrap .badge-primary:focus, a.bootstrap .badge-primary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(7, 78, 156, 0.5);
}
-.badge-secondary {
+.bootstrap .badge-secondary {
color: #fff;
background-color: #6c757d;
}
-
-a.badge-secondary:hover,
-a.badge-secondary:focus {
+a.bootstrap .badge-secondary:hover, a.bootstrap .badge-secondary:focus {
color: #fff;
background-color: #545b62;
}
-
-a.badge-secondary:focus,
-a.badge-secondary.focus {
+a.bootstrap .badge-secondary:focus, a.bootstrap .badge-secondary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
-.badge-success {
+.bootstrap .badge-success {
color: #fff;
background-color: #38c172;
}
-
-a.badge-success:hover,
-a.badge-success:focus {
+a.bootstrap .badge-success:hover, a.bootstrap .badge-success:focus {
color: #fff;
background-color: #2d995b;
}
-
-a.badge-success:focus,
-a.badge-success.focus {
+a.bootstrap .badge-success:focus, a.bootstrap .badge-success.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
}
-.badge-info {
+.bootstrap .badge-info {
color: #212529;
background-color: #6cb2eb;
}
-
-a.badge-info:hover,
-a.badge-info:focus {
+a.bootstrap .badge-info:hover, a.bootstrap .badge-info:focus {
color: #212529;
background-color: #3f9ae5;
}
-
-a.badge-info:focus,
-a.badge-info.focus {
+a.bootstrap .badge-info:focus, a.bootstrap .badge-info.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}
-.badge-warning {
+.bootstrap .badge-warning {
color: #212529;
background-color: #ffed4a;
}
-
-a.badge-warning:hover,
-a.badge-warning:focus {
+a.bootstrap .badge-warning:hover, a.bootstrap .badge-warning:focus {
color: #212529;
background-color: #ffe817;
}
-
-a.badge-warning:focus,
-a.badge-warning.focus {
+a.bootstrap .badge-warning:focus, a.bootstrap .badge-warning.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}
-.badge-danger {
+.bootstrap .badge-danger {
color: #fff;
background-color: #d04d4a;
}
-
-a.badge-danger:hover,
-a.badge-danger:focus {
+a.bootstrap .badge-danger:hover, a.bootstrap .badge-danger:focus {
color: #fff;
background-color: #b73330;
}
-
-a.badge-danger:focus,
-a.badge-danger.focus {
+a.bootstrap .badge-danger:focus, a.bootstrap .badge-danger.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(208, 77, 74, 0.5);
}
-.badge-light {
+.bootstrap .badge-light {
color: #212529;
background-color: #f8f9fa;
}
-
-a.badge-light:hover,
-a.badge-light:focus {
+a.bootstrap .badge-light:hover, a.bootstrap .badge-light:focus {
color: #212529;
background-color: #dae0e5;
}
-
-a.badge-light:focus,
-a.badge-light.focus {
+a.bootstrap .badge-light:focus, a.bootstrap .badge-light.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
-.badge-dark {
+.bootstrap .badge-dark {
color: #fff;
background-color: #343a40;
}
-
-a.badge-dark:hover,
-a.badge-dark:focus {
+a.bootstrap .badge-dark:hover, a.bootstrap .badge-dark:focus {
color: #fff;
background-color: #1d2124;
}
-
-a.badge-dark:focus,
-a.badge-dark.focus {
+a.bootstrap .badge-dark:focus, a.bootstrap .badge-dark.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
-.jumbotron {
+.bootstrap .jumbotron {
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #e9ecef;
border-radius: 0.3rem;
}
-
@media (min-width: 576px) {
- .jumbotron {
+ .bootstrap .jumbotron {
padding: 4rem 2rem;
}
}
-
-.jumbotron-fluid {
+.bootstrap .jumbotron-fluid {
padding-right: 0;
padding-left: 0;
border-radius: 0;
}
-
-.alert {
+.bootstrap .alert {
position: relative;
padding: 0.75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
}
-
-.alert-heading {
+.bootstrap .alert-heading {
color: inherit;
}
-
-.alert-link {
+.bootstrap .alert-link {
font-weight: 700;
}
-
-.alert-dismissible {
+.bootstrap .alert-dismissible {
padding-right: 3.85rem;
}
-
-.alert-dismissible .close {
+.bootstrap .alert-dismissible .close {
position: absolute;
top: 0;
right: 0;
padding: 0.75rem 1.25rem;
color: inherit;
}
-
-.alert-primary {
+.bootstrap .alert-primary {
color: #042951;
background-color: #cddceb;
border-color: #bacde3;
}
-
-.alert-primary hr {
+.bootstrap .alert-primary hr {
border-top-color: #a8c0dc;
}
-
-.alert-primary .alert-link {
+.bootstrap .alert-primary .alert-link {
color: #021020;
}
-
-.alert-secondary {
+.bootstrap .alert-secondary {
color: #383d41;
background-color: #e2e3e5;
border-color: #d6d8db;
}
-
-.alert-secondary hr {
+.bootstrap .alert-secondary hr {
border-top-color: #c8cbcf;
}
-
-.alert-secondary .alert-link {
+.bootstrap .alert-secondary .alert-link {
color: #202326;
}
-
-.alert-success {
+.bootstrap .alert-success {
color: #1d643b;
background-color: #d7f3e3;
border-color: #c7eed8;
}
-
-.alert-success hr {
+.bootstrap .alert-success hr {
border-top-color: #b3e8ca;
}
-
-.alert-success .alert-link {
+.bootstrap .alert-success .alert-link {
color: #123c24;
}
-
-.alert-info {
+.bootstrap .alert-info {
color: #385d7a;
background-color: #e2f0fb;
border-color: #d6e9f9;
}
-
-.alert-info hr {
+.bootstrap .alert-info hr {
border-top-color: #c0ddf6;
}
-
-.alert-info .alert-link {
+.bootstrap .alert-info .alert-link {
color: #284257;
}
-
-.alert-warning {
+.bootstrap .alert-warning {
color: #857b26;
background-color: #fffbdb;
border-color: #fffacc;
}
-
-.alert-warning hr {
+.bootstrap .alert-warning hr {
border-top-color: #fff8b3;
}
-
-.alert-warning .alert-link {
+.bootstrap .alert-warning .alert-link {
color: #5d561b;
}
-
-.alert-danger {
+.bootstrap .alert-danger {
color: #6c2826;
background-color: #f6dbdb;
border-color: #f2cdcc;
}
-
-.alert-danger hr {
+.bootstrap .alert-danger hr {
border-top-color: #edb9b8;
}
-
-.alert-danger .alert-link {
+.bootstrap .alert-danger .alert-link {
color: #461a19;
}
-
-.alert-light {
+.bootstrap .alert-light {
color: #818182;
background-color: #fefefe;
border-color: #fdfdfe;
}
-
-.alert-light hr {
+.bootstrap .alert-light hr {
border-top-color: #ececf6;
}
-
-.alert-light .alert-link {
+.bootstrap .alert-light .alert-link {
color: #686868;
}
-
-.alert-dark {
+.bootstrap .alert-dark {
color: #1b1e21;
background-color: #d6d8d9;
border-color: #c6c8ca;
}
-
-.alert-dark hr {
+.bootstrap .alert-dark hr {
border-top-color: #b9bbbe;
}
-
-.alert-dark .alert-link {
+.bootstrap .alert-dark .alert-link {
color: #040505;
}
-
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 1rem 0;
}
-
to {
background-position: 0 0;
}
}
-
@keyframes progress-bar-stripes {
from {
background-position: 1rem 0;
}
-
to {
background-position: 0 0;
}
}
-
-.progress {
+.bootstrap .progress {
display: flex;
height: 1rem;
overflow: hidden;
@@ -5761,8 +4470,7 @@ a.badge-dark.focus {
border-radius: 0.25rem;
box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
-
-.progress-bar {
+.bootstrap .progress-bar {
display: flex;
flex-direction: column;
justify-content: center;
@@ -5773,405 +4481,320 @@ a.badge-dark.focus {
background-color: #074e9c;
transition: width 0.6s ease;
}
-
@media (prefers-reduced-motion: reduce) {
- .progress-bar {
+ .bootstrap .progress-bar {
transition: none;
}
}
-
-.progress-bar-striped {
+.bootstrap .progress-bar-striped {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 1rem 1rem;
}
-
-.progress-bar-animated {
+.bootstrap .progress-bar-animated {
-webkit-animation: progress-bar-stripes 1s linear infinite;
animation: progress-bar-stripes 1s linear infinite;
}
-
@media (prefers-reduced-motion: reduce) {
- .progress-bar-animated {
+ .bootstrap .progress-bar-animated {
-webkit-animation: none;
animation: none;
}
}
-
-.media {
+.bootstrap .media {
display: flex;
align-items: flex-start;
}
-
-.media-body {
+.bootstrap .media-body {
flex: 1;
}
-
-.list-group {
+.bootstrap .list-group {
display: flex;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
}
-
-.list-group-item-action {
+.bootstrap .list-group-item-action {
width: 100%;
color: #495057;
text-align: inherit;
}
-
-.list-group-item-action:hover,
-.list-group-item-action:focus {
+.bootstrap .list-group-item-action:hover, .bootstrap .list-group-item-action:focus {
z-index: 1;
color: #495057;
text-decoration: none;
background-color: #f8f9fa;
}
-
-.list-group-item-action:active {
+.bootstrap .list-group-item-action:active {
color: #212529;
background-color: #e9ecef;
}
-
-.list-group-item {
+.bootstrap .list-group-item {
position: relative;
display: block;
padding: 0.75rem 1.25rem;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
-
-.list-group-item:first-child {
+.bootstrap .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
-
-.list-group-item:last-child {
+.bootstrap .list-group-item:last-child {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
-
-.list-group-item.disabled,
-.list-group-item:disabled {
+.bootstrap .list-group-item.disabled, .bootstrap .list-group-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: #fff;
}
-
-.list-group-item.active {
+.bootstrap .list-group-item.active {
z-index: 2;
color: #fff;
background-color: #074e9c;
border-color: #074e9c;
}
-
-.list-group-item + .list-group-item {
+.bootstrap .list-group-item + .bootstrap .list-group-item {
border-top-width: 0;
}
-
-.list-group-item + .list-group-item.active {
+.bootstrap .list-group-item + .bootstrap .list-group-item.active {
margin-top: -1px;
border-top-width: 1px;
}
-
-.list-group-horizontal {
+.bootstrap .list-group-horizontal {
flex-direction: row;
}
-
-.list-group-horizontal .list-group-item:first-child {
+.bootstrap .list-group-horizontal .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
-
-.list-group-horizontal .list-group-item:last-child {
+.bootstrap .list-group-horizontal .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
-
-.list-group-horizontal .list-group-item.active {
+.bootstrap .list-group-horizontal .list-group-item.active {
margin-top: 0;
}
-
-.list-group-horizontal .list-group-item + .list-group-item {
+.bootstrap .list-group-horizontal .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
-
-.list-group-horizontal .list-group-item + .list-group-item.active {
+.bootstrap .list-group-horizontal .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
-
@media (min-width: 576px) {
- .list-group-horizontal-sm {
+ .bootstrap .list-group-horizontal-sm {
flex-direction: row;
}
-
- .list-group-horizontal-sm .list-group-item:first-child {
+ .bootstrap .list-group-horizontal-sm .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
-
- .list-group-horizontal-sm .list-group-item:last-child {
+ .bootstrap .list-group-horizontal-sm .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
-
- .list-group-horizontal-sm .list-group-item.active {
+ .bootstrap .list-group-horizontal-sm .list-group-item.active {
margin-top: 0;
}
-
- .list-group-horizontal-sm .list-group-item + .list-group-item {
+ .bootstrap .list-group-horizontal-sm .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
-
- .list-group-horizontal-sm .list-group-item + .list-group-item.active {
+ .bootstrap .list-group-horizontal-sm .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
-
@media (min-width: 768px) {
- .list-group-horizontal-md {
+ .bootstrap .list-group-horizontal-md {
flex-direction: row;
}
-
- .list-group-horizontal-md .list-group-item:first-child {
+ .bootstrap .list-group-horizontal-md .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
-
- .list-group-horizontal-md .list-group-item:last-child {
+ .bootstrap .list-group-horizontal-md .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
-
- .list-group-horizontal-md .list-group-item.active {
+ .bootstrap .list-group-horizontal-md .list-group-item.active {
margin-top: 0;
}
-
- .list-group-horizontal-md .list-group-item + .list-group-item {
+ .bootstrap .list-group-horizontal-md .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
-
- .list-group-horizontal-md .list-group-item + .list-group-item.active {
+ .bootstrap .list-group-horizontal-md .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
-
@media (min-width: 992px) {
- .list-group-horizontal-lg {
+ .bootstrap .list-group-horizontal-lg {
flex-direction: row;
}
-
- .list-group-horizontal-lg .list-group-item:first-child {
+ .bootstrap .list-group-horizontal-lg .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
-
- .list-group-horizontal-lg .list-group-item:last-child {
+ .bootstrap .list-group-horizontal-lg .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
-
- .list-group-horizontal-lg .list-group-item.active {
+ .bootstrap .list-group-horizontal-lg .list-group-item.active {
margin-top: 0;
}
-
- .list-group-horizontal-lg .list-group-item + .list-group-item {
+ .bootstrap .list-group-horizontal-lg .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
-
- .list-group-horizontal-lg .list-group-item + .list-group-item.active {
+ .bootstrap .list-group-horizontal-lg .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
-
@media (min-width: 1200px) {
- .list-group-horizontal-xl {
+ .bootstrap .list-group-horizontal-xl {
flex-direction: row;
}
-
- .list-group-horizontal-xl .list-group-item:first-child {
+ .bootstrap .list-group-horizontal-xl .list-group-item:first-child {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
-
- .list-group-horizontal-xl .list-group-item:last-child {
+ .bootstrap .list-group-horizontal-xl .list-group-item:last-child {
border-top-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
-
- .list-group-horizontal-xl .list-group-item.active {
+ .bootstrap .list-group-horizontal-xl .list-group-item.active {
margin-top: 0;
}
-
- .list-group-horizontal-xl .list-group-item + .list-group-item {
+ .bootstrap .list-group-horizontal-xl .list-group-item + .list-group-item {
border-top-width: 1px;
border-left-width: 0;
}
-
- .list-group-horizontal-xl .list-group-item + .list-group-item.active {
+ .bootstrap .list-group-horizontal-xl .list-group-item + .list-group-item.active {
margin-left: -1px;
border-left-width: 1px;
}
}
-
-.list-group-flush .list-group-item {
+.bootstrap .list-group-flush .list-group-item {
border-right-width: 0;
border-left-width: 0;
border-radius: 0;
}
-
-.list-group-flush .list-group-item:first-child {
+.bootstrap .list-group-flush .list-group-item:first-child {
border-top-width: 0;
}
-
-.list-group-flush:last-child .list-group-item:last-child {
+.bootstrap .list-group-flush:last-child .list-group-item:last-child {
border-bottom-width: 0;
}
-
-.list-group-item-primary {
+.bootstrap .list-group-item-primary {
color: #042951;
background-color: #bacde3;
}
-
-.list-group-item-primary.list-group-item-action:hover,
-.list-group-item-primary.list-group-item-action:focus {
+.bootstrap .list-group-item-primary.list-group-item-action:hover, .bootstrap .list-group-item-primary.list-group-item-action:focus {
color: #042951;
background-color: #a8c0dc;
}
-
-.list-group-item-primary.list-group-item-action.active {
+.bootstrap .list-group-item-primary.list-group-item-action.active {
color: #fff;
background-color: #042951;
border-color: #042951;
}
-
-.list-group-item-secondary {
+.bootstrap .list-group-item-secondary {
color: #383d41;
background-color: #d6d8db;
}
-
-.list-group-item-secondary.list-group-item-action:hover,
-.list-group-item-secondary.list-group-item-action:focus {
+.bootstrap .list-group-item-secondary.list-group-item-action:hover, .bootstrap .list-group-item-secondary.list-group-item-action:focus {
color: #383d41;
background-color: #c8cbcf;
}
-
-.list-group-item-secondary.list-group-item-action.active {
+.bootstrap .list-group-item-secondary.list-group-item-action.active {
color: #fff;
background-color: #383d41;
border-color: #383d41;
}
-
-.list-group-item-success {
+.bootstrap .list-group-item-success {
color: #1d643b;
background-color: #c7eed8;
}
-
-.list-group-item-success.list-group-item-action:hover,
-.list-group-item-success.list-group-item-action:focus {
+.bootstrap .list-group-item-success.list-group-item-action:hover, .bootstrap .list-group-item-success.list-group-item-action:focus {
color: #1d643b;
background-color: #b3e8ca;
}
-
-.list-group-item-success.list-group-item-action.active {
+.bootstrap .list-group-item-success.list-group-item-action.active {
color: #fff;
background-color: #1d643b;
border-color: #1d643b;
}
-
-.list-group-item-info {
+.bootstrap .list-group-item-info {
color: #385d7a;
background-color: #d6e9f9;
}
-
-.list-group-item-info.list-group-item-action:hover,
-.list-group-item-info.list-group-item-action:focus {
+.bootstrap .list-group-item-info.list-group-item-action:hover, .bootstrap .list-group-item-info.list-group-item-action:focus {
color: #385d7a;
background-color: #c0ddf6;
}
-
-.list-group-item-info.list-group-item-action.active {
+.bootstrap .list-group-item-info.list-group-item-action.active {
color: #fff;
background-color: #385d7a;
border-color: #385d7a;
}
-
-.list-group-item-warning {
+.bootstrap .list-group-item-warning {
color: #857b26;
background-color: #fffacc;
}
-
-.list-group-item-warning.list-group-item-action:hover,
-.list-group-item-warning.list-group-item-action:focus {
+.bootstrap .list-group-item-warning.list-group-item-action:hover, .bootstrap .list-group-item-warning.list-group-item-action:focus {
color: #857b26;
background-color: #fff8b3;
}
-
-.list-group-item-warning.list-group-item-action.active {
+.bootstrap .list-group-item-warning.list-group-item-action.active {
color: #fff;
background-color: #857b26;
border-color: #857b26;
}
-
-.list-group-item-danger {
+.bootstrap .list-group-item-danger {
color: #6c2826;
background-color: #f2cdcc;
}
-
-.list-group-item-danger.list-group-item-action:hover,
-.list-group-item-danger.list-group-item-action:focus {
+.bootstrap .list-group-item-danger.list-group-item-action:hover, .bootstrap .list-group-item-danger.list-group-item-action:focus {
color: #6c2826;
background-color: #edb9b8;
}
-
-.list-group-item-danger.list-group-item-action.active {
+.bootstrap .list-group-item-danger.list-group-item-action.active {
color: #fff;
background-color: #6c2826;
border-color: #6c2826;
}
-
-.list-group-item-light {
+.bootstrap .list-group-item-light {
color: #818182;
background-color: #fdfdfe;
}
-
-.list-group-item-light.list-group-item-action:hover,
-.list-group-item-light.list-group-item-action:focus {
+.bootstrap .list-group-item-light.list-group-item-action:hover, .bootstrap .list-group-item-light.list-group-item-action:focus {
color: #818182;
background-color: #ececf6;
}
-
-.list-group-item-light.list-group-item-action.active {
+.bootstrap .list-group-item-light.list-group-item-action.active {
color: #fff;
background-color: #818182;
border-color: #818182;
}
-
-.list-group-item-dark {
+.bootstrap .list-group-item-dark {
color: #1b1e21;
background-color: #c6c8ca;
}
-
-.list-group-item-dark.list-group-item-action:hover,
-.list-group-item-dark.list-group-item-action:focus {
+.bootstrap .list-group-item-dark.list-group-item-action:hover, .bootstrap .list-group-item-dark.list-group-item-action:focus {
color: #1b1e21;
background-color: #b9bbbe;
}
-
-.list-group-item-dark.list-group-item-action.active {
+.bootstrap .list-group-item-dark.list-group-item-action.active {
color: #fff;
background-color: #1b1e21;
border-color: #1b1e21;
}
-
-.close {
+.bootstrap .close {
float: right;
font-size: 1.35rem;
font-weight: 700;
@@ -6180,18 +4803,14 @@ a.badge-dark.focus {
text-shadow: 0 1px 0 #fff;
opacity: 0.5;
}
-
-.close:hover {
+.bootstrap .close:hover {
color: #000;
text-decoration: none;
}
-
-.close:not(:disabled):not(.disabled):hover,
-.close:not(:disabled):not(.disabled):focus {
+.bootstrap .close:not(:disabled):not(.disabled):hover, .bootstrap .close:not(:disabled):not(.disabled):focus {
opacity: 0.75;
}
-
-button.close {
+.bootstrap button.close {
padding: 0;
background-color: transparent;
border: 0;
@@ -6199,12 +4818,10 @@ button.close {
-moz-appearance: none;
appearance: none;
}
-
-a.close.disabled {
+.bootstrap a.close.disabled {
pointer-events: none;
}
-
-.toast {
+.bootstrap .toast {
max-width: 350px;
overflow: hidden;
font-size: 0.875rem;
@@ -6217,25 +4834,20 @@ a.close.disabled {
opacity: 0;
border-radius: 0.25rem;
}
-
-.toast:not(:last-child) {
+.bootstrap .toast:not(:last-child) {
margin-bottom: 0.75rem;
}
-
-.toast.showing {
+.bootstrap .toast.showing {
opacity: 1;
}
-
-.toast.show {
+.bootstrap .toast.show {
display: block;
opacity: 1;
}
-
-.toast.hide {
+.bootstrap .toast.hide {
display: none;
}
-
-.toast-header {
+.bootstrap .toast-header {
display: flex;
align-items: center;
padding: 0.25rem 0.75rem;
@@ -6244,21 +4856,17 @@ a.close.disabled {
background-clip: padding-box;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
-
-.toast-body {
+.bootstrap .toast-body {
padding: 0.75rem;
}
-
-.modal-open {
+.bootstrap .modal-open {
overflow: hidden;
}
-
-.modal-open .modal {
+.bootstrap .modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
-
-.modal {
+.bootstrap .modal {
position: fixed;
top: 0;
left: 0;
@@ -6269,79 +4877,64 @@ a.close.disabled {
overflow: hidden;
outline: 0;
}
-
-.modal-dialog {
+.bootstrap .modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
-
-.modal.fade .modal-dialog {
+.modal.fade .bootstrap .modal-dialog {
transition: transform 0.3s ease-out;
transform: translate(0, -50px);
}
-
@media (prefers-reduced-motion: reduce) {
- .modal.fade .modal-dialog {
+ .modal.fade .bootstrap .modal-dialog {
transition: none;
}
}
-
-.modal.show .modal-dialog {
+.modal.show .bootstrap .modal-dialog {
transform: none;
}
-
-.modal.modal-static .modal-dialog {
+.modal.modal-static .bootstrap .modal-dialog {
transform: scale(1.02);
}
-
-.modal-dialog-scrollable {
+.bootstrap .modal-dialog-scrollable {
display: flex;
max-height: calc(100% - 1rem);
}
-
-.modal-dialog-scrollable .modal-content {
+.bootstrap .modal-dialog-scrollable .modal-content {
max-height: calc(100vh - 1rem);
overflow: hidden;
}
-
-.modal-dialog-scrollable .modal-header,
-.modal-dialog-scrollable .modal-footer {
+.bootstrap .modal-dialog-scrollable .modal-header,
+.bootstrap .modal-dialog-scrollable .modal-footer {
flex-shrink: 0;
}
-
-.modal-dialog-scrollable .modal-body {
+.bootstrap .modal-dialog-scrollable .modal-body {
overflow-y: auto;
}
-
-.modal-dialog-centered {
+.bootstrap .modal-dialog-centered {
display: flex;
align-items: center;
min-height: calc(100% - 1rem);
}
-
-.modal-dialog-centered::before {
+.bootstrap .modal-dialog-centered::before {
display: block;
height: calc(100vh - 1rem);
content: "";
}
-
-.modal-dialog-centered.modal-dialog-scrollable {
+.bootstrap .modal-dialog-centered.modal-dialog-scrollable {
flex-direction: column;
justify-content: center;
height: 100%;
}
-
-.modal-dialog-centered.modal-dialog-scrollable .modal-content {
+.bootstrap .modal-dialog-centered.modal-dialog-scrollable .modal-content {
max-height: none;
}
-
-.modal-dialog-centered.modal-dialog-scrollable::before {
+.bootstrap .modal-dialog-centered.modal-dialog-scrollable::before {
content: none;
}
-
-.modal-content {
+.bootstrap .modal-content {
position: relative;
display: flex;
flex-direction: column;
@@ -6354,8 +4947,7 @@ a.close.disabled {
box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
outline: 0;
}
-
-.modal-backdrop {
+.bootstrap .modal-backdrop {
position: fixed;
top: 0;
left: 0;
@@ -6364,16 +4956,13 @@ a.close.disabled {
height: 100vh;
background-color: #000;
}
-
-.modal-backdrop.fade {
+.bootstrap .modal-backdrop.fade {
opacity: 0;
}
-
-.modal-backdrop.show {
+.bootstrap .modal-backdrop.show {
opacity: 0.5;
}
-
-.modal-header {
+.bootstrap .modal-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
@@ -6382,24 +4971,20 @@ a.close.disabled {
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
-
-.modal-header .close {
+.bootstrap .modal-header .close {
padding: 1rem 1rem;
margin: -1rem -1rem -1rem auto;
}
-
-.modal-title {
+.bootstrap .modal-title {
margin-bottom: 0;
line-height: 1.6;
}
-
-.modal-body {
+.bootstrap .modal-body {
position: relative;
flex: 1 1 auto;
padding: 1rem;
}
-
-.modal-footer {
+.bootstrap .modal-footer {
display: flex;
flex-wrap: wrap;
align-items: center;
@@ -6409,64 +4994,52 @@ a.close.disabled {
border-bottom-right-radius: calc(0.3rem - 1px);
border-bottom-left-radius: calc(0.3rem - 1px);
}
-
-.modal-footer > * {
+.bootstrap .modal-footer > * {
margin: 0.25rem;
}
-
-.modal-scrollbar-measure {
+.bootstrap .modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
-
@media (min-width: 576px) {
- .modal-dialog {
+ .bootstrap .modal-dialog {
max-width: 500px;
margin: 1.75rem auto;
}
-
- .modal-dialog-scrollable {
+ .bootstrap .modal-dialog-scrollable {
max-height: calc(100% - 3.5rem);
}
-
- .modal-dialog-scrollable .modal-content {
+ .bootstrap .modal-dialog-scrollable .modal-content {
max-height: calc(100vh - 3.5rem);
}
-
- .modal-dialog-centered {
+ .bootstrap .modal-dialog-centered {
min-height: calc(100% - 3.5rem);
}
-
- .modal-dialog-centered::before {
+ .bootstrap .modal-dialog-centered::before {
height: calc(100vh - 3.5rem);
}
-
- .modal-content {
+ .bootstrap .modal-content {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}
-
- .modal-sm {
+ .bootstrap .modal-sm {
max-width: 300px;
}
}
-
@media (min-width: 992px) {
- .modal-lg,
- .modal-xl {
+ .bootstrap .modal-lg,
+.bootstrap .modal-xl {
max-width: 800px;
}
}
-
@media (min-width: 1200px) {
- .modal-xl {
+ .bootstrap .modal-xl {
max-width: 1140px;
}
}
-
-.tooltip {
+.bootstrap .tooltip {
position: absolute;
z-index: 1070;
display: block;
@@ -6489,98 +5062,70 @@ a.close.disabled {
word-wrap: break-word;
opacity: 0;
}
-
-.tooltip.show {
+.bootstrap .tooltip.show {
opacity: 0.9;
}
-
-.tooltip .arrow {
+.bootstrap .tooltip .arrow {
position: absolute;
display: block;
width: 0.8rem;
height: 0.4rem;
}
-
-.tooltip .arrow::before {
+.bootstrap .tooltip .arrow::before {
position: absolute;
content: "";
border-color: transparent;
border-style: solid;
}
-
-.bs-tooltip-top,
-.bs-tooltip-auto[x-placement^=top] {
+.bootstrap .bs-tooltip-top, .bootstrap .bs-tooltip-auto[x-placement^=top] {
padding: 0.4rem 0;
}
-
-.bs-tooltip-top .arrow,
-.bs-tooltip-auto[x-placement^=top] .arrow {
+.bootstrap .bs-tooltip-top .arrow, .bootstrap .bs-tooltip-auto[x-placement^=top] .arrow {
bottom: 0;
}
-
-.bs-tooltip-top .arrow::before,
-.bs-tooltip-auto[x-placement^=top] .arrow::before {
+.bootstrap .bs-tooltip-top .arrow::before, .bootstrap .bs-tooltip-auto[x-placement^=top] .arrow::before {
top: 0;
border-width: 0.4rem 0.4rem 0;
border-top-color: #000;
}
-
-.bs-tooltip-right,
-.bs-tooltip-auto[x-placement^=right] {
+.bootstrap .bs-tooltip-right, .bootstrap .bs-tooltip-auto[x-placement^=right] {
padding: 0 0.4rem;
}
-
-.bs-tooltip-right .arrow,
-.bs-tooltip-auto[x-placement^=right] .arrow {
+.bootstrap .bs-tooltip-right .arrow, .bootstrap .bs-tooltip-auto[x-placement^=right] .arrow {
left: 0;
width: 0.4rem;
height: 0.8rem;
}
-
-.bs-tooltip-right .arrow::before,
-.bs-tooltip-auto[x-placement^=right] .arrow::before {
+.bootstrap .bs-tooltip-right .arrow::before, .bootstrap .bs-tooltip-auto[x-placement^=right] .arrow::before {
right: 0;
border-width: 0.4rem 0.4rem 0.4rem 0;
border-right-color: #000;
}
-
-.bs-tooltip-bottom,
-.bs-tooltip-auto[x-placement^=bottom] {
+.bootstrap .bs-tooltip-bottom, .bootstrap .bs-tooltip-auto[x-placement^=bottom] {
padding: 0.4rem 0;
}
-
-.bs-tooltip-bottom .arrow,
-.bs-tooltip-auto[x-placement^=bottom] .arrow {
+.bootstrap .bs-tooltip-bottom .arrow, .bootstrap .bs-tooltip-auto[x-placement^=bottom] .arrow {
top: 0;
}
-
-.bs-tooltip-bottom .arrow::before,
-.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
+.bootstrap .bs-tooltip-bottom .arrow::before, .bootstrap .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
bottom: 0;
border-width: 0 0.4rem 0.4rem;
border-bottom-color: #000;
}
-
-.bs-tooltip-left,
-.bs-tooltip-auto[x-placement^=left] {
+.bootstrap .bs-tooltip-left, .bootstrap .bs-tooltip-auto[x-placement^=left] {
padding: 0 0.4rem;
}
-
-.bs-tooltip-left .arrow,
-.bs-tooltip-auto[x-placement^=left] .arrow {
+.bootstrap .bs-tooltip-left .arrow, .bootstrap .bs-tooltip-auto[x-placement^=left] .arrow {
right: 0;
width: 0.4rem;
height: 0.8rem;
}
-
-.bs-tooltip-left .arrow::before,
-.bs-tooltip-auto[x-placement^=left] .arrow::before {
+.bootstrap .bs-tooltip-left .arrow::before, .bootstrap .bs-tooltip-auto[x-placement^=left] .arrow::before {
left: 0;
border-width: 0.4rem 0 0.4rem 0.4rem;
border-left-color: #000;
}
-
-.tooltip-inner {
+.bootstrap .tooltip-inner {
max-width: 200px;
padding: 0.25rem 0.5rem;
color: #fff;
@@ -6588,8 +5133,7 @@ a.close.disabled {
background-color: #000;
border-radius: 0.25rem;
}
-
-.popover {
+.bootstrap .popover {
position: absolute;
top: 0;
left: 0;
@@ -6618,101 +5162,72 @@ a.close.disabled {
border-radius: 0.3rem;
box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
-
-.popover .arrow {
+.bootstrap .popover .arrow {
position: absolute;
display: block;
width: 1rem;
height: 0.5rem;
margin: 0 0.3rem;
}
-
-.popover .arrow::before,
-.popover .arrow::after {
+.bootstrap .popover .arrow::before, .bootstrap .popover .arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
-
-.bs-popover-top,
-.bs-popover-auto[x-placement^=top] {
+.bootstrap .bs-popover-top, .bootstrap .bs-popover-auto[x-placement^=top] {
margin-bottom: 0.5rem;
}
-
-.bs-popover-top > .arrow,
-.bs-popover-auto[x-placement^=top] > .arrow {
+.bootstrap .bs-popover-top > .arrow, .bootstrap .bs-popover-auto[x-placement^=top] > .arrow {
bottom: calc(-0.5rem - 1px);
}
-
-.bs-popover-top > .arrow::before,
-.bs-popover-auto[x-placement^=top] > .arrow::before {
+.bootstrap .bs-popover-top > .arrow::before, .bootstrap .bs-popover-auto[x-placement^=top] > .arrow::before {
bottom: 0;
border-width: 0.5rem 0.5rem 0;
border-top-color: rgba(0, 0, 0, 0.25);
}
-
-.bs-popover-top > .arrow::after,
-.bs-popover-auto[x-placement^=top] > .arrow::after {
+.bootstrap .bs-popover-top > .arrow::after, .bootstrap .bs-popover-auto[x-placement^=top] > .arrow::after {
bottom: 1px;
border-width: 0.5rem 0.5rem 0;
border-top-color: #fff;
}
-
-.bs-popover-right,
-.bs-popover-auto[x-placement^=right] {
+.bootstrap .bs-popover-right, .bootstrap .bs-popover-auto[x-placement^=right] {
margin-left: 0.5rem;
}
-
-.bs-popover-right > .arrow,
-.bs-popover-auto[x-placement^=right] > .arrow {
+.bootstrap .bs-popover-right > .arrow, .bootstrap .bs-popover-auto[x-placement^=right] > .arrow {
left: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
-
-.bs-popover-right > .arrow::before,
-.bs-popover-auto[x-placement^=right] > .arrow::before {
+.bootstrap .bs-popover-right > .arrow::before, .bootstrap .bs-popover-auto[x-placement^=right] > .arrow::before {
left: 0;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: rgba(0, 0, 0, 0.25);
}
-
-.bs-popover-right > .arrow::after,
-.bs-popover-auto[x-placement^=right] > .arrow::after {
+.bootstrap .bs-popover-right > .arrow::after, .bootstrap .bs-popover-auto[x-placement^=right] > .arrow::after {
left: 1px;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: #fff;
}
-
-.bs-popover-bottom,
-.bs-popover-auto[x-placement^=bottom] {
+.bootstrap .bs-popover-bottom, .bootstrap .bs-popover-auto[x-placement^=bottom] {
margin-top: 0.5rem;
}
-
-.bs-popover-bottom > .arrow,
-.bs-popover-auto[x-placement^=bottom] > .arrow {
+.bootstrap .bs-popover-bottom > .arrow, .bootstrap .bs-popover-auto[x-placement^=bottom] > .arrow {
top: calc(-0.5rem - 1px);
}
-
-.bs-popover-bottom > .arrow::before,
-.bs-popover-auto[x-placement^=bottom] > .arrow::before {
+.bootstrap .bs-popover-bottom > .arrow::before, .bootstrap .bs-popover-auto[x-placement^=bottom] > .arrow::before {
top: 0;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: rgba(0, 0, 0, 0.25);
}
-
-.bs-popover-bottom > .arrow::after,
-.bs-popover-auto[x-placement^=bottom] > .arrow::after {
+.bootstrap .bs-popover-bottom > .arrow::after, .bootstrap .bs-popover-auto[x-placement^=bottom] > .arrow::after {
top: 1px;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: #fff;
}
-
-.bs-popover-bottom .popover-header::before,
-.bs-popover-auto[x-placement^=bottom] .popover-header::before {
+.bootstrap .bs-popover-bottom .popover-header::before, .bootstrap .bs-popover-auto[x-placement^=bottom] .popover-header::before {
position: absolute;
top: 0;
left: 50%;
@@ -6722,35 +5237,26 @@ a.close.disabled {
content: "";
border-bottom: 1px solid #f7f7f7;
}
-
-.bs-popover-left,
-.bs-popover-auto[x-placement^=left] {
+.bootstrap .bs-popover-left, .bootstrap .bs-popover-auto[x-placement^=left] {
margin-right: 0.5rem;
}
-
-.bs-popover-left > .arrow,
-.bs-popover-auto[x-placement^=left] > .arrow {
+.bootstrap .bs-popover-left > .arrow, .bootstrap .bs-popover-auto[x-placement^=left] > .arrow {
right: calc(-0.5rem - 1px);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
-
-.bs-popover-left > .arrow::before,
-.bs-popover-auto[x-placement^=left] > .arrow::before {
+.bootstrap .bs-popover-left > .arrow::before, .bootstrap .bs-popover-auto[x-placement^=left] > .arrow::before {
right: 0;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: rgba(0, 0, 0, 0.25);
}
-
-.bs-popover-left > .arrow::after,
-.bs-popover-auto[x-placement^=left] > .arrow::after {
+.bootstrap .bs-popover-left > .arrow::after, .bootstrap .bs-popover-auto[x-placement^=left] > .arrow::after {
right: 1px;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: #fff;
}
-
-.popover-header {
+.bootstrap .popover-header {
padding: 0.5rem 0.75rem;
margin-bottom: 0;
font-size: 0.9rem;
@@ -6759,37 +5265,30 @@ a.close.disabled {
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
-
-.popover-header:empty {
+.bootstrap .popover-header:empty {
display: none;
}
-
-.popover-body {
+.bootstrap .popover-body {
padding: 0.5rem 0.75rem;
color: #212529;
}
-
-.carousel {
+.bootstrap .carousel {
position: relative;
}
-
-.carousel.pointer-event {
+.bootstrap .carousel.pointer-event {
touch-action: pan-y;
}
-
-.carousel-inner {
+.bootstrap .carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
-
-.carousel-inner::after {
+.bootstrap .carousel-inner::after {
display: block;
clear: both;
content: "";
}
-
-.carousel-item {
+.bootstrap .carousel-item {
position: relative;
display: none;
float: left;
@@ -6799,58 +5298,49 @@ a.close.disabled {
backface-visibility: hidden;
transition: transform 0.6s ease-in-out;
}
-
@media (prefers-reduced-motion: reduce) {
- .carousel-item {
+ .bootstrap .carousel-item {
transition: none;
}
}
-
-.carousel-item.active,
-.carousel-item-next,
-.carousel-item-prev {
+.bootstrap .carousel-item.active,
+.bootstrap .carousel-item-next,
+.bootstrap .carousel-item-prev {
display: block;
}
-
-.carousel-item-next:not(.carousel-item-left),
-.active.carousel-item-right {
+.bootstrap .carousel-item-next:not(.carousel-item-left),
+.bootstrap .active.carousel-item-right {
transform: translateX(100%);
}
-
-.carousel-item-prev:not(.carousel-item-right),
-.active.carousel-item-left {
+.bootstrap .carousel-item-prev:not(.carousel-item-right),
+.bootstrap .active.carousel-item-left {
transform: translateX(-100%);
}
-
-.carousel-fade .carousel-item {
+.bootstrap .carousel-fade .carousel-item {
opacity: 0;
transition-property: opacity;
transform: none;
}
-
-.carousel-fade .carousel-item.active,
-.carousel-fade .carousel-item-next.carousel-item-left,
-.carousel-fade .carousel-item-prev.carousel-item-right {
+.bootstrap .carousel-fade .carousel-item.active,
+.bootstrap .carousel-fade .carousel-item-next.carousel-item-left,
+.bootstrap .carousel-fade .carousel-item-prev.carousel-item-right {
z-index: 1;
opacity: 1;
}
-
-.carousel-fade .active.carousel-item-left,
-.carousel-fade .active.carousel-item-right {
+.bootstrap .carousel-fade .active.carousel-item-left,
+.bootstrap .carousel-fade .active.carousel-item-right {
z-index: 0;
opacity: 0;
transition: opacity 0s 0.6s;
}
-
@media (prefers-reduced-motion: reduce) {
- .carousel-fade .active.carousel-item-left,
- .carousel-fade .active.carousel-item-right {
+ .bootstrap .carousel-fade .active.carousel-item-left,
+.bootstrap .carousel-fade .active.carousel-item-right {
transition: none;
}
}
-
-.carousel-control-prev,
-.carousel-control-next {
+.bootstrap .carousel-control-prev,
+.bootstrap .carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
@@ -6864,49 +5354,40 @@ a.close.disabled {
opacity: 0.5;
transition: opacity 0.15s ease;
}
-
@media (prefers-reduced-motion: reduce) {
- .carousel-control-prev,
- .carousel-control-next {
+ .bootstrap .carousel-control-prev,
+.bootstrap .carousel-control-next {
transition: none;
}
}
-
-.carousel-control-prev:hover,
-.carousel-control-prev:focus,
-.carousel-control-next:hover,
-.carousel-control-next:focus {
+.bootstrap .carousel-control-prev:hover, .bootstrap .carousel-control-prev:focus,
+.bootstrap .carousel-control-next:hover,
+.bootstrap .carousel-control-next:focus {
color: #fff;
text-decoration: none;
outline: 0;
opacity: 0.9;
}
-
-.carousel-control-prev {
+.bootstrap .carousel-control-prev {
left: 0;
}
-
-.carousel-control-next {
+.bootstrap .carousel-control-next {
right: 0;
}
-
-.carousel-control-prev-icon,
-.carousel-control-next-icon {
+.bootstrap .carousel-control-prev-icon,
+.bootstrap .carousel-control-next-icon {
display: inline-block;
width: 20px;
height: 20px;
background: no-repeat 50%/100% 100%;
}
-
-.carousel-control-prev-icon {
+.bootstrap .carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
-
-.carousel-control-next-icon {
+.bootstrap .carousel-control-next-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
-
-.carousel-indicators {
+.bootstrap .carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
@@ -6919,8 +5400,7 @@ a.close.disabled {
margin-left: 15%;
list-style: none;
}
-
-.carousel-indicators li {
+.bootstrap .carousel-indicators li {
box-sizing: content-box;
flex: 0 1 auto;
width: 30px;
@@ -6936,18 +5416,15 @@ a.close.disabled {
opacity: 0.5;
transition: opacity 0.6s ease;
}
-
@media (prefers-reduced-motion: reduce) {
- .carousel-indicators li {
+ .bootstrap .carousel-indicators li {
transition: none;
}
}
-
-.carousel-indicators .active {
+.bootstrap .carousel-indicators .active {
opacity: 1;
}
-
-.carousel-caption {
+.bootstrap .carousel-caption {
position: absolute;
right: 15%;
bottom: 20px;
@@ -6958,20 +5435,17 @@ a.close.disabled {
color: #fff;
text-align: center;
}
-
@-webkit-keyframes spinner-border {
to {
transform: rotate(360deg);
}
}
-
@keyframes spinner-border {
to {
transform: rotate(360deg);
}
}
-
-.spinner-border {
+.bootstrap .spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
@@ -6982,34 +5456,28 @@ a.close.disabled {
-webkit-animation: spinner-border 0.75s linear infinite;
animation: spinner-border 0.75s linear infinite;
}
-
-.spinner-border-sm {
+.bootstrap .spinner-border-sm {
width: 1rem;
height: 1rem;
border-width: 0.2em;
}
-
@-webkit-keyframes spinner-grow {
0% {
transform: scale(0);
}
-
50% {
opacity: 1;
}
}
-
@keyframes spinner-grow {
0% {
transform: scale(0);
}
-
50% {
opacity: 1;
}
}
-
-.spinner-grow {
+.bootstrap .spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
@@ -7020,502 +5488,382 @@ a.close.disabled {
-webkit-animation: spinner-grow 0.75s linear infinite;
animation: spinner-grow 0.75s linear infinite;
}
-
-.spinner-grow-sm {
+.bootstrap .spinner-grow-sm {
width: 1rem;
height: 1rem;
}
-
-.align-baseline {
+.bootstrap .align-baseline {
vertical-align: baseline !important;
}
-
-.align-top {
+.bootstrap .align-top {
vertical-align: top !important;
}
-
-.align-middle {
+.bootstrap .align-middle {
vertical-align: middle !important;
}
-
-.align-bottom {
+.bootstrap .align-bottom {
vertical-align: bottom !important;
}
-
-.align-text-bottom {
+.bootstrap .align-text-bottom {
vertical-align: text-bottom !important;
}
-
-.align-text-top {
+.bootstrap .align-text-top {
vertical-align: text-top !important;
}
-
-.bg-primary {
+.bootstrap .bg-primary {
background-color: #074e9c !important;
}
-
-a.bg-primary:hover,
-a.bg-primary:focus,
-button.bg-primary:hover,
-button.bg-primary:focus {
+.bootstrap a.bg-primary:hover, .bootstrap a.bg-primary:focus,
+.bootstrap button.bg-primary:hover,
+.bootstrap button.bg-primary:focus {
background-color: #05366b !important;
}
-
-.bg-secondary {
+.bootstrap .bg-secondary {
background-color: #6c757d !important;
}
-
-a.bg-secondary:hover,
-a.bg-secondary:focus,
-button.bg-secondary:hover,
-button.bg-secondary:focus {
+.bootstrap a.bg-secondary:hover, .bootstrap a.bg-secondary:focus,
+.bootstrap button.bg-secondary:hover,
+.bootstrap button.bg-secondary:focus {
background-color: #545b62 !important;
}
-
-.bg-success {
+.bootstrap .bg-success {
background-color: #38c172 !important;
}
-
-a.bg-success:hover,
-a.bg-success:focus,
-button.bg-success:hover,
-button.bg-success:focus {
+.bootstrap a.bg-success:hover, .bootstrap a.bg-success:focus,
+.bootstrap button.bg-success:hover,
+.bootstrap button.bg-success:focus {
background-color: #2d995b !important;
}
-
-.bg-info {
+.bootstrap .bg-info {
background-color: #6cb2eb !important;
}
-
-a.bg-info:hover,
-a.bg-info:focus,
-button.bg-info:hover,
-button.bg-info:focus {
+.bootstrap a.bg-info:hover, .bootstrap a.bg-info:focus,
+.bootstrap button.bg-info:hover,
+.bootstrap button.bg-info:focus {
background-color: #3f9ae5 !important;
}
-
-.bg-warning {
+.bootstrap .bg-warning {
background-color: #ffed4a !important;
}
-
-a.bg-warning:hover,
-a.bg-warning:focus,
-button.bg-warning:hover,
-button.bg-warning:focus {
+.bootstrap a.bg-warning:hover, .bootstrap a.bg-warning:focus,
+.bootstrap button.bg-warning:hover,
+.bootstrap button.bg-warning:focus {
background-color: #ffe817 !important;
}
-
-.bg-danger {
+.bootstrap .bg-danger {
background-color: #d04d4a !important;
}
-
-a.bg-danger:hover,
-a.bg-danger:focus,
-button.bg-danger:hover,
-button.bg-danger:focus {
+.bootstrap a.bg-danger:hover, .bootstrap a.bg-danger:focus,
+.bootstrap button.bg-danger:hover,
+.bootstrap button.bg-danger:focus {
background-color: #b73330 !important;
}
-
-.bg-light {
+.bootstrap .bg-light {
background-color: #f8f9fa !important;
}
-
-a.bg-light:hover,
-a.bg-light:focus,
-button.bg-light:hover,
-button.bg-light:focus {
+.bootstrap a.bg-light:hover, .bootstrap a.bg-light:focus,
+.bootstrap button.bg-light:hover,
+.bootstrap button.bg-light:focus {
background-color: #dae0e5 !important;
}
-
-.bg-dark {
+.bootstrap .bg-dark {
background-color: #343a40 !important;
}
-
-a.bg-dark:hover,
-a.bg-dark:focus,
-button.bg-dark:hover,
-button.bg-dark:focus {
+.bootstrap a.bg-dark:hover, .bootstrap a.bg-dark:focus,
+.bootstrap button.bg-dark:hover,
+.bootstrap button.bg-dark:focus {
background-color: #1d2124 !important;
}
-
-.bg-white {
+.bootstrap .bg-white {
background-color: #fff !important;
}
-
-.bg-transparent {
+.bootstrap .bg-transparent {
background-color: transparent !important;
}
-
-.border {
+.bootstrap .border {
border: 1px solid #dee2e6 !important;
}
-
-.border-top {
+.bootstrap .border-top {
border-top: 1px solid #dee2e6 !important;
}
-
-.border-right {
+.bootstrap .border-right {
border-right: 1px solid #dee2e6 !important;
}
-
-.border-bottom {
+.bootstrap .border-bottom {
border-bottom: 1px solid #dee2e6 !important;
}
-
-.border-left {
+.bootstrap .border-left {
border-left: 1px solid #dee2e6 !important;
}
-
-.border-0 {
+.bootstrap .border-0 {
border: 0 !important;
}
-
-.border-top-0 {
+.bootstrap .border-top-0 {
border-top: 0 !important;
}
-
-.border-right-0 {
+.bootstrap .border-right-0 {
border-right: 0 !important;
}
-
-.border-bottom-0 {
+.bootstrap .border-bottom-0 {
border-bottom: 0 !important;
}
-
-.border-left-0 {
+.bootstrap .border-left-0 {
border-left: 0 !important;
}
-
-.border-primary {
+.bootstrap .border-primary {
border-color: #074e9c !important;
}
-
-.border-secondary {
+.bootstrap .border-secondary {
border-color: #6c757d !important;
}
-
-.border-success {
+.bootstrap .border-success {
border-color: #38c172 !important;
}
-
-.border-info {
+.bootstrap .border-info {
border-color: #6cb2eb !important;
}
-
-.border-warning {
+.bootstrap .border-warning {
border-color: #ffed4a !important;
}
-
-.border-danger {
+.bootstrap .border-danger {
border-color: #d04d4a !important;
}
-
-.border-light {
+.bootstrap .border-light {
border-color: #f8f9fa !important;
}
-
-.border-dark {
+.bootstrap .border-dark {
border-color: #343a40 !important;
}
-
-.border-white {
+.bootstrap .border-white {
border-color: #fff !important;
}
-
-.rounded-sm {
+.bootstrap .rounded-sm {
border-radius: 0.2rem !important;
}
-
-.rounded {
+.bootstrap .rounded {
border-radius: 0.25rem !important;
}
-
-.rounded-top {
+.bootstrap .rounded-top {
border-top-left-radius: 0.25rem !important;
border-top-right-radius: 0.25rem !important;
}
-
-.rounded-right {
+.bootstrap .rounded-right {
border-top-right-radius: 0.25rem !important;
border-bottom-right-radius: 0.25rem !important;
}
-
-.rounded-bottom {
+.bootstrap .rounded-bottom {
border-bottom-right-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
}
-
-.rounded-left {
+.bootstrap .rounded-left {
border-top-left-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
}
-
-.rounded-lg {
+.bootstrap .rounded-lg {
border-radius: 0.3rem !important;
}
-
-.rounded-circle {
+.bootstrap .rounded-circle {
border-radius: 50% !important;
}
-
-.rounded-pill {
+.bootstrap .rounded-pill {
border-radius: 50rem !important;
}
-
-.rounded-0 {
+.bootstrap .rounded-0 {
border-radius: 0 !important;
}
-
-.clearfix::after {
+.bootstrap .clearfix::after {
display: block;
clear: both;
content: "";
}
-
-.d-none {
+.bootstrap .d-none {
display: none !important;
}
-
-.d-inline {
+.bootstrap .d-inline {
display: inline !important;
}
-
-.d-inline-block {
+.bootstrap .d-inline-block {
display: inline-block !important;
}
-
-.d-block {
+.bootstrap .d-block {
display: block !important;
}
-
-.d-table {
+.bootstrap .d-table {
display: table !important;
}
-
-.d-table-row {
+.bootstrap .d-table-row {
display: table-row !important;
}
-
-.d-table-cell {
+.bootstrap .d-table-cell {
display: table-cell !important;
}
-
-.d-flex {
+.bootstrap .d-flex {
display: flex !important;
}
-
-.d-inline-flex {
+.bootstrap .d-inline-flex {
display: inline-flex !important;
}
-
@media (min-width: 576px) {
- .d-sm-none {
+ .bootstrap .d-sm-none {
display: none !important;
}
-
- .d-sm-inline {
+ .bootstrap .d-sm-inline {
display: inline !important;
}
-
- .d-sm-inline-block {
+ .bootstrap .d-sm-inline-block {
display: inline-block !important;
}
-
- .d-sm-block {
+ .bootstrap .d-sm-block {
display: block !important;
}
-
- .d-sm-table {
+ .bootstrap .d-sm-table {
display: table !important;
}
-
- .d-sm-table-row {
+ .bootstrap .d-sm-table-row {
display: table-row !important;
}
-
- .d-sm-table-cell {
+ .bootstrap .d-sm-table-cell {
display: table-cell !important;
}
-
- .d-sm-flex {
+ .bootstrap .d-sm-flex {
display: flex !important;
}
-
- .d-sm-inline-flex {
+ .bootstrap .d-sm-inline-flex {
display: inline-flex !important;
}
}
-
@media (min-width: 768px) {
- .d-md-none {
+ .bootstrap .d-md-none {
display: none !important;
}
-
- .d-md-inline {
+ .bootstrap .d-md-inline {
display: inline !important;
}
-
- .d-md-inline-block {
+ .bootstrap .d-md-inline-block {
display: inline-block !important;
}
-
- .d-md-block {
+ .bootstrap .d-md-block {
display: block !important;
}
-
- .d-md-table {
+ .bootstrap .d-md-table {
display: table !important;
}
-
- .d-md-table-row {
+ .bootstrap .d-md-table-row {
display: table-row !important;
}
-
- .d-md-table-cell {
+ .bootstrap .d-md-table-cell {
display: table-cell !important;
}
-
- .d-md-flex {
+ .bootstrap .d-md-flex {
display: flex !important;
}
-
- .d-md-inline-flex {
+ .bootstrap .d-md-inline-flex {
display: inline-flex !important;
}
}
-
@media (min-width: 992px) {
- .d-lg-none {
+ .bootstrap .d-lg-none {
display: none !important;
}
-
- .d-lg-inline {
+ .bootstrap .d-lg-inline {
display: inline !important;
}
-
- .d-lg-inline-block {
+ .bootstrap .d-lg-inline-block {
display: inline-block !important;
}
-
- .d-lg-block {
+ .bootstrap .d-lg-block {
display: block !important;
}
-
- .d-lg-table {
+ .bootstrap .d-lg-table {
display: table !important;
}
-
- .d-lg-table-row {
+ .bootstrap .d-lg-table-row {
display: table-row !important;
}
-
- .d-lg-table-cell {
+ .bootstrap .d-lg-table-cell {
display: table-cell !important;
}
-
- .d-lg-flex {
+ .bootstrap .d-lg-flex {
display: flex !important;
}
-
- .d-lg-inline-flex {
+ .bootstrap .d-lg-inline-flex {
display: inline-flex !important;
}
}
-
@media (min-width: 1200px) {
- .d-xl-none {
+ .bootstrap .d-xl-none {
display: none !important;
}
-
- .d-xl-inline {
+ .bootstrap .d-xl-inline {
display: inline !important;
}
-
- .d-xl-inline-block {
+ .bootstrap .d-xl-inline-block {
display: inline-block !important;
}
-
- .d-xl-block {
+ .bootstrap .d-xl-block {
display: block !important;
}
-
- .d-xl-table {
+ .bootstrap .d-xl-table {
display: table !important;
}
-
- .d-xl-table-row {
+ .bootstrap .d-xl-table-row {
display: table-row !important;
}
-
- .d-xl-table-cell {
+ .bootstrap .d-xl-table-cell {
display: table-cell !important;
}
-
- .d-xl-flex {
+ .bootstrap .d-xl-flex {
display: flex !important;
}
-
- .d-xl-inline-flex {
+ .bootstrap .d-xl-inline-flex {
display: inline-flex !important;
}
}
-
@media print {
- .d-print-none {
+ .bootstrap .d-print-none {
display: none !important;
}
-
- .d-print-inline {
+ .bootstrap .d-print-inline {
display: inline !important;
}
-
- .d-print-inline-block {
+ .bootstrap .d-print-inline-block {
display: inline-block !important;
}
-
- .d-print-block {
+ .bootstrap .d-print-block {
display: block !important;
}
-
- .d-print-table {
+ .bootstrap .d-print-table {
display: table !important;
}
-
- .d-print-table-row {
+ .bootstrap .d-print-table-row {
display: table-row !important;
}
-
- .d-print-table-cell {
+ .bootstrap .d-print-table-cell {
display: table-cell !important;
}
-
- .d-print-flex {
+ .bootstrap .d-print-flex {
display: flex !important;
}
-
- .d-print-inline-flex {
+ .bootstrap .d-print-inline-flex {
display: inline-flex !important;
}
}
-
-.embed-responsive {
+.bootstrap .embed-responsive {
position: relative;
display: block;
width: 100%;
padding: 0;
overflow: hidden;
}
-
-.embed-responsive::before {
+.bootstrap .embed-responsive::before {
display: block;
content: "";
}
-
-.embed-responsive .embed-responsive-item,
-.embed-responsive iframe,
-.embed-responsive embed,
-.embed-responsive object,
-.embed-responsive video {
+.bootstrap .embed-responsive .embed-responsive-item,
+.bootstrap .embed-responsive iframe,
+.bootstrap .embed-responsive embed,
+.bootstrap .embed-responsive object,
+.bootstrap .embed-responsive video {
position: absolute;
top: 0;
bottom: 0;
@@ -7524,834 +5872,634 @@ button.bg-dark:focus {
height: 100%;
border: 0;
}
-
-.embed-responsive-21by9::before {
+.bootstrap .embed-responsive-21by9::before {
padding-top: 42.8571428571%;
}
-
-.embed-responsive-16by9::before {
+.bootstrap .embed-responsive-16by9::before {
padding-top: 56.25%;
}
-
-.embed-responsive-4by3::before {
+.bootstrap .embed-responsive-4by3::before {
padding-top: 75%;
}
-
-.embed-responsive-1by1::before {
+.bootstrap .embed-responsive-1by1::before {
padding-top: 100%;
}
-
-.flex-row {
+.bootstrap .flex-row {
flex-direction: row !important;
}
-
-.flex-column {
+.bootstrap .flex-column {
flex-direction: column !important;
}
-
-.flex-row-reverse {
+.bootstrap .flex-row-reverse {
flex-direction: row-reverse !important;
}
-
-.flex-column-reverse {
+.bootstrap .flex-column-reverse {
flex-direction: column-reverse !important;
}
-
-.flex-wrap {
+.bootstrap .flex-wrap {
flex-wrap: wrap !important;
}
-
-.flex-nowrap {
+.bootstrap .flex-nowrap {
flex-wrap: nowrap !important;
}
-
-.flex-wrap-reverse {
+.bootstrap .flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
-
-.flex-fill {
+.bootstrap .flex-fill {
flex: 1 1 auto !important;
}
-
-.flex-grow-0 {
+.bootstrap .flex-grow-0 {
flex-grow: 0 !important;
}
-
-.flex-grow-1 {
+.bootstrap .flex-grow-1 {
flex-grow: 1 !important;
}
-
-.flex-shrink-0 {
+.bootstrap .flex-shrink-0 {
flex-shrink: 0 !important;
}
-
-.flex-shrink-1 {
+.bootstrap .flex-shrink-1 {
flex-shrink: 1 !important;
}
-
-.justify-content-start {
+.bootstrap .justify-content-start {
justify-content: flex-start !important;
}
-
-.justify-content-end {
+.bootstrap .justify-content-end {
justify-content: flex-end !important;
}
-
-.justify-content-center {
+.bootstrap .justify-content-center {
justify-content: center !important;
}
-
-.justify-content-between {
+.bootstrap .justify-content-between {
justify-content: space-between !important;
}
-
-.justify-content-around {
+.bootstrap .justify-content-around {
justify-content: space-around !important;
}
-
-.align-items-start {
+.bootstrap .align-items-start {
align-items: flex-start !important;
}
-
-.align-items-end {
+.bootstrap .align-items-end {
align-items: flex-end !important;
}
-
-.align-items-center {
+.bootstrap .align-items-center {
align-items: center !important;
}
-
-.align-items-baseline {
+.bootstrap .align-items-baseline {
align-items: baseline !important;
}
-
-.align-items-stretch {
+.bootstrap .align-items-stretch {
align-items: stretch !important;
}
-
-.align-content-start {
+.bootstrap .align-content-start {
align-content: flex-start !important;
}
-
-.align-content-end {
+.bootstrap .align-content-end {
align-content: flex-end !important;
}
-
-.align-content-center {
+.bootstrap .align-content-center {
align-content: center !important;
}
-
-.align-content-between {
+.bootstrap .align-content-between {
align-content: space-between !important;
}
-
-.align-content-around {
+.bootstrap .align-content-around {
align-content: space-around !important;
}
-
-.align-content-stretch {
+.bootstrap .align-content-stretch {
align-content: stretch !important;
}
-
-.align-self-auto {
+.bootstrap .align-self-auto {
align-self: auto !important;
}
-
-.align-self-start {
+.bootstrap .align-self-start {
align-self: flex-start !important;
}
-
-.align-self-end {
+.bootstrap .align-self-end {
align-self: flex-end !important;
}
-
-.align-self-center {
+.bootstrap .align-self-center {
align-self: center !important;
}
-
-.align-self-baseline {
+.bootstrap .align-self-baseline {
align-self: baseline !important;
}
-
-.align-self-stretch {
+.bootstrap .align-self-stretch {
align-self: stretch !important;
}
-
@media (min-width: 576px) {
- .flex-sm-row {
+ .bootstrap .flex-sm-row {
flex-direction: row !important;
}
-
- .flex-sm-column {
+ .bootstrap .flex-sm-column {
flex-direction: column !important;
}
-
- .flex-sm-row-reverse {
+ .bootstrap .flex-sm-row-reverse {
flex-direction: row-reverse !important;
}
-
- .flex-sm-column-reverse {
+ .bootstrap .flex-sm-column-reverse {
flex-direction: column-reverse !important;
}
-
- .flex-sm-wrap {
+ .bootstrap .flex-sm-wrap {
flex-wrap: wrap !important;
}
-
- .flex-sm-nowrap {
+ .bootstrap .flex-sm-nowrap {
flex-wrap: nowrap !important;
}
-
- .flex-sm-wrap-reverse {
+ .bootstrap .flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
-
- .flex-sm-fill {
+ .bootstrap .flex-sm-fill {
flex: 1 1 auto !important;
}
-
- .flex-sm-grow-0 {
+ .bootstrap .flex-sm-grow-0 {
flex-grow: 0 !important;
}
-
- .flex-sm-grow-1 {
+ .bootstrap .flex-sm-grow-1 {
flex-grow: 1 !important;
}
-
- .flex-sm-shrink-0 {
+ .bootstrap .flex-sm-shrink-0 {
flex-shrink: 0 !important;
}
-
- .flex-sm-shrink-1 {
+ .bootstrap .flex-sm-shrink-1 {
flex-shrink: 1 !important;
}
-
- .justify-content-sm-start {
+ .bootstrap .justify-content-sm-start {
justify-content: flex-start !important;
}
-
- .justify-content-sm-end {
+ .bootstrap .justify-content-sm-end {
justify-content: flex-end !important;
}
-
- .justify-content-sm-center {
+ .bootstrap .justify-content-sm-center {
justify-content: center !important;
}
-
- .justify-content-sm-between {
+ .bootstrap .justify-content-sm-between {
justify-content: space-between !important;
}
-
- .justify-content-sm-around {
+ .bootstrap .justify-content-sm-around {
justify-content: space-around !important;
}
-
- .align-items-sm-start {
+ .bootstrap .align-items-sm-start {
align-items: flex-start !important;
}
-
- .align-items-sm-end {
+ .bootstrap .align-items-sm-end {
align-items: flex-end !important;
}
-
- .align-items-sm-center {
+ .bootstrap .align-items-sm-center {
align-items: center !important;
}
-
- .align-items-sm-baseline {
+ .bootstrap .align-items-sm-baseline {
align-items: baseline !important;
}
-
- .align-items-sm-stretch {
+ .bootstrap .align-items-sm-stretch {
align-items: stretch !important;
}
-
- .align-content-sm-start {
+ .bootstrap .align-content-sm-start {
align-content: flex-start !important;
}
-
- .align-content-sm-end {
+ .bootstrap .align-content-sm-end {
align-content: flex-end !important;
}
-
- .align-content-sm-center {
+ .bootstrap .align-content-sm-center {
align-content: center !important;
}
-
- .align-content-sm-between {
+ .bootstrap .align-content-sm-between {
align-content: space-between !important;
}
-
- .align-content-sm-around {
+ .bootstrap .align-content-sm-around {
align-content: space-around !important;
}
-
- .align-content-sm-stretch {
+ .bootstrap .align-content-sm-stretch {
align-content: stretch !important;
}
-
- .align-self-sm-auto {
+ .bootstrap .align-self-sm-auto {
align-self: auto !important;
}
-
- .align-self-sm-start {
+ .bootstrap .align-self-sm-start {
align-self: flex-start !important;
}
-
- .align-self-sm-end {
+ .bootstrap .align-self-sm-end {
align-self: flex-end !important;
}
-
- .align-self-sm-center {
+ .bootstrap .align-self-sm-center {
align-self: center !important;
}
-
- .align-self-sm-baseline {
+ .bootstrap .align-self-sm-baseline {
align-self: baseline !important;
}
-
- .align-self-sm-stretch {
+ .bootstrap .align-self-sm-stretch {
align-self: stretch !important;
}
}
-
@media (min-width: 768px) {
- .flex-md-row {
+ .bootstrap .flex-md-row {
flex-direction: row !important;
}
-
- .flex-md-column {
+ .bootstrap .flex-md-column {
flex-direction: column !important;
}
-
- .flex-md-row-reverse {
+ .bootstrap .flex-md-row-reverse {
flex-direction: row-reverse !important;
}
-
- .flex-md-column-reverse {
+ .bootstrap .flex-md-column-reverse {
flex-direction: column-reverse !important;
}
-
- .flex-md-wrap {
+ .bootstrap .flex-md-wrap {
flex-wrap: wrap !important;
}
-
- .flex-md-nowrap {
+ .bootstrap .flex-md-nowrap {
flex-wrap: nowrap !important;
}
-
- .flex-md-wrap-reverse {
+ .bootstrap .flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
-
- .flex-md-fill {
+ .bootstrap .flex-md-fill {
flex: 1 1 auto !important;
}
-
- .flex-md-grow-0 {
+ .bootstrap .flex-md-grow-0 {
flex-grow: 0 !important;
}
-
- .flex-md-grow-1 {
+ .bootstrap .flex-md-grow-1 {
flex-grow: 1 !important;
}
-
- .flex-md-shrink-0 {
+ .bootstrap .flex-md-shrink-0 {
flex-shrink: 0 !important;
}
-
- .flex-md-shrink-1 {
+ .bootstrap .flex-md-shrink-1 {
flex-shrink: 1 !important;
}
-
- .justify-content-md-start {
+ .bootstrap .justify-content-md-start {
justify-content: flex-start !important;
}
-
- .justify-content-md-end {
+ .bootstrap .justify-content-md-end {
justify-content: flex-end !important;
}
-
- .justify-content-md-center {
+ .bootstrap .justify-content-md-center {
justify-content: center !important;
}
-
- .justify-content-md-between {
+ .bootstrap .justify-content-md-between {
justify-content: space-between !important;
}
-
- .justify-content-md-around {
+ .bootstrap .justify-content-md-around {
justify-content: space-around !important;
}
-
- .align-items-md-start {
+ .bootstrap .align-items-md-start {
align-items: flex-start !important;
}
-
- .align-items-md-end {
+ .bootstrap .align-items-md-end {
align-items: flex-end !important;
}
-
- .align-items-md-center {
+ .bootstrap .align-items-md-center {
align-items: center !important;
}
-
- .align-items-md-baseline {
+ .bootstrap .align-items-md-baseline {
align-items: baseline !important;
}
-
- .align-items-md-stretch {
+ .bootstrap .align-items-md-stretch {
align-items: stretch !important;
}
-
- .align-content-md-start {
+ .bootstrap .align-content-md-start {
align-content: flex-start !important;
}
-
- .align-content-md-end {
+ .bootstrap .align-content-md-end {
align-content: flex-end !important;
}
-
- .align-content-md-center {
+ .bootstrap .align-content-md-center {
align-content: center !important;
}
-
- .align-content-md-between {
+ .bootstrap .align-content-md-between {
align-content: space-between !important;
}
-
- .align-content-md-around {
+ .bootstrap .align-content-md-around {
align-content: space-around !important;
}
-
- .align-content-md-stretch {
+ .bootstrap .align-content-md-stretch {
align-content: stretch !important;
}
-
- .align-self-md-auto {
+ .bootstrap .align-self-md-auto {
align-self: auto !important;
}
-
- .align-self-md-start {
+ .bootstrap .align-self-md-start {
align-self: flex-start !important;
}
-
- .align-self-md-end {
+ .bootstrap .align-self-md-end {
align-self: flex-end !important;
}
-
- .align-self-md-center {
+ .bootstrap .align-self-md-center {
align-self: center !important;
}
-
- .align-self-md-baseline {
+ .bootstrap .align-self-md-baseline {
align-self: baseline !important;
}
-
- .align-self-md-stretch {
+ .bootstrap .align-self-md-stretch {
align-self: stretch !important;
}
}
-
@media (min-width: 992px) {
- .flex-lg-row {
+ .bootstrap .flex-lg-row {
flex-direction: row !important;
}
-
- .flex-lg-column {
+ .bootstrap .flex-lg-column {
flex-direction: column !important;
}
-
- .flex-lg-row-reverse {
+ .bootstrap .flex-lg-row-reverse {
flex-direction: row-reverse !important;
}
-
- .flex-lg-column-reverse {
+ .bootstrap .flex-lg-column-reverse {
flex-direction: column-reverse !important;
}
-
- .flex-lg-wrap {
+ .bootstrap .flex-lg-wrap {
flex-wrap: wrap !important;
}
-
- .flex-lg-nowrap {
+ .bootstrap .flex-lg-nowrap {
flex-wrap: nowrap !important;
}
-
- .flex-lg-wrap-reverse {
+ .bootstrap .flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
-
- .flex-lg-fill {
+ .bootstrap .flex-lg-fill {
flex: 1 1 auto !important;
}
-
- .flex-lg-grow-0 {
+ .bootstrap .flex-lg-grow-0 {
flex-grow: 0 !important;
}
-
- .flex-lg-grow-1 {
+ .bootstrap .flex-lg-grow-1 {
flex-grow: 1 !important;
}
-
- .flex-lg-shrink-0 {
+ .bootstrap .flex-lg-shrink-0 {
flex-shrink: 0 !important;
}
-
- .flex-lg-shrink-1 {
+ .bootstrap .flex-lg-shrink-1 {
flex-shrink: 1 !important;
}
-
- .justify-content-lg-start {
+ .bootstrap .justify-content-lg-start {
justify-content: flex-start !important;
}
-
- .justify-content-lg-end {
+ .bootstrap .justify-content-lg-end {
justify-content: flex-end !important;
}
-
- .justify-content-lg-center {
+ .bootstrap .justify-content-lg-center {
justify-content: center !important;
}
-
- .justify-content-lg-between {
+ .bootstrap .justify-content-lg-between {
justify-content: space-between !important;
}
-
- .justify-content-lg-around {
+ .bootstrap .justify-content-lg-around {
justify-content: space-around !important;
}
-
- .align-items-lg-start {
+ .bootstrap .align-items-lg-start {
align-items: flex-start !important;
}
-
- .align-items-lg-end {
+ .bootstrap .align-items-lg-end {
align-items: flex-end !important;
}
-
- .align-items-lg-center {
+ .bootstrap .align-items-lg-center {
align-items: center !important;
}
-
- .align-items-lg-baseline {
+ .bootstrap .align-items-lg-baseline {
align-items: baseline !important;
}
-
- .align-items-lg-stretch {
+ .bootstrap .align-items-lg-stretch {
align-items: stretch !important;
}
-
- .align-content-lg-start {
+ .bootstrap .align-content-lg-start {
align-content: flex-start !important;
}
-
- .align-content-lg-end {
+ .bootstrap .align-content-lg-end {
align-content: flex-end !important;
}
-
- .align-content-lg-center {
+ .bootstrap .align-content-lg-center {
align-content: center !important;
}
-
- .align-content-lg-between {
+ .bootstrap .align-content-lg-between {
align-content: space-between !important;
}
-
- .align-content-lg-around {
+ .bootstrap .align-content-lg-around {
align-content: space-around !important;
}
-
- .align-content-lg-stretch {
+ .bootstrap .align-content-lg-stretch {
align-content: stretch !important;
}
-
- .align-self-lg-auto {
+ .bootstrap .align-self-lg-auto {
align-self: auto !important;
}
-
- .align-self-lg-start {
+ .bootstrap .align-self-lg-start {
align-self: flex-start !important;
}
-
- .align-self-lg-end {
+ .bootstrap .align-self-lg-end {
align-self: flex-end !important;
}
-
- .align-self-lg-center {
+ .bootstrap .align-self-lg-center {
align-self: center !important;
}
-
- .align-self-lg-baseline {
+ .bootstrap .align-self-lg-baseline {
align-self: baseline !important;
}
-
- .align-self-lg-stretch {
+ .bootstrap .align-self-lg-stretch {
align-self: stretch !important;
}
}
-
@media (min-width: 1200px) {
- .flex-xl-row {
+ .bootstrap .flex-xl-row {
flex-direction: row !important;
}
-
- .flex-xl-column {
+ .bootstrap .flex-xl-column {
flex-direction: column !important;
}
-
- .flex-xl-row-reverse {
+ .bootstrap .flex-xl-row-reverse {
flex-direction: row-reverse !important;
}
-
- .flex-xl-column-reverse {
+ .bootstrap .flex-xl-column-reverse {
flex-direction: column-reverse !important;
}
-
- .flex-xl-wrap {
+ .bootstrap .flex-xl-wrap {
flex-wrap: wrap !important;
}
-
- .flex-xl-nowrap {
+ .bootstrap .flex-xl-nowrap {
flex-wrap: nowrap !important;
}
-
- .flex-xl-wrap-reverse {
+ .bootstrap .flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
-
- .flex-xl-fill {
+ .bootstrap .flex-xl-fill {
flex: 1 1 auto !important;
}
-
- .flex-xl-grow-0 {
+ .bootstrap .flex-xl-grow-0 {
flex-grow: 0 !important;
}
-
- .flex-xl-grow-1 {
+ .bootstrap .flex-xl-grow-1 {
flex-grow: 1 !important;
}
-
- .flex-xl-shrink-0 {
+ .bootstrap .flex-xl-shrink-0 {
flex-shrink: 0 !important;
}
-
- .flex-xl-shrink-1 {
+ .bootstrap .flex-xl-shrink-1 {
flex-shrink: 1 !important;
}
-
- .justify-content-xl-start {
+ .bootstrap .justify-content-xl-start {
justify-content: flex-start !important;
}
-
- .justify-content-xl-end {
+ .bootstrap .justify-content-xl-end {
justify-content: flex-end !important;
}
-
- .justify-content-xl-center {
+ .bootstrap .justify-content-xl-center {
justify-content: center !important;
}
-
- .justify-content-xl-between {
+ .bootstrap .justify-content-xl-between {
justify-content: space-between !important;
}
-
- .justify-content-xl-around {
+ .bootstrap .justify-content-xl-around {
justify-content: space-around !important;
}
-
- .align-items-xl-start {
+ .bootstrap .align-items-xl-start {
align-items: flex-start !important;
}
-
- .align-items-xl-end {
+ .bootstrap .align-items-xl-end {
align-items: flex-end !important;
}
-
- .align-items-xl-center {
+ .bootstrap .align-items-xl-center {
align-items: center !important;
}
-
- .align-items-xl-baseline {
+ .bootstrap .align-items-xl-baseline {
align-items: baseline !important;
}
-
- .align-items-xl-stretch {
+ .bootstrap .align-items-xl-stretch {
align-items: stretch !important;
}
-
- .align-content-xl-start {
+ .bootstrap .align-content-xl-start {
align-content: flex-start !important;
}
-
- .align-content-xl-end {
+ .bootstrap .align-content-xl-end {
align-content: flex-end !important;
}
-
- .align-content-xl-center {
+ .bootstrap .align-content-xl-center {
align-content: center !important;
}
-
- .align-content-xl-between {
+ .bootstrap .align-content-xl-between {
align-content: space-between !important;
}
-
- .align-content-xl-around {
+ .bootstrap .align-content-xl-around {
align-content: space-around !important;
}
-
- .align-content-xl-stretch {
+ .bootstrap .align-content-xl-stretch {
align-content: stretch !important;
}
-
- .align-self-xl-auto {
+ .bootstrap .align-self-xl-auto {
align-self: auto !important;
}
-
- .align-self-xl-start {
+ .bootstrap .align-self-xl-start {
align-self: flex-start !important;
}
-
- .align-self-xl-end {
+ .bootstrap .align-self-xl-end {
align-self: flex-end !important;
}
-
- .align-self-xl-center {
+ .bootstrap .align-self-xl-center {
align-self: center !important;
}
-
- .align-self-xl-baseline {
+ .bootstrap .align-self-xl-baseline {
align-self: baseline !important;
}
-
- .align-self-xl-stretch {
+ .bootstrap .align-self-xl-stretch {
align-self: stretch !important;
}
}
-
-.float-left {
+.bootstrap .float-left {
float: left !important;
}
-
-.float-right {
+.bootstrap .float-right {
float: right !important;
}
-
-.float-none {
+.bootstrap .float-none {
float: none !important;
}
-
@media (min-width: 576px) {
- .float-sm-left {
+ .bootstrap .float-sm-left {
float: left !important;
}
-
- .float-sm-right {
+ .bootstrap .float-sm-right {
float: right !important;
}
-
- .float-sm-none {
+ .bootstrap .float-sm-none {
float: none !important;
}
}
-
@media (min-width: 768px) {
- .float-md-left {
+ .bootstrap .float-md-left {
float: left !important;
}
-
- .float-md-right {
+ .bootstrap .float-md-right {
float: right !important;
}
-
- .float-md-none {
+ .bootstrap .float-md-none {
float: none !important;
}
}
-
@media (min-width: 992px) {
- .float-lg-left {
+ .bootstrap .float-lg-left {
float: left !important;
}
-
- .float-lg-right {
+ .bootstrap .float-lg-right {
float: right !important;
}
-
- .float-lg-none {
+ .bootstrap .float-lg-none {
float: none !important;
}
}
-
@media (min-width: 1200px) {
- .float-xl-left {
+ .bootstrap .float-xl-left {
float: left !important;
}
-
- .float-xl-right {
+ .bootstrap .float-xl-right {
float: right !important;
}
-
- .float-xl-none {
+ .bootstrap .float-xl-none {
float: none !important;
}
}
-
-.overflow-auto {
+.bootstrap .overflow-auto {
overflow: auto !important;
}
-
-.overflow-hidden {
+.bootstrap .overflow-hidden {
overflow: hidden !important;
}
-
-.position-static {
+.bootstrap .position-static {
position: static !important;
}
-
-.position-relative {
+.bootstrap .position-relative {
position: relative !important;
}
-
-.position-absolute {
+.bootstrap .position-absolute {
position: absolute !important;
}
-
-.position-fixed {
+.bootstrap .position-fixed {
position: fixed !important;
}
-
-.position-sticky {
+.bootstrap .position-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
-
-.fixed-top {
+.bootstrap .fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}
-
-.fixed-bottom {
+.bootstrap .fixed-bottom {
position: fixed;
right: 0;
bottom: 0;
left: 0;
z-index: 1030;
}
-
@supports ((position: -webkit-sticky) or (position: sticky)) {
- .sticky-top {
+ .bootstrap .sticky-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
-
-.sr-only {
+.bootstrap .sr-only {
position: absolute;
width: 1px;
height: 1px;
@@ -8362,9 +6510,7 @@ button.bg-dark:focus {
white-space: nowrap;
border: 0;
}
-
-.sr-only-focusable:active,
-.sr-only-focusable:focus {
+.bootstrap .sr-only-focusable:active, .bootstrap .sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
@@ -8372,88 +6518,67 @@ button.bg-dark:focus {
clip: auto;
white-space: normal;
}
-
-.shadow-sm {
+.bootstrap .shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
-
-.shadow {
+.bootstrap .shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
-
-.shadow-lg {
+.bootstrap .shadow-lg {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
-
-.shadow-none {
+.bootstrap .shadow-none {
box-shadow: none !important;
}
-
-.w-25 {
+.bootstrap .w-25 {
width: 25% !important;
}
-
-.w-50 {
+.bootstrap .w-50 {
width: 50% !important;
}
-
-.w-75 {
+.bootstrap .w-75 {
width: 75% !important;
}
-
-.w-100 {
+.bootstrap .w-100 {
width: 100% !important;
}
-
-.w-auto {
+.bootstrap .w-auto {
width: auto !important;
}
-
-.h-25 {
+.bootstrap .h-25 {
height: 25% !important;
}
-
-.h-50 {
+.bootstrap .h-50 {
height: 50% !important;
}
-
-.h-75 {
+.bootstrap .h-75 {
height: 75% !important;
}
-
-.h-100 {
+.bootstrap .h-100 {
height: 100% !important;
}
-
-.h-auto {
+.bootstrap .h-auto {
height: auto !important;
}
-
-.mw-100 {
+.bootstrap .mw-100 {
max-width: 100% !important;
}
-
-.mh-100 {
+.bootstrap .mh-100 {
max-height: 100% !important;
}
-
-.min-vw-100 {
+.bootstrap .min-vw-100 {
min-width: 100vw !important;
}
-
-.min-vh-100 {
+.bootstrap .min-vh-100 {
min-height: 100vh !important;
}
-
-.vw-100 {
+.bootstrap .vw-100 {
width: 100vw !important;
}
-
-.vh-100 {
+.bootstrap .vh-100 {
height: 100vh !important;
}
-
-.stretched-link::after {
+.bootstrap .stretched-link::after {
position: absolute;
top: 0;
right: 0;
@@ -8464,2515 +6589,1983 @@ button.bg-dark:focus {
content: "";
background-color: rgba(0, 0, 0, 0);
}
-
-.m-0 {
+.bootstrap .m-0 {
margin: 0 !important;
}
-
-.mt-0,
-.my-0 {
+.bootstrap .mt-0,
+.bootstrap .my-0 {
margin-top: 0 !important;
}
-
-.mr-0,
-.mx-0 {
+.bootstrap .mr-0,
+.bootstrap .mx-0 {
margin-right: 0 !important;
}
-
-.mb-0,
-.my-0 {
+.bootstrap .mb-0,
+.bootstrap .my-0 {
margin-bottom: 0 !important;
}
-
-.ml-0,
-.mx-0 {
+.bootstrap .ml-0,
+.bootstrap .mx-0 {
margin-left: 0 !important;
}
-
-.m-1 {
+.bootstrap .m-1 {
margin: 0.25rem !important;
}
-
-.mt-1,
-.my-1 {
+.bootstrap .mt-1,
+.bootstrap .my-1 {
margin-top: 0.25rem !important;
}
-
-.mr-1,
-.mx-1 {
+.bootstrap .mr-1,
+.bootstrap .mx-1 {
margin-right: 0.25rem !important;
}
-
-.mb-1,
-.my-1 {
+.bootstrap .mb-1,
+.bootstrap .my-1 {
margin-bottom: 0.25rem !important;
}
-
-.ml-1,
-.mx-1 {
+.bootstrap .ml-1,
+.bootstrap .mx-1 {
margin-left: 0.25rem !important;
}
-
-.m-2 {
+.bootstrap .m-2 {
margin: 0.5rem !important;
}
-
-.mt-2,
-.my-2 {
+.bootstrap .mt-2,
+.bootstrap .my-2 {
margin-top: 0.5rem !important;
}
-
-.mr-2,
-.mx-2 {
+.bootstrap .mr-2,
+.bootstrap .mx-2 {
margin-right: 0.5rem !important;
}
-
-.mb-2,
-.my-2 {
+.bootstrap .mb-2,
+.bootstrap .my-2 {
margin-bottom: 0.5rem !important;
}
-
-.ml-2,
-.mx-2 {
+.bootstrap .ml-2,
+.bootstrap .mx-2 {
margin-left: 0.5rem !important;
}
-
-.m-3 {
+.bootstrap .m-3 {
margin: 1rem !important;
}
-
-.mt-3,
-.my-3 {
+.bootstrap .mt-3,
+.bootstrap .my-3 {
margin-top: 1rem !important;
}
-
-.mr-3,
-.mx-3 {
+.bootstrap .mr-3,
+.bootstrap .mx-3 {
margin-right: 1rem !important;
}
-
-.mb-3,
-.my-3 {
+.bootstrap .mb-3,
+.bootstrap .my-3 {
margin-bottom: 1rem !important;
}
-
-.ml-3,
-.mx-3 {
+.bootstrap .ml-3,
+.bootstrap .mx-3 {
margin-left: 1rem !important;
}
-
-.m-4 {
+.bootstrap .m-4 {
margin: 1.5rem !important;
}
-
-.mt-4,
-.my-4 {
+.bootstrap .mt-4,
+.bootstrap .my-4 {
margin-top: 1.5rem !important;
}
-
-.mr-4,
-.mx-4 {
+.bootstrap .mr-4,
+.bootstrap .mx-4 {
margin-right: 1.5rem !important;
}
-
-.mb-4,
-.my-4 {
+.bootstrap .mb-4,
+.bootstrap .my-4 {
margin-bottom: 1.5rem !important;
}
-
-.ml-4,
-.mx-4 {
+.bootstrap .ml-4,
+.bootstrap .mx-4 {
margin-left: 1.5rem !important;
}
-
-.m-5 {
+.bootstrap .m-5 {
margin: 3rem !important;
}
-
-.mt-5,
-.my-5 {
+.bootstrap .mt-5,
+.bootstrap .my-5 {
margin-top: 3rem !important;
}
-
-.mr-5,
-.mx-5 {
+.bootstrap .mr-5,
+.bootstrap .mx-5 {
margin-right: 3rem !important;
}
-
-.mb-5,
-.my-5 {
+.bootstrap .mb-5,
+.bootstrap .my-5 {
margin-bottom: 3rem !important;
}
-
-.ml-5,
-.mx-5 {
+.bootstrap .ml-5,
+.bootstrap .mx-5 {
margin-left: 3rem !important;
}
-
-.p-0 {
+.bootstrap .p-0 {
padding: 0 !important;
}
-
-.pt-0,
-.py-0 {
+.bootstrap .pt-0,
+.bootstrap .py-0 {
padding-top: 0 !important;
}
-
-.pr-0,
-.px-0 {
+.bootstrap .pr-0,
+.bootstrap .px-0 {
padding-right: 0 !important;
}
-
-.pb-0,
-.py-0 {
+.bootstrap .pb-0,
+.bootstrap .py-0 {
padding-bottom: 0 !important;
}
-
-.pl-0,
-.px-0 {
+.bootstrap .pl-0,
+.bootstrap .px-0 {
padding-left: 0 !important;
}
-
-.p-1 {
+.bootstrap .p-1 {
padding: 0.25rem !important;
}
-
-.pt-1,
-.py-1 {
+.bootstrap .pt-1,
+.bootstrap .py-1 {
padding-top: 0.25rem !important;
}
-
-.pr-1,
-.px-1 {
+.bootstrap .pr-1,
+.bootstrap .px-1 {
padding-right: 0.25rem !important;
}
-
-.pb-1,
-.py-1 {
+.bootstrap .pb-1,
+.bootstrap .py-1 {
padding-bottom: 0.25rem !important;
}
-
-.pl-1,
-.px-1 {
+.bootstrap .pl-1,
+.bootstrap .px-1 {
padding-left: 0.25rem !important;
}
-
-.p-2 {
+.bootstrap .p-2 {
padding: 0.5rem !important;
}
-
-.pt-2,
-.py-2 {
+.bootstrap .pt-2,
+.bootstrap .py-2 {
padding-top: 0.5rem !important;
}
-
-.pr-2,
-.px-2 {
+.bootstrap .pr-2,
+.bootstrap .px-2 {
padding-right: 0.5rem !important;
}
-
-.pb-2,
-.py-2 {
+.bootstrap .pb-2,
+.bootstrap .py-2 {
padding-bottom: 0.5rem !important;
}
-
-.pl-2,
-.px-2 {
+.bootstrap .pl-2,
+.bootstrap .px-2 {
padding-left: 0.5rem !important;
}
-
-.p-3 {
+.bootstrap .p-3 {
padding: 1rem !important;
}
-
-.pt-3,
-.py-3 {
+.bootstrap .pt-3,
+.bootstrap .py-3 {
padding-top: 1rem !important;
}
-
-.pr-3,
-.px-3 {
+.bootstrap .pr-3,
+.bootstrap .px-3 {
padding-right: 1rem !important;
}
-
-.pb-3,
-.py-3 {
+.bootstrap .pb-3,
+.bootstrap .py-3 {
padding-bottom: 1rem !important;
}
-
-.pl-3,
-.px-3 {
+.bootstrap .pl-3,
+.bootstrap .px-3 {
padding-left: 1rem !important;
}
-
-.p-4 {
+.bootstrap .p-4 {
padding: 1.5rem !important;
}
-
-.pt-4,
-.py-4 {
+.bootstrap .pt-4,
+.bootstrap .py-4 {
padding-top: 1.5rem !important;
}
-
-.pr-4,
-.px-4 {
+.bootstrap .pr-4,
+.bootstrap .px-4 {
padding-right: 1.5rem !important;
}
-
-.pb-4,
-.py-4 {
+.bootstrap .pb-4,
+.bootstrap .py-4 {
padding-bottom: 1.5rem !important;
}
-
-.pl-4,
-.px-4 {
+.bootstrap .pl-4,
+.bootstrap .px-4 {
padding-left: 1.5rem !important;
}
-
-.p-5 {
+.bootstrap .p-5 {
padding: 3rem !important;
}
-
-.pt-5,
-.py-5 {
+.bootstrap .pt-5,
+.bootstrap .py-5 {
padding-top: 3rem !important;
}
-
-.pr-5,
-.px-5 {
+.bootstrap .pr-5,
+.bootstrap .px-5 {
padding-right: 3rem !important;
}
-
-.pb-5,
-.py-5 {
+.bootstrap .pb-5,
+.bootstrap .py-5 {
padding-bottom: 3rem !important;
}
-
-.pl-5,
-.px-5 {
+.bootstrap .pl-5,
+.bootstrap .px-5 {
padding-left: 3rem !important;
}
-
-.m-n1 {
+.bootstrap .m-n1 {
margin: -0.25rem !important;
}
-
-.mt-n1,
-.my-n1 {
+.bootstrap .mt-n1,
+.bootstrap .my-n1 {
margin-top: -0.25rem !important;
}
-
-.mr-n1,
-.mx-n1 {
+.bootstrap .mr-n1,
+.bootstrap .mx-n1 {
margin-right: -0.25rem !important;
}
-
-.mb-n1,
-.my-n1 {
+.bootstrap .mb-n1,
+.bootstrap .my-n1 {
margin-bottom: -0.25rem !important;
}
-
-.ml-n1,
-.mx-n1 {
+.bootstrap .ml-n1,
+.bootstrap .mx-n1 {
margin-left: -0.25rem !important;
}
-
-.m-n2 {
+.bootstrap .m-n2 {
margin: -0.5rem !important;
}
-
-.mt-n2,
-.my-n2 {
+.bootstrap .mt-n2,
+.bootstrap .my-n2 {
margin-top: -0.5rem !important;
}
-
-.mr-n2,
-.mx-n2 {
+.bootstrap .mr-n2,
+.bootstrap .mx-n2 {
margin-right: -0.5rem !important;
}
-
-.mb-n2,
-.my-n2 {
+.bootstrap .mb-n2,
+.bootstrap .my-n2 {
margin-bottom: -0.5rem !important;
}
-
-.ml-n2,
-.mx-n2 {
+.bootstrap .ml-n2,
+.bootstrap .mx-n2 {
margin-left: -0.5rem !important;
}
-
-.m-n3 {
+.bootstrap .m-n3 {
margin: -1rem !important;
}
-
-.mt-n3,
-.my-n3 {
+.bootstrap .mt-n3,
+.bootstrap .my-n3 {
margin-top: -1rem !important;
}
-
-.mr-n3,
-.mx-n3 {
+.bootstrap .mr-n3,
+.bootstrap .mx-n3 {
margin-right: -1rem !important;
}
-
-.mb-n3,
-.my-n3 {
+.bootstrap .mb-n3,
+.bootstrap .my-n3 {
margin-bottom: -1rem !important;
}
-
-.ml-n3,
-.mx-n3 {
+.bootstrap .ml-n3,
+.bootstrap .mx-n3 {
margin-left: -1rem !important;
}
-
-.m-n4 {
+.bootstrap .m-n4 {
margin: -1.5rem !important;
}
-
-.mt-n4,
-.my-n4 {
+.bootstrap .mt-n4,
+.bootstrap .my-n4 {
margin-top: -1.5rem !important;
}
-
-.mr-n4,
-.mx-n4 {
+.bootstrap .mr-n4,
+.bootstrap .mx-n4 {
margin-right: -1.5rem !important;
}
-
-.mb-n4,
-.my-n4 {
+.bootstrap .mb-n4,
+.bootstrap .my-n4 {
margin-bottom: -1.5rem !important;
}
-
-.ml-n4,
-.mx-n4 {
+.bootstrap .ml-n4,
+.bootstrap .mx-n4 {
margin-left: -1.5rem !important;
}
-
-.m-n5 {
+.bootstrap .m-n5 {
margin: -3rem !important;
}
-
-.mt-n5,
-.my-n5 {
+.bootstrap .mt-n5,
+.bootstrap .my-n5 {
margin-top: -3rem !important;
}
-
-.mr-n5,
-.mx-n5 {
+.bootstrap .mr-n5,
+.bootstrap .mx-n5 {
margin-right: -3rem !important;
}
-
-.mb-n5,
-.my-n5 {
+.bootstrap .mb-n5,
+.bootstrap .my-n5 {
margin-bottom: -3rem !important;
}
-
-.ml-n5,
-.mx-n5 {
+.bootstrap .ml-n5,
+.bootstrap .mx-n5 {
margin-left: -3rem !important;
}
-
-.m-auto {
+.bootstrap .m-auto {
margin: auto !important;
}
-
-.mt-auto,
-.my-auto {
+.bootstrap .mt-auto,
+.bootstrap .my-auto {
margin-top: auto !important;
}
-
-.mr-auto,
-.mx-auto {
+.bootstrap .mr-auto,
+.bootstrap .mx-auto {
margin-right: auto !important;
}
-
-.mb-auto,
-.my-auto {
+.bootstrap .mb-auto,
+.bootstrap .my-auto {
margin-bottom: auto !important;
}
-
-.ml-auto,
-.mx-auto {
+.bootstrap .ml-auto,
+.bootstrap .mx-auto {
margin-left: auto !important;
}
-
@media (min-width: 576px) {
- .m-sm-0 {
+ .bootstrap .m-sm-0 {
margin: 0 !important;
}
-
- .mt-sm-0,
- .my-sm-0 {
+ .bootstrap .mt-sm-0,
+.bootstrap .my-sm-0 {
margin-top: 0 !important;
}
-
- .mr-sm-0,
- .mx-sm-0 {
+ .bootstrap .mr-sm-0,
+.bootstrap .mx-sm-0 {
margin-right: 0 !important;
}
-
- .mb-sm-0,
- .my-sm-0 {
+ .bootstrap .mb-sm-0,
+.bootstrap .my-sm-0 {
margin-bottom: 0 !important;
}
-
- .ml-sm-0,
- .mx-sm-0 {
+ .bootstrap .ml-sm-0,
+.bootstrap .mx-sm-0 {
margin-left: 0 !important;
}
-
- .m-sm-1 {
+ .bootstrap .m-sm-1 {
margin: 0.25rem !important;
}
-
- .mt-sm-1,
- .my-sm-1 {
+ .bootstrap .mt-sm-1,
+.bootstrap .my-sm-1 {
margin-top: 0.25rem !important;
}
-
- .mr-sm-1,
- .mx-sm-1 {
+ .bootstrap .mr-sm-1,
+.bootstrap .mx-sm-1 {
margin-right: 0.25rem !important;
}
-
- .mb-sm-1,
- .my-sm-1 {
+ .bootstrap .mb-sm-1,
+.bootstrap .my-sm-1 {
margin-bottom: 0.25rem !important;
}
-
- .ml-sm-1,
- .mx-sm-1 {
+ .bootstrap .ml-sm-1,
+.bootstrap .mx-sm-1 {
margin-left: 0.25rem !important;
}
-
- .m-sm-2 {
+ .bootstrap .m-sm-2 {
margin: 0.5rem !important;
}
-
- .mt-sm-2,
- .my-sm-2 {
+ .bootstrap .mt-sm-2,
+.bootstrap .my-sm-2 {
margin-top: 0.5rem !important;
}
-
- .mr-sm-2,
- .mx-sm-2 {
+ .bootstrap .mr-sm-2,
+.bootstrap .mx-sm-2 {
margin-right: 0.5rem !important;
}
-
- .mb-sm-2,
- .my-sm-2 {
+ .bootstrap .mb-sm-2,
+.bootstrap .my-sm-2 {
margin-bottom: 0.5rem !important;
}
-
- .ml-sm-2,
- .mx-sm-2 {
+ .bootstrap .ml-sm-2,
+.bootstrap .mx-sm-2 {
margin-left: 0.5rem !important;
}
-
- .m-sm-3 {
+ .bootstrap .m-sm-3 {
margin: 1rem !important;
}
-
- .mt-sm-3,
- .my-sm-3 {
+ .bootstrap .mt-sm-3,
+.bootstrap .my-sm-3 {
margin-top: 1rem !important;
}
-
- .mr-sm-3,
- .mx-sm-3 {
+ .bootstrap .mr-sm-3,
+.bootstrap .mx-sm-3 {
margin-right: 1rem !important;
}
-
- .mb-sm-3,
- .my-sm-3 {
+ .bootstrap .mb-sm-3,
+.bootstrap .my-sm-3 {
margin-bottom: 1rem !important;
}
-
- .ml-sm-3,
- .mx-sm-3 {
+ .bootstrap .ml-sm-3,
+.bootstrap .mx-sm-3 {
margin-left: 1rem !important;
}
-
- .m-sm-4 {
+ .bootstrap .m-sm-4 {
margin: 1.5rem !important;
}
-
- .mt-sm-4,
- .my-sm-4 {
+ .bootstrap .mt-sm-4,
+.bootstrap .my-sm-4 {
margin-top: 1.5rem !important;
}
-
- .mr-sm-4,
- .mx-sm-4 {
+ .bootstrap .mr-sm-4,
+.bootstrap .mx-sm-4 {
margin-right: 1.5rem !important;
}
-
- .mb-sm-4,
- .my-sm-4 {
+ .bootstrap .mb-sm-4,
+.bootstrap .my-sm-4 {
margin-bottom: 1.5rem !important;
}
-
- .ml-sm-4,
- .mx-sm-4 {
+ .bootstrap .ml-sm-4,
+.bootstrap .mx-sm-4 {
margin-left: 1.5rem !important;
}
-
- .m-sm-5 {
+ .bootstrap .m-sm-5 {
margin: 3rem !important;
}
-
- .mt-sm-5,
- .my-sm-5 {
+ .bootstrap .mt-sm-5,
+.bootstrap .my-sm-5 {
margin-top: 3rem !important;
}
-
- .mr-sm-5,
- .mx-sm-5 {
+ .bootstrap .mr-sm-5,
+.bootstrap .mx-sm-5 {
margin-right: 3rem !important;
}
-
- .mb-sm-5,
- .my-sm-5 {
+ .bootstrap .mb-sm-5,
+.bootstrap .my-sm-5 {
margin-bottom: 3rem !important;
}
-
- .ml-sm-5,
- .mx-sm-5 {
+ .bootstrap .ml-sm-5,
+.bootstrap .mx-sm-5 {
margin-left: 3rem !important;
}
-
- .p-sm-0 {
+ .bootstrap .p-sm-0 {
padding: 0 !important;
}
-
- .pt-sm-0,
- .py-sm-0 {
+ .bootstrap .pt-sm-0,
+.bootstrap .py-sm-0 {
padding-top: 0 !important;
}
-
- .pr-sm-0,
- .px-sm-0 {
+ .bootstrap .pr-sm-0,
+.bootstrap .px-sm-0 {
padding-right: 0 !important;
}
-
- .pb-sm-0,
- .py-sm-0 {
+ .bootstrap .pb-sm-0,
+.bootstrap .py-sm-0 {
padding-bottom: 0 !important;
}
-
- .pl-sm-0,
- .px-sm-0 {
+ .bootstrap .pl-sm-0,
+.bootstrap .px-sm-0 {
padding-left: 0 !important;
}
-
- .p-sm-1 {
+ .bootstrap .p-sm-1 {
padding: 0.25rem !important;
}
-
- .pt-sm-1,
- .py-sm-1 {
+ .bootstrap .pt-sm-1,
+.bootstrap .py-sm-1 {
padding-top: 0.25rem !important;
}
-
- .pr-sm-1,
- .px-sm-1 {
+ .bootstrap .pr-sm-1,
+.bootstrap .px-sm-1 {
padding-right: 0.25rem !important;
}
-
- .pb-sm-1,
- .py-sm-1 {
+ .bootstrap .pb-sm-1,
+.bootstrap .py-sm-1 {
padding-bottom: 0.25rem !important;
}
-
- .pl-sm-1,
- .px-sm-1 {
+ .bootstrap .pl-sm-1,
+.bootstrap .px-sm-1 {
padding-left: 0.25rem !important;
}
-
- .p-sm-2 {
+ .bootstrap .p-sm-2 {
padding: 0.5rem !important;
}
-
- .pt-sm-2,
- .py-sm-2 {
+ .bootstrap .pt-sm-2,
+.bootstrap .py-sm-2 {
padding-top: 0.5rem !important;
}
-
- .pr-sm-2,
- .px-sm-2 {
+ .bootstrap .pr-sm-2,
+.bootstrap .px-sm-2 {
padding-right: 0.5rem !important;
}
-
- .pb-sm-2,
- .py-sm-2 {
+ .bootstrap .pb-sm-2,
+.bootstrap .py-sm-2 {
padding-bottom: 0.5rem !important;
}
-
- .pl-sm-2,
- .px-sm-2 {
+ .bootstrap .pl-sm-2,
+.bootstrap .px-sm-2 {
padding-left: 0.5rem !important;
}
-
- .p-sm-3 {
+ .bootstrap .p-sm-3 {
padding: 1rem !important;
}
-
- .pt-sm-3,
- .py-sm-3 {
+ .bootstrap .pt-sm-3,
+.bootstrap .py-sm-3 {
padding-top: 1rem !important;
}
-
- .pr-sm-3,
- .px-sm-3 {
+ .bootstrap .pr-sm-3,
+.bootstrap .px-sm-3 {
padding-right: 1rem !important;
}
-
- .pb-sm-3,
- .py-sm-3 {
+ .bootstrap .pb-sm-3,
+.bootstrap .py-sm-3 {
padding-bottom: 1rem !important;
}
-
- .pl-sm-3,
- .px-sm-3 {
+ .bootstrap .pl-sm-3,
+.bootstrap .px-sm-3 {
padding-left: 1rem !important;
}
-
- .p-sm-4 {
+ .bootstrap .p-sm-4 {
padding: 1.5rem !important;
}
-
- .pt-sm-4,
- .py-sm-4 {
+ .bootstrap .pt-sm-4,
+.bootstrap .py-sm-4 {
padding-top: 1.5rem !important;
}
-
- .pr-sm-4,
- .px-sm-4 {
+ .bootstrap .pr-sm-4,
+.bootstrap .px-sm-4 {
padding-right: 1.5rem !important;
}
-
- .pb-sm-4,
- .py-sm-4 {
+ .bootstrap .pb-sm-4,
+.bootstrap .py-sm-4 {
padding-bottom: 1.5rem !important;
}
-
- .pl-sm-4,
- .px-sm-4 {
+ .bootstrap .pl-sm-4,
+.bootstrap .px-sm-4 {
padding-left: 1.5rem !important;
}
-
- .p-sm-5 {
+ .bootstrap .p-sm-5 {
padding: 3rem !important;
}
-
- .pt-sm-5,
- .py-sm-5 {
+ .bootstrap .pt-sm-5,
+.bootstrap .py-sm-5 {
padding-top: 3rem !important;
}
-
- .pr-sm-5,
- .px-sm-5 {
+ .bootstrap .pr-sm-5,
+.bootstrap .px-sm-5 {
padding-right: 3rem !important;
}
-
- .pb-sm-5,
- .py-sm-5 {
+ .bootstrap .pb-sm-5,
+.bootstrap .py-sm-5 {
padding-bottom: 3rem !important;
}
-
- .pl-sm-5,
- .px-sm-5 {
+ .bootstrap .pl-sm-5,
+.bootstrap .px-sm-5 {
padding-left: 3rem !important;
}
-
- .m-sm-n1 {
+ .bootstrap .m-sm-n1 {
margin: -0.25rem !important;
}
-
- .mt-sm-n1,
- .my-sm-n1 {
+ .bootstrap .mt-sm-n1,
+.bootstrap .my-sm-n1 {
margin-top: -0.25rem !important;
}
-
- .mr-sm-n1,
- .mx-sm-n1 {
+ .bootstrap .mr-sm-n1,
+.bootstrap .mx-sm-n1 {
margin-right: -0.25rem !important;
}
-
- .mb-sm-n1,
- .my-sm-n1 {
+ .bootstrap .mb-sm-n1,
+.bootstrap .my-sm-n1 {
margin-bottom: -0.25rem !important;
}
-
- .ml-sm-n1,
- .mx-sm-n1 {
+ .bootstrap .ml-sm-n1,
+.bootstrap .mx-sm-n1 {
margin-left: -0.25rem !important;
}
-
- .m-sm-n2 {
+ .bootstrap .m-sm-n2 {
margin: -0.5rem !important;
}
-
- .mt-sm-n2,
- .my-sm-n2 {
+ .bootstrap .mt-sm-n2,
+.bootstrap .my-sm-n2 {
margin-top: -0.5rem !important;
}
-
- .mr-sm-n2,
- .mx-sm-n2 {
+ .bootstrap .mr-sm-n2,
+.bootstrap .mx-sm-n2 {
margin-right: -0.5rem !important;
}
-
- .mb-sm-n2,
- .my-sm-n2 {
+ .bootstrap .mb-sm-n2,
+.bootstrap .my-sm-n2 {
margin-bottom: -0.5rem !important;
}
-
- .ml-sm-n2,
- .mx-sm-n2 {
+ .bootstrap .ml-sm-n2,
+.bootstrap .mx-sm-n2 {
margin-left: -0.5rem !important;
}
-
- .m-sm-n3 {
+ .bootstrap .m-sm-n3 {
margin: -1rem !important;
}
-
- .mt-sm-n3,
- .my-sm-n3 {
+ .bootstrap .mt-sm-n3,
+.bootstrap .my-sm-n3 {
margin-top: -1rem !important;
}
-
- .mr-sm-n3,
- .mx-sm-n3 {
+ .bootstrap .mr-sm-n3,
+.bootstrap .mx-sm-n3 {
margin-right: -1rem !important;
}
-
- .mb-sm-n3,
- .my-sm-n3 {
+ .bootstrap .mb-sm-n3,
+.bootstrap .my-sm-n3 {
margin-bottom: -1rem !important;
}
-
- .ml-sm-n3,
- .mx-sm-n3 {
+ .bootstrap .ml-sm-n3,
+.bootstrap .mx-sm-n3 {
margin-left: -1rem !important;
}
-
- .m-sm-n4 {
+ .bootstrap .m-sm-n4 {
margin: -1.5rem !important;
}
-
- .mt-sm-n4,
- .my-sm-n4 {
+ .bootstrap .mt-sm-n4,
+.bootstrap .my-sm-n4 {
margin-top: -1.5rem !important;
}
-
- .mr-sm-n4,
- .mx-sm-n4 {
+ .bootstrap .mr-sm-n4,
+.bootstrap .mx-sm-n4 {
margin-right: -1.5rem !important;
}
-
- .mb-sm-n4,
- .my-sm-n4 {
+ .bootstrap .mb-sm-n4,
+.bootstrap .my-sm-n4 {
margin-bottom: -1.5rem !important;
}
-
- .ml-sm-n4,
- .mx-sm-n4 {
+ .bootstrap .ml-sm-n4,
+.bootstrap .mx-sm-n4 {
margin-left: -1.5rem !important;
}
-
- .m-sm-n5 {
+ .bootstrap .m-sm-n5 {
margin: -3rem !important;
}
-
- .mt-sm-n5,
- .my-sm-n5 {
+ .bootstrap .mt-sm-n5,
+.bootstrap .my-sm-n5 {
margin-top: -3rem !important;
}
-
- .mr-sm-n5,
- .mx-sm-n5 {
+ .bootstrap .mr-sm-n5,
+.bootstrap .mx-sm-n5 {
margin-right: -3rem !important;
}
-
- .mb-sm-n5,
- .my-sm-n5 {
+ .bootstrap .mb-sm-n5,
+.bootstrap .my-sm-n5 {
margin-bottom: -3rem !important;
}
-
- .ml-sm-n5,
- .mx-sm-n5 {
+ .bootstrap .ml-sm-n5,
+.bootstrap .mx-sm-n5 {
margin-left: -3rem !important;
}
-
- .m-sm-auto {
+ .bootstrap .m-sm-auto {
margin: auto !important;
}
-
- .mt-sm-auto,
- .my-sm-auto {
+ .bootstrap .mt-sm-auto,
+.bootstrap .my-sm-auto {
margin-top: auto !important;
}
-
- .mr-sm-auto,
- .mx-sm-auto {
+ .bootstrap .mr-sm-auto,
+.bootstrap .mx-sm-auto {
margin-right: auto !important;
}
-
- .mb-sm-auto,
- .my-sm-auto {
+ .bootstrap .mb-sm-auto,
+.bootstrap .my-sm-auto {
margin-bottom: auto !important;
}
-
- .ml-sm-auto,
- .mx-sm-auto {
+ .bootstrap .ml-sm-auto,
+.bootstrap .mx-sm-auto {
margin-left: auto !important;
}
}
-
@media (min-width: 768px) {
- .m-md-0 {
+ .bootstrap .m-md-0 {
margin: 0 !important;
}
-
- .mt-md-0,
- .my-md-0 {
+ .bootstrap .mt-md-0,
+.bootstrap .my-md-0 {
margin-top: 0 !important;
}
-
- .mr-md-0,
- .mx-md-0 {
+ .bootstrap .mr-md-0,
+.bootstrap .mx-md-0 {
margin-right: 0 !important;
}
-
- .mb-md-0,
- .my-md-0 {
+ .bootstrap .mb-md-0,
+.bootstrap .my-md-0 {
margin-bottom: 0 !important;
}
-
- .ml-md-0,
- .mx-md-0 {
+ .bootstrap .ml-md-0,
+.bootstrap .mx-md-0 {
margin-left: 0 !important;
}
-
- .m-md-1 {
+ .bootstrap .m-md-1 {
margin: 0.25rem !important;
}
-
- .mt-md-1,
- .my-md-1 {
+ .bootstrap .mt-md-1,
+.bootstrap .my-md-1 {
margin-top: 0.25rem !important;
}
-
- .mr-md-1,
- .mx-md-1 {
+ .bootstrap .mr-md-1,
+.bootstrap .mx-md-1 {
margin-right: 0.25rem !important;
}
-
- .mb-md-1,
- .my-md-1 {
+ .bootstrap .mb-md-1,
+.bootstrap .my-md-1 {
margin-bottom: 0.25rem !important;
}
-
- .ml-md-1,
- .mx-md-1 {
+ .bootstrap .ml-md-1,
+.bootstrap .mx-md-1 {
margin-left: 0.25rem !important;
}
-
- .m-md-2 {
+ .bootstrap .m-md-2 {
margin: 0.5rem !important;
}
-
- .mt-md-2,
- .my-md-2 {
+ .bootstrap .mt-md-2,
+.bootstrap .my-md-2 {
margin-top: 0.5rem !important;
}
-
- .mr-md-2,
- .mx-md-2 {
+ .bootstrap .mr-md-2,
+.bootstrap .mx-md-2 {
margin-right: 0.5rem !important;
}
-
- .mb-md-2,
- .my-md-2 {
+ .bootstrap .mb-md-2,
+.bootstrap .my-md-2 {
margin-bottom: 0.5rem !important;
}
-
- .ml-md-2,
- .mx-md-2 {
+ .bootstrap .ml-md-2,
+.bootstrap .mx-md-2 {
margin-left: 0.5rem !important;
}
-
- .m-md-3 {
+ .bootstrap .m-md-3 {
margin: 1rem !important;
}
-
- .mt-md-3,
- .my-md-3 {
+ .bootstrap .mt-md-3,
+.bootstrap .my-md-3 {
margin-top: 1rem !important;
}
-
- .mr-md-3,
- .mx-md-3 {
+ .bootstrap .mr-md-3,
+.bootstrap .mx-md-3 {
margin-right: 1rem !important;
}
-
- .mb-md-3,
- .my-md-3 {
+ .bootstrap .mb-md-3,
+.bootstrap .my-md-3 {
margin-bottom: 1rem !important;
}
-
- .ml-md-3,
- .mx-md-3 {
+ .bootstrap .ml-md-3,
+.bootstrap .mx-md-3 {
margin-left: 1rem !important;
}
-
- .m-md-4 {
+ .bootstrap .m-md-4 {
margin: 1.5rem !important;
}
-
- .mt-md-4,
- .my-md-4 {
+ .bootstrap .mt-md-4,
+.bootstrap .my-md-4 {
margin-top: 1.5rem !important;
}
-
- .mr-md-4,
- .mx-md-4 {
+ .bootstrap .mr-md-4,
+.bootstrap .mx-md-4 {
margin-right: 1.5rem !important;
}
-
- .mb-md-4,
- .my-md-4 {
+ .bootstrap .mb-md-4,
+.bootstrap .my-md-4 {
margin-bottom: 1.5rem !important;
}
-
- .ml-md-4,
- .mx-md-4 {
+ .bootstrap .ml-md-4,
+.bootstrap .mx-md-4 {
margin-left: 1.5rem !important;
}
-
- .m-md-5 {
+ .bootstrap .m-md-5 {
margin: 3rem !important;
}
-
- .mt-md-5,
- .my-md-5 {
+ .bootstrap .mt-md-5,
+.bootstrap .my-md-5 {
margin-top: 3rem !important;
}
-
- .mr-md-5,
- .mx-md-5 {
+ .bootstrap .mr-md-5,
+.bootstrap .mx-md-5 {
margin-right: 3rem !important;
}
-
- .mb-md-5,
- .my-md-5 {
+ .bootstrap .mb-md-5,
+.bootstrap .my-md-5 {
margin-bottom: 3rem !important;
}
-
- .ml-md-5,
- .mx-md-5 {
+ .bootstrap .ml-md-5,
+.bootstrap .mx-md-5 {
margin-left: 3rem !important;
}
-
- .p-md-0 {
+ .bootstrap .p-md-0 {
padding: 0 !important;
}
-
- .pt-md-0,
- .py-md-0 {
+ .bootstrap .pt-md-0,
+.bootstrap .py-md-0 {
padding-top: 0 !important;
}
-
- .pr-md-0,
- .px-md-0 {
+ .bootstrap .pr-md-0,
+.bootstrap .px-md-0 {
padding-right: 0 !important;
}
-
- .pb-md-0,
- .py-md-0 {
+ .bootstrap .pb-md-0,
+.bootstrap .py-md-0 {
padding-bottom: 0 !important;
}
-
- .pl-md-0,
- .px-md-0 {
+ .bootstrap .pl-md-0,
+.bootstrap .px-md-0 {
padding-left: 0 !important;
}
-
- .p-md-1 {
+ .bootstrap .p-md-1 {
padding: 0.25rem !important;
}
-
- .pt-md-1,
- .py-md-1 {
+ .bootstrap .pt-md-1,
+.bootstrap .py-md-1 {
padding-top: 0.25rem !important;
}
-
- .pr-md-1,
- .px-md-1 {
+ .bootstrap .pr-md-1,
+.bootstrap .px-md-1 {
padding-right: 0.25rem !important;
}
-
- .pb-md-1,
- .py-md-1 {
+ .bootstrap .pb-md-1,
+.bootstrap .py-md-1 {
padding-bottom: 0.25rem !important;
}
-
- .pl-md-1,
- .px-md-1 {
+ .bootstrap .pl-md-1,
+.bootstrap .px-md-1 {
padding-left: 0.25rem !important;
}
-
- .p-md-2 {
+ .bootstrap .p-md-2 {
padding: 0.5rem !important;
}
-
- .pt-md-2,
- .py-md-2 {
+ .bootstrap .pt-md-2,
+.bootstrap .py-md-2 {
padding-top: 0.5rem !important;
}
-
- .pr-md-2,
- .px-md-2 {
+ .bootstrap .pr-md-2,
+.bootstrap .px-md-2 {
padding-right: 0.5rem !important;
}
-
- .pb-md-2,
- .py-md-2 {
+ .bootstrap .pb-md-2,
+.bootstrap .py-md-2 {
padding-bottom: 0.5rem !important;
}
-
- .pl-md-2,
- .px-md-2 {
+ .bootstrap .pl-md-2,
+.bootstrap .px-md-2 {
padding-left: 0.5rem !important;
}
-
- .p-md-3 {
+ .bootstrap .p-md-3 {
padding: 1rem !important;
}
-
- .pt-md-3,
- .py-md-3 {
+ .bootstrap .pt-md-3,
+.bootstrap .py-md-3 {
padding-top: 1rem !important;
}
-
- .pr-md-3,
- .px-md-3 {
+ .bootstrap .pr-md-3,
+.bootstrap .px-md-3 {
padding-right: 1rem !important;
}
-
- .pb-md-3,
- .py-md-3 {
+ .bootstrap .pb-md-3,
+.bootstrap .py-md-3 {
padding-bottom: 1rem !important;
}
-
- .pl-md-3,
- .px-md-3 {
+ .bootstrap .pl-md-3,
+.bootstrap .px-md-3 {
padding-left: 1rem !important;
}
-
- .p-md-4 {
+ .bootstrap .p-md-4 {
padding: 1.5rem !important;
}
-
- .pt-md-4,
- .py-md-4 {
+ .bootstrap .pt-md-4,
+.bootstrap .py-md-4 {
padding-top: 1.5rem !important;
}
-
- .pr-md-4,
- .px-md-4 {
+ .bootstrap .pr-md-4,
+.bootstrap .px-md-4 {
padding-right: 1.5rem !important;
}
-
- .pb-md-4,
- .py-md-4 {
+ .bootstrap .pb-md-4,
+.bootstrap .py-md-4 {
padding-bottom: 1.5rem !important;
}
-
- .pl-md-4,
- .px-md-4 {
+ .bootstrap .pl-md-4,
+.bootstrap .px-md-4 {
padding-left: 1.5rem !important;
}
-
- .p-md-5 {
+ .bootstrap .p-md-5 {
padding: 3rem !important;
}
-
- .pt-md-5,
- .py-md-5 {
+ .bootstrap .pt-md-5,
+.bootstrap .py-md-5 {
padding-top: 3rem !important;
}
-
- .pr-md-5,
- .px-md-5 {
+ .bootstrap .pr-md-5,
+.bootstrap .px-md-5 {
padding-right: 3rem !important;
}
-
- .pb-md-5,
- .py-md-5 {
+ .bootstrap .pb-md-5,
+.bootstrap .py-md-5 {
padding-bottom: 3rem !important;
}
-
- .pl-md-5,
- .px-md-5 {
+ .bootstrap .pl-md-5,
+.bootstrap .px-md-5 {
padding-left: 3rem !important;
}
-
- .m-md-n1 {
+ .bootstrap .m-md-n1 {
margin: -0.25rem !important;
}
-
- .mt-md-n1,
- .my-md-n1 {
+ .bootstrap .mt-md-n1,
+.bootstrap .my-md-n1 {
margin-top: -0.25rem !important;
}
-
- .mr-md-n1,
- .mx-md-n1 {
+ .bootstrap .mr-md-n1,
+.bootstrap .mx-md-n1 {
margin-right: -0.25rem !important;
}
-
- .mb-md-n1,
- .my-md-n1 {
+ .bootstrap .mb-md-n1,
+.bootstrap .my-md-n1 {
margin-bottom: -0.25rem !important;
}
-
- .ml-md-n1,
- .mx-md-n1 {
+ .bootstrap .ml-md-n1,
+.bootstrap .mx-md-n1 {
margin-left: -0.25rem !important;
}
-
- .m-md-n2 {
+ .bootstrap .m-md-n2 {
margin: -0.5rem !important;
}
-
- .mt-md-n2,
- .my-md-n2 {
+ .bootstrap .mt-md-n2,
+.bootstrap .my-md-n2 {
margin-top: -0.5rem !important;
}
-
- .mr-md-n2,
- .mx-md-n2 {
+ .bootstrap .mr-md-n2,
+.bootstrap .mx-md-n2 {
margin-right: -0.5rem !important;
}
-
- .mb-md-n2,
- .my-md-n2 {
+ .bootstrap .mb-md-n2,
+.bootstrap .my-md-n2 {
margin-bottom: -0.5rem !important;
}
-
- .ml-md-n2,
- .mx-md-n2 {
+ .bootstrap .ml-md-n2,
+.bootstrap .mx-md-n2 {
margin-left: -0.5rem !important;
}
-
- .m-md-n3 {
+ .bootstrap .m-md-n3 {
margin: -1rem !important;
}
-
- .mt-md-n3,
- .my-md-n3 {
+ .bootstrap .mt-md-n3,
+.bootstrap .my-md-n3 {
margin-top: -1rem !important;
}
-
- .mr-md-n3,
- .mx-md-n3 {
+ .bootstrap .mr-md-n3,
+.bootstrap .mx-md-n3 {
margin-right: -1rem !important;
}
-
- .mb-md-n3,
- .my-md-n3 {
+ .bootstrap .mb-md-n3,
+.bootstrap .my-md-n3 {
margin-bottom: -1rem !important;
}
-
- .ml-md-n3,
- .mx-md-n3 {
+ .bootstrap .ml-md-n3,
+.bootstrap .mx-md-n3 {
margin-left: -1rem !important;
}
-
- .m-md-n4 {
+ .bootstrap .m-md-n4 {
margin: -1.5rem !important;
}
-
- .mt-md-n4,
- .my-md-n4 {
+ .bootstrap .mt-md-n4,
+.bootstrap .my-md-n4 {
margin-top: -1.5rem !important;
}
-
- .mr-md-n4,
- .mx-md-n4 {
+ .bootstrap .mr-md-n4,
+.bootstrap .mx-md-n4 {
margin-right: -1.5rem !important;
}
-
- .mb-md-n4,
- .my-md-n4 {
+ .bootstrap .mb-md-n4,
+.bootstrap .my-md-n4 {
margin-bottom: -1.5rem !important;
}
-
- .ml-md-n4,
- .mx-md-n4 {
+ .bootstrap .ml-md-n4,
+.bootstrap .mx-md-n4 {
margin-left: -1.5rem !important;
}
-
- .m-md-n5 {
+ .bootstrap .m-md-n5 {
margin: -3rem !important;
}
-
- .mt-md-n5,
- .my-md-n5 {
+ .bootstrap .mt-md-n5,
+.bootstrap .my-md-n5 {
margin-top: -3rem !important;
}
-
- .mr-md-n5,
- .mx-md-n5 {
+ .bootstrap .mr-md-n5,
+.bootstrap .mx-md-n5 {
margin-right: -3rem !important;
}
-
- .mb-md-n5,
- .my-md-n5 {
+ .bootstrap .mb-md-n5,
+.bootstrap .my-md-n5 {
margin-bottom: -3rem !important;
}
-
- .ml-md-n5,
- .mx-md-n5 {
+ .bootstrap .ml-md-n5,
+.bootstrap .mx-md-n5 {
margin-left: -3rem !important;
}
-
- .m-md-auto {
+ .bootstrap .m-md-auto {
margin: auto !important;
}
-
- .mt-md-auto,
- .my-md-auto {
+ .bootstrap .mt-md-auto,
+.bootstrap .my-md-auto {
margin-top: auto !important;
}
-
- .mr-md-auto,
- .mx-md-auto {
+ .bootstrap .mr-md-auto,
+.bootstrap .mx-md-auto {
margin-right: auto !important;
}
-
- .mb-md-auto,
- .my-md-auto {
+ .bootstrap .mb-md-auto,
+.bootstrap .my-md-auto {
margin-bottom: auto !important;
}
-
- .ml-md-auto,
- .mx-md-auto {
+ .bootstrap .ml-md-auto,
+.bootstrap .mx-md-auto {
margin-left: auto !important;
}
}
-
@media (min-width: 992px) {
- .m-lg-0 {
+ .bootstrap .m-lg-0 {
margin: 0 !important;
}
-
- .mt-lg-0,
- .my-lg-0 {
+ .bootstrap .mt-lg-0,
+.bootstrap .my-lg-0 {
margin-top: 0 !important;
}
-
- .mr-lg-0,
- .mx-lg-0 {
+ .bootstrap .mr-lg-0,
+.bootstrap .mx-lg-0 {
margin-right: 0 !important;
}
-
- .mb-lg-0,
- .my-lg-0 {
+ .bootstrap .mb-lg-0,
+.bootstrap .my-lg-0 {
margin-bottom: 0 !important;
}
-
- .ml-lg-0,
- .mx-lg-0 {
+ .bootstrap .ml-lg-0,
+.bootstrap .mx-lg-0 {
margin-left: 0 !important;
}
-
- .m-lg-1 {
+ .bootstrap .m-lg-1 {
margin: 0.25rem !important;
}
-
- .mt-lg-1,
- .my-lg-1 {
+ .bootstrap .mt-lg-1,
+.bootstrap .my-lg-1 {
margin-top: 0.25rem !important;
}
-
- .mr-lg-1,
- .mx-lg-1 {
+ .bootstrap .mr-lg-1,
+.bootstrap .mx-lg-1 {
margin-right: 0.25rem !important;
}
-
- .mb-lg-1,
- .my-lg-1 {
+ .bootstrap .mb-lg-1,
+.bootstrap .my-lg-1 {
margin-bottom: 0.25rem !important;
}
-
- .ml-lg-1,
- .mx-lg-1 {
+ .bootstrap .ml-lg-1,
+.bootstrap .mx-lg-1 {
margin-left: 0.25rem !important;
}
-
- .m-lg-2 {
+ .bootstrap .m-lg-2 {
margin: 0.5rem !important;
}
-
- .mt-lg-2,
- .my-lg-2 {
+ .bootstrap .mt-lg-2,
+.bootstrap .my-lg-2 {
margin-top: 0.5rem !important;
}
-
- .mr-lg-2,
- .mx-lg-2 {
+ .bootstrap .mr-lg-2,
+.bootstrap .mx-lg-2 {
margin-right: 0.5rem !important;
}
-
- .mb-lg-2,
- .my-lg-2 {
+ .bootstrap .mb-lg-2,
+.bootstrap .my-lg-2 {
margin-bottom: 0.5rem !important;
}
-
- .ml-lg-2,
- .mx-lg-2 {
+ .bootstrap .ml-lg-2,
+.bootstrap .mx-lg-2 {
margin-left: 0.5rem !important;
}
-
- .m-lg-3 {
+ .bootstrap .m-lg-3 {
margin: 1rem !important;
}
-
- .mt-lg-3,
- .my-lg-3 {
+ .bootstrap .mt-lg-3,
+.bootstrap .my-lg-3 {
margin-top: 1rem !important;
}
-
- .mr-lg-3,
- .mx-lg-3 {
+ .bootstrap .mr-lg-3,
+.bootstrap .mx-lg-3 {
margin-right: 1rem !important;
}
-
- .mb-lg-3,
- .my-lg-3 {
+ .bootstrap .mb-lg-3,
+.bootstrap .my-lg-3 {
margin-bottom: 1rem !important;
}
-
- .ml-lg-3,
- .mx-lg-3 {
+ .bootstrap .ml-lg-3,
+.bootstrap .mx-lg-3 {
margin-left: 1rem !important;
}
-
- .m-lg-4 {
+ .bootstrap .m-lg-4 {
margin: 1.5rem !important;
}
-
- .mt-lg-4,
- .my-lg-4 {
+ .bootstrap .mt-lg-4,
+.bootstrap .my-lg-4 {
margin-top: 1.5rem !important;
}
-
- .mr-lg-4,
- .mx-lg-4 {
+ .bootstrap .mr-lg-4,
+.bootstrap .mx-lg-4 {
margin-right: 1.5rem !important;
}
-
- .mb-lg-4,
- .my-lg-4 {
+ .bootstrap .mb-lg-4,
+.bootstrap .my-lg-4 {
margin-bottom: 1.5rem !important;
}
-
- .ml-lg-4,
- .mx-lg-4 {
+ .bootstrap .ml-lg-4,
+.bootstrap .mx-lg-4 {
margin-left: 1.5rem !important;
}
-
- .m-lg-5 {
+ .bootstrap .m-lg-5 {
margin: 3rem !important;
}
-
- .mt-lg-5,
- .my-lg-5 {
+ .bootstrap .mt-lg-5,
+.bootstrap .my-lg-5 {
margin-top: 3rem !important;
}
-
- .mr-lg-5,
- .mx-lg-5 {
+ .bootstrap .mr-lg-5,
+.bootstrap .mx-lg-5 {
margin-right: 3rem !important;
}
-
- .mb-lg-5,
- .my-lg-5 {
+ .bootstrap .mb-lg-5,
+.bootstrap .my-lg-5 {
margin-bottom: 3rem !important;
}
-
- .ml-lg-5,
- .mx-lg-5 {
+ .bootstrap .ml-lg-5,
+.bootstrap .mx-lg-5 {
margin-left: 3rem !important;
}
-
- .p-lg-0 {
+ .bootstrap .p-lg-0 {
padding: 0 !important;
}
-
- .pt-lg-0,
- .py-lg-0 {
+ .bootstrap .pt-lg-0,
+.bootstrap .py-lg-0 {
padding-top: 0 !important;
}
-
- .pr-lg-0,
- .px-lg-0 {
+ .bootstrap .pr-lg-0,
+.bootstrap .px-lg-0 {
padding-right: 0 !important;
}
-
- .pb-lg-0,
- .py-lg-0 {
+ .bootstrap .pb-lg-0,
+.bootstrap .py-lg-0 {
padding-bottom: 0 !important;
}
-
- .pl-lg-0,
- .px-lg-0 {
+ .bootstrap .pl-lg-0,
+.bootstrap .px-lg-0 {
padding-left: 0 !important;
}
-
- .p-lg-1 {
+ .bootstrap .p-lg-1 {
padding: 0.25rem !important;
}
-
- .pt-lg-1,
- .py-lg-1 {
+ .bootstrap .pt-lg-1,
+.bootstrap .py-lg-1 {
padding-top: 0.25rem !important;
}
-
- .pr-lg-1,
- .px-lg-1 {
+ .bootstrap .pr-lg-1,
+.bootstrap .px-lg-1 {
padding-right: 0.25rem !important;
}
-
- .pb-lg-1,
- .py-lg-1 {
+ .bootstrap .pb-lg-1,
+.bootstrap .py-lg-1 {
padding-bottom: 0.25rem !important;
}
-
- .pl-lg-1,
- .px-lg-1 {
+ .bootstrap .pl-lg-1,
+.bootstrap .px-lg-1 {
padding-left: 0.25rem !important;
}
-
- .p-lg-2 {
+ .bootstrap .p-lg-2 {
padding: 0.5rem !important;
}
-
- .pt-lg-2,
- .py-lg-2 {
+ .bootstrap .pt-lg-2,
+.bootstrap .py-lg-2 {
padding-top: 0.5rem !important;
}
-
- .pr-lg-2,
- .px-lg-2 {
+ .bootstrap .pr-lg-2,
+.bootstrap .px-lg-2 {
padding-right: 0.5rem !important;
}
-
- .pb-lg-2,
- .py-lg-2 {
+ .bootstrap .pb-lg-2,
+.bootstrap .py-lg-2 {
padding-bottom: 0.5rem !important;
}
-
- .pl-lg-2,
- .px-lg-2 {
+ .bootstrap .pl-lg-2,
+.bootstrap .px-lg-2 {
padding-left: 0.5rem !important;
}
-
- .p-lg-3 {
+ .bootstrap .p-lg-3 {
padding: 1rem !important;
}
-
- .pt-lg-3,
- .py-lg-3 {
+ .bootstrap .pt-lg-3,
+.bootstrap .py-lg-3 {
padding-top: 1rem !important;
}
-
- .pr-lg-3,
- .px-lg-3 {
+ .bootstrap .pr-lg-3,
+.bootstrap .px-lg-3 {
padding-right: 1rem !important;
}
-
- .pb-lg-3,
- .py-lg-3 {
+ .bootstrap .pb-lg-3,
+.bootstrap .py-lg-3 {
padding-bottom: 1rem !important;
}
-
- .pl-lg-3,
- .px-lg-3 {
+ .bootstrap .pl-lg-3,
+.bootstrap .px-lg-3 {
padding-left: 1rem !important;
}
-
- .p-lg-4 {
+ .bootstrap .p-lg-4 {
padding: 1.5rem !important;
}
-
- .pt-lg-4,
- .py-lg-4 {
+ .bootstrap .pt-lg-4,
+.bootstrap .py-lg-4 {
padding-top: 1.5rem !important;
}
-
- .pr-lg-4,
- .px-lg-4 {
+ .bootstrap .pr-lg-4,
+.bootstrap .px-lg-4 {
padding-right: 1.5rem !important;
}
-
- .pb-lg-4,
- .py-lg-4 {
+ .bootstrap .pb-lg-4,
+.bootstrap .py-lg-4 {
padding-bottom: 1.5rem !important;
}
-
- .pl-lg-4,
- .px-lg-4 {
+ .bootstrap .pl-lg-4,
+.bootstrap .px-lg-4 {
padding-left: 1.5rem !important;
}
-
- .p-lg-5 {
+ .bootstrap .p-lg-5 {
padding: 3rem !important;
}
-
- .pt-lg-5,
- .py-lg-5 {
+ .bootstrap .pt-lg-5,
+.bootstrap .py-lg-5 {
padding-top: 3rem !important;
}
-
- .pr-lg-5,
- .px-lg-5 {
+ .bootstrap .pr-lg-5,
+.bootstrap .px-lg-5 {
padding-right: 3rem !important;
}
-
- .pb-lg-5,
- .py-lg-5 {
+ .bootstrap .pb-lg-5,
+.bootstrap .py-lg-5 {
padding-bottom: 3rem !important;
}
-
- .pl-lg-5,
- .px-lg-5 {
+ .bootstrap .pl-lg-5,
+.bootstrap .px-lg-5 {
padding-left: 3rem !important;
}
-
- .m-lg-n1 {
+ .bootstrap .m-lg-n1 {
margin: -0.25rem !important;
}
-
- .mt-lg-n1,
- .my-lg-n1 {
+ .bootstrap .mt-lg-n1,
+.bootstrap .my-lg-n1 {
margin-top: -0.25rem !important;
}
-
- .mr-lg-n1,
- .mx-lg-n1 {
+ .bootstrap .mr-lg-n1,
+.bootstrap .mx-lg-n1 {
margin-right: -0.25rem !important;
}
-
- .mb-lg-n1,
- .my-lg-n1 {
+ .bootstrap .mb-lg-n1,
+.bootstrap .my-lg-n1 {
margin-bottom: -0.25rem !important;
}
-
- .ml-lg-n1,
- .mx-lg-n1 {
+ .bootstrap .ml-lg-n1,
+.bootstrap .mx-lg-n1 {
margin-left: -0.25rem !important;
}
-
- .m-lg-n2 {
+ .bootstrap .m-lg-n2 {
margin: -0.5rem !important;
}
-
- .mt-lg-n2,
- .my-lg-n2 {
+ .bootstrap .mt-lg-n2,
+.bootstrap .my-lg-n2 {
margin-top: -0.5rem !important;
}
-
- .mr-lg-n2,
- .mx-lg-n2 {
+ .bootstrap .mr-lg-n2,
+.bootstrap .mx-lg-n2 {
margin-right: -0.5rem !important;
}
-
- .mb-lg-n2,
- .my-lg-n2 {
+ .bootstrap .mb-lg-n2,
+.bootstrap .my-lg-n2 {
margin-bottom: -0.5rem !important;
}
-
- .ml-lg-n2,
- .mx-lg-n2 {
+ .bootstrap .ml-lg-n2,
+.bootstrap .mx-lg-n2 {
margin-left: -0.5rem !important;
}
-
- .m-lg-n3 {
+ .bootstrap .m-lg-n3 {
margin: -1rem !important;
}
-
- .mt-lg-n3,
- .my-lg-n3 {
+ .bootstrap .mt-lg-n3,
+.bootstrap .my-lg-n3 {
margin-top: -1rem !important;
}
-
- .mr-lg-n3,
- .mx-lg-n3 {
+ .bootstrap .mr-lg-n3,
+.bootstrap .mx-lg-n3 {
margin-right: -1rem !important;
}
-
- .mb-lg-n3,
- .my-lg-n3 {
+ .bootstrap .mb-lg-n3,
+.bootstrap .my-lg-n3 {
margin-bottom: -1rem !important;
}
-
- .ml-lg-n3,
- .mx-lg-n3 {
+ .bootstrap .ml-lg-n3,
+.bootstrap .mx-lg-n3 {
margin-left: -1rem !important;
}
-
- .m-lg-n4 {
+ .bootstrap .m-lg-n4 {
margin: -1.5rem !important;
}
-
- .mt-lg-n4,
- .my-lg-n4 {
+ .bootstrap .mt-lg-n4,
+.bootstrap .my-lg-n4 {
margin-top: -1.5rem !important;
}
-
- .mr-lg-n4,
- .mx-lg-n4 {
+ .bootstrap .mr-lg-n4,
+.bootstrap .mx-lg-n4 {
margin-right: -1.5rem !important;
}
-
- .mb-lg-n4,
- .my-lg-n4 {
+ .bootstrap .mb-lg-n4,
+.bootstrap .my-lg-n4 {
margin-bottom: -1.5rem !important;
}
-
- .ml-lg-n4,
- .mx-lg-n4 {
+ .bootstrap .ml-lg-n4,
+.bootstrap .mx-lg-n4 {
margin-left: -1.5rem !important;
}
-
- .m-lg-n5 {
+ .bootstrap .m-lg-n5 {
margin: -3rem !important;
}
-
- .mt-lg-n5,
- .my-lg-n5 {
+ .bootstrap .mt-lg-n5,
+.bootstrap .my-lg-n5 {
margin-top: -3rem !important;
}
-
- .mr-lg-n5,
- .mx-lg-n5 {
+ .bootstrap .mr-lg-n5,
+.bootstrap .mx-lg-n5 {
margin-right: -3rem !important;
}
-
- .mb-lg-n5,
- .my-lg-n5 {
+ .bootstrap .mb-lg-n5,
+.bootstrap .my-lg-n5 {
margin-bottom: -3rem !important;
}
-
- .ml-lg-n5,
- .mx-lg-n5 {
+ .bootstrap .ml-lg-n5,
+.bootstrap .mx-lg-n5 {
margin-left: -3rem !important;
}
-
- .m-lg-auto {
+ .bootstrap .m-lg-auto {
margin: auto !important;
}
-
- .mt-lg-auto,
- .my-lg-auto {
+ .bootstrap .mt-lg-auto,
+.bootstrap .my-lg-auto {
margin-top: auto !important;
}
-
- .mr-lg-auto,
- .mx-lg-auto {
+ .bootstrap .mr-lg-auto,
+.bootstrap .mx-lg-auto {
margin-right: auto !important;
}
-
- .mb-lg-auto,
- .my-lg-auto {
+ .bootstrap .mb-lg-auto,
+.bootstrap .my-lg-auto {
margin-bottom: auto !important;
}
-
- .ml-lg-auto,
- .mx-lg-auto {
+ .bootstrap .ml-lg-auto,
+.bootstrap .mx-lg-auto {
margin-left: auto !important;
}
}
-
@media (min-width: 1200px) {
- .m-xl-0 {
+ .bootstrap .m-xl-0 {
margin: 0 !important;
}
-
- .mt-xl-0,
- .my-xl-0 {
+ .bootstrap .mt-xl-0,
+.bootstrap .my-xl-0 {
margin-top: 0 !important;
}
-
- .mr-xl-0,
- .mx-xl-0 {
+ .bootstrap .mr-xl-0,
+.bootstrap .mx-xl-0 {
margin-right: 0 !important;
}
-
- .mb-xl-0,
- .my-xl-0 {
+ .bootstrap .mb-xl-0,
+.bootstrap .my-xl-0 {
margin-bottom: 0 !important;
}
-
- .ml-xl-0,
- .mx-xl-0 {
+ .bootstrap .ml-xl-0,
+.bootstrap .mx-xl-0 {
margin-left: 0 !important;
}
-
- .m-xl-1 {
+ .bootstrap .m-xl-1 {
margin: 0.25rem !important;
}
-
- .mt-xl-1,
- .my-xl-1 {
+ .bootstrap .mt-xl-1,
+.bootstrap .my-xl-1 {
margin-top: 0.25rem !important;
}
-
- .mr-xl-1,
- .mx-xl-1 {
+ .bootstrap .mr-xl-1,
+.bootstrap .mx-xl-1 {
margin-right: 0.25rem !important;
}
-
- .mb-xl-1,
- .my-xl-1 {
+ .bootstrap .mb-xl-1,
+.bootstrap .my-xl-1 {
margin-bottom: 0.25rem !important;
}
-
- .ml-xl-1,
- .mx-xl-1 {
+ .bootstrap .ml-xl-1,
+.bootstrap .mx-xl-1 {
margin-left: 0.25rem !important;
}
-
- .m-xl-2 {
+ .bootstrap .m-xl-2 {
margin: 0.5rem !important;
}
-
- .mt-xl-2,
- .my-xl-2 {
+ .bootstrap .mt-xl-2,
+.bootstrap .my-xl-2 {
margin-top: 0.5rem !important;
}
-
- .mr-xl-2,
- .mx-xl-2 {
+ .bootstrap .mr-xl-2,
+.bootstrap .mx-xl-2 {
margin-right: 0.5rem !important;
}
-
- .mb-xl-2,
- .my-xl-2 {
+ .bootstrap .mb-xl-2,
+.bootstrap .my-xl-2 {
margin-bottom: 0.5rem !important;
}
-
- .ml-xl-2,
- .mx-xl-2 {
+ .bootstrap .ml-xl-2,
+.bootstrap .mx-xl-2 {
margin-left: 0.5rem !important;
}
-
- .m-xl-3 {
+ .bootstrap .m-xl-3 {
margin: 1rem !important;
}
-
- .mt-xl-3,
- .my-xl-3 {
+ .bootstrap .mt-xl-3,
+.bootstrap .my-xl-3 {
margin-top: 1rem !important;
}
-
- .mr-xl-3,
- .mx-xl-3 {
+ .bootstrap .mr-xl-3,
+.bootstrap .mx-xl-3 {
margin-right: 1rem !important;
}
-
- .mb-xl-3,
- .my-xl-3 {
+ .bootstrap .mb-xl-3,
+.bootstrap .my-xl-3 {
margin-bottom: 1rem !important;
}
-
- .ml-xl-3,
- .mx-xl-3 {
+ .bootstrap .ml-xl-3,
+.bootstrap .mx-xl-3 {
margin-left: 1rem !important;
}
-
- .m-xl-4 {
+ .bootstrap .m-xl-4 {
margin: 1.5rem !important;
}
-
- .mt-xl-4,
- .my-xl-4 {
+ .bootstrap .mt-xl-4,
+.bootstrap .my-xl-4 {
margin-top: 1.5rem !important;
}
-
- .mr-xl-4,
- .mx-xl-4 {
+ .bootstrap .mr-xl-4,
+.bootstrap .mx-xl-4 {
margin-right: 1.5rem !important;
}
-
- .mb-xl-4,
- .my-xl-4 {
+ .bootstrap .mb-xl-4,
+.bootstrap .my-xl-4 {
margin-bottom: 1.5rem !important;
}
-
- .ml-xl-4,
- .mx-xl-4 {
+ .bootstrap .ml-xl-4,
+.bootstrap .mx-xl-4 {
margin-left: 1.5rem !important;
}
-
- .m-xl-5 {
+ .bootstrap .m-xl-5 {
margin: 3rem !important;
}
-
- .mt-xl-5,
- .my-xl-5 {
+ .bootstrap .mt-xl-5,
+.bootstrap .my-xl-5 {
margin-top: 3rem !important;
}
-
- .mr-xl-5,
- .mx-xl-5 {
+ .bootstrap .mr-xl-5,
+.bootstrap .mx-xl-5 {
margin-right: 3rem !important;
}
-
- .mb-xl-5,
- .my-xl-5 {
+ .bootstrap .mb-xl-5,
+.bootstrap .my-xl-5 {
margin-bottom: 3rem !important;
}
-
- .ml-xl-5,
- .mx-xl-5 {
+ .bootstrap .ml-xl-5,
+.bootstrap .mx-xl-5 {
margin-left: 3rem !important;
}
-
- .p-xl-0 {
+ .bootstrap .p-xl-0 {
padding: 0 !important;
}
-
- .pt-xl-0,
- .py-xl-0 {
+ .bootstrap .pt-xl-0,
+.bootstrap .py-xl-0 {
padding-top: 0 !important;
}
-
- .pr-xl-0,
- .px-xl-0 {
+ .bootstrap .pr-xl-0,
+.bootstrap .px-xl-0 {
padding-right: 0 !important;
}
-
- .pb-xl-0,
- .py-xl-0 {
+ .bootstrap .pb-xl-0,
+.bootstrap .py-xl-0 {
padding-bottom: 0 !important;
}
-
- .pl-xl-0,
- .px-xl-0 {
+ .bootstrap .pl-xl-0,
+.bootstrap .px-xl-0 {
padding-left: 0 !important;
}
-
- .p-xl-1 {
+ .bootstrap .p-xl-1 {
padding: 0.25rem !important;
}
-
- .pt-xl-1,
- .py-xl-1 {
+ .bootstrap .pt-xl-1,
+.bootstrap .py-xl-1 {
padding-top: 0.25rem !important;
}
-
- .pr-xl-1,
- .px-xl-1 {
+ .bootstrap .pr-xl-1,
+.bootstrap .px-xl-1 {
padding-right: 0.25rem !important;
}
-
- .pb-xl-1,
- .py-xl-1 {
+ .bootstrap .pb-xl-1,
+.bootstrap .py-xl-1 {
padding-bottom: 0.25rem !important;
}
-
- .pl-xl-1,
- .px-xl-1 {
+ .bootstrap .pl-xl-1,
+.bootstrap .px-xl-1 {
padding-left: 0.25rem !important;
}
-
- .p-xl-2 {
+ .bootstrap .p-xl-2 {
padding: 0.5rem !important;
}
-
- .pt-xl-2,
- .py-xl-2 {
+ .bootstrap .pt-xl-2,
+.bootstrap .py-xl-2 {
padding-top: 0.5rem !important;
}
-
- .pr-xl-2,
- .px-xl-2 {
+ .bootstrap .pr-xl-2,
+.bootstrap .px-xl-2 {
padding-right: 0.5rem !important;
}
-
- .pb-xl-2,
- .py-xl-2 {
+ .bootstrap .pb-xl-2,
+.bootstrap .py-xl-2 {
padding-bottom: 0.5rem !important;
}
-
- .pl-xl-2,
- .px-xl-2 {
+ .bootstrap .pl-xl-2,
+.bootstrap .px-xl-2 {
padding-left: 0.5rem !important;
}
-
- .p-xl-3 {
+ .bootstrap .p-xl-3 {
padding: 1rem !important;
}
-
- .pt-xl-3,
- .py-xl-3 {
+ .bootstrap .pt-xl-3,
+.bootstrap .py-xl-3 {
padding-top: 1rem !important;
}
-
- .pr-xl-3,
- .px-xl-3 {
+ .bootstrap .pr-xl-3,
+.bootstrap .px-xl-3 {
padding-right: 1rem !important;
}
-
- .pb-xl-3,
- .py-xl-3 {
+ .bootstrap .pb-xl-3,
+.bootstrap .py-xl-3 {
padding-bottom: 1rem !important;
}
-
- .pl-xl-3,
- .px-xl-3 {
+ .bootstrap .pl-xl-3,
+.bootstrap .px-xl-3 {
padding-left: 1rem !important;
}
-
- .p-xl-4 {
+ .bootstrap .p-xl-4 {
padding: 1.5rem !important;
}
-
- .pt-xl-4,
- .py-xl-4 {
+ .bootstrap .pt-xl-4,
+.bootstrap .py-xl-4 {
padding-top: 1.5rem !important;
}
-
- .pr-xl-4,
- .px-xl-4 {
+ .bootstrap .pr-xl-4,
+.bootstrap .px-xl-4 {
padding-right: 1.5rem !important;
}
-
- .pb-xl-4,
- .py-xl-4 {
+ .bootstrap .pb-xl-4,
+.bootstrap .py-xl-4 {
padding-bottom: 1.5rem !important;
}
-
- .pl-xl-4,
- .px-xl-4 {
+ .bootstrap .pl-xl-4,
+.bootstrap .px-xl-4 {
padding-left: 1.5rem !important;
}
-
- .p-xl-5 {
+ .bootstrap .p-xl-5 {
padding: 3rem !important;
}
-
- .pt-xl-5,
- .py-xl-5 {
+ .bootstrap .pt-xl-5,
+.bootstrap .py-xl-5 {
padding-top: 3rem !important;
}
-
- .pr-xl-5,
- .px-xl-5 {
+ .bootstrap .pr-xl-5,
+.bootstrap .px-xl-5 {
padding-right: 3rem !important;
}
-
- .pb-xl-5,
- .py-xl-5 {
+ .bootstrap .pb-xl-5,
+.bootstrap .py-xl-5 {
padding-bottom: 3rem !important;
}
-
- .pl-xl-5,
- .px-xl-5 {
+ .bootstrap .pl-xl-5,
+.bootstrap .px-xl-5 {
padding-left: 3rem !important;
}
-
- .m-xl-n1 {
+ .bootstrap .m-xl-n1 {
margin: -0.25rem !important;
}
-
- .mt-xl-n1,
- .my-xl-n1 {
+ .bootstrap .mt-xl-n1,
+.bootstrap .my-xl-n1 {
margin-top: -0.25rem !important;
}
-
- .mr-xl-n1,
- .mx-xl-n1 {
+ .bootstrap .mr-xl-n1,
+.bootstrap .mx-xl-n1 {
margin-right: -0.25rem !important;
}
-
- .mb-xl-n1,
- .my-xl-n1 {
+ .bootstrap .mb-xl-n1,
+.bootstrap .my-xl-n1 {
margin-bottom: -0.25rem !important;
}
-
- .ml-xl-n1,
- .mx-xl-n1 {
+ .bootstrap .ml-xl-n1,
+.bootstrap .mx-xl-n1 {
margin-left: -0.25rem !important;
}
-
- .m-xl-n2 {
+ .bootstrap .m-xl-n2 {
margin: -0.5rem !important;
}
-
- .mt-xl-n2,
- .my-xl-n2 {
+ .bootstrap .mt-xl-n2,
+.bootstrap .my-xl-n2 {
margin-top: -0.5rem !important;
}
-
- .mr-xl-n2,
- .mx-xl-n2 {
+ .bootstrap .mr-xl-n2,
+.bootstrap .mx-xl-n2 {
margin-right: -0.5rem !important;
}
-
- .mb-xl-n2,
- .my-xl-n2 {
+ .bootstrap .mb-xl-n2,
+.bootstrap .my-xl-n2 {
margin-bottom: -0.5rem !important;
}
-
- .ml-xl-n2,
- .mx-xl-n2 {
+ .bootstrap .ml-xl-n2,
+.bootstrap .mx-xl-n2 {
margin-left: -0.5rem !important;
}
-
- .m-xl-n3 {
+ .bootstrap .m-xl-n3 {
margin: -1rem !important;
}
-
- .mt-xl-n3,
- .my-xl-n3 {
+ .bootstrap .mt-xl-n3,
+.bootstrap .my-xl-n3 {
margin-top: -1rem !important;
}
-
- .mr-xl-n3,
- .mx-xl-n3 {
+ .bootstrap .mr-xl-n3,
+.bootstrap .mx-xl-n3 {
margin-right: -1rem !important;
}
-
- .mb-xl-n3,
- .my-xl-n3 {
+ .bootstrap .mb-xl-n3,
+.bootstrap .my-xl-n3 {
margin-bottom: -1rem !important;
}
-
- .ml-xl-n3,
- .mx-xl-n3 {
+ .bootstrap .ml-xl-n3,
+.bootstrap .mx-xl-n3 {
margin-left: -1rem !important;
}
-
- .m-xl-n4 {
+ .bootstrap .m-xl-n4 {
margin: -1.5rem !important;
}
-
- .mt-xl-n4,
- .my-xl-n4 {
+ .bootstrap .mt-xl-n4,
+.bootstrap .my-xl-n4 {
margin-top: -1.5rem !important;
}
-
- .mr-xl-n4,
- .mx-xl-n4 {
+ .bootstrap .mr-xl-n4,
+.bootstrap .mx-xl-n4 {
margin-right: -1.5rem !important;
}
-
- .mb-xl-n4,
- .my-xl-n4 {
+ .bootstrap .mb-xl-n4,
+.bootstrap .my-xl-n4 {
margin-bottom: -1.5rem !important;
}
-
- .ml-xl-n4,
- .mx-xl-n4 {
+ .bootstrap .ml-xl-n4,
+.bootstrap .mx-xl-n4 {
margin-left: -1.5rem !important;
}
-
- .m-xl-n5 {
+ .bootstrap .m-xl-n5 {
margin: -3rem !important;
}
-
- .mt-xl-n5,
- .my-xl-n5 {
+ .bootstrap .mt-xl-n5,
+.bootstrap .my-xl-n5 {
margin-top: -3rem !important;
}
-
- .mr-xl-n5,
- .mx-xl-n5 {
+ .bootstrap .mr-xl-n5,
+.bootstrap .mx-xl-n5 {
margin-right: -3rem !important;
}
-
- .mb-xl-n5,
- .my-xl-n5 {
+ .bootstrap .mb-xl-n5,
+.bootstrap .my-xl-n5 {
margin-bottom: -3rem !important;
}
-
- .ml-xl-n5,
- .mx-xl-n5 {
+ .bootstrap .ml-xl-n5,
+.bootstrap .mx-xl-n5 {
margin-left: -3rem !important;
}
-
- .m-xl-auto {
+ .bootstrap .m-xl-auto {
margin: auto !important;
}
-
- .mt-xl-auto,
- .my-xl-auto {
+ .bootstrap .mt-xl-auto,
+.bootstrap .my-xl-auto {
margin-top: auto !important;
}
-
- .mr-xl-auto,
- .mx-xl-auto {
+ .bootstrap .mr-xl-auto,
+.bootstrap .mx-xl-auto {
margin-right: auto !important;
}
-
- .mb-xl-auto,
- .my-xl-auto {
+ .bootstrap .mb-xl-auto,
+.bootstrap .my-xl-auto {
margin-bottom: auto !important;
}
-
- .ml-xl-auto,
- .mx-xl-auto {
+ .bootstrap .ml-xl-auto,
+.bootstrap .mx-xl-auto {
margin-left: auto !important;
}
}
-
-.text-monospace {
+.bootstrap .text-monospace {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}
-
-.text-justify {
+.bootstrap .text-justify {
text-align: justify !important;
}
-
-.text-wrap {
+.bootstrap .text-wrap {
white-space: normal !important;
}
-
-.text-nowrap {
+.bootstrap .text-nowrap {
white-space: nowrap !important;
}
-
-.text-truncate {
+.bootstrap .text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
-
-.text-left {
+.bootstrap .text-left {
text-align: left !important;
}
-
-.text-right {
+.bootstrap .text-right {
text-align: right !important;
}
-
-.text-center {
+.bootstrap .text-center {
text-align: center !important;
}
-
@media (min-width: 576px) {
- .text-sm-left {
+ .bootstrap .text-sm-left {
text-align: left !important;
}
-
- .text-sm-right {
+ .bootstrap .text-sm-right {
text-align: right !important;
}
-
- .text-sm-center {
+ .bootstrap .text-sm-center {
text-align: center !important;
}
}
-
@media (min-width: 768px) {
- .text-md-left {
+ .bootstrap .text-md-left {
text-align: left !important;
}
-
- .text-md-right {
+ .bootstrap .text-md-right {
text-align: right !important;
}
-
- .text-md-center {
+ .bootstrap .text-md-center {
text-align: center !important;
}
}
-
@media (min-width: 992px) {
- .text-lg-left {
+ .bootstrap .text-lg-left {
text-align: left !important;
}
-
- .text-lg-right {
+ .bootstrap .text-lg-right {
text-align: right !important;
}
-
- .text-lg-center {
+ .bootstrap .text-lg-center {
text-align: center !important;
}
}
-
@media (min-width: 1200px) {
- .text-xl-left {
+ .bootstrap .text-xl-left {
text-align: left !important;
}
-
- .text-xl-right {
+ .bootstrap .text-xl-right {
text-align: right !important;
}
-
- .text-xl-center {
+ .bootstrap .text-xl-center {
text-align: center !important;
}
}
-
-.text-lowercase {
+.bootstrap .text-lowercase {
text-transform: lowercase !important;
}
-
-.text-uppercase {
+.bootstrap .text-uppercase {
text-transform: uppercase !important;
}
-
-.text-capitalize {
+.bootstrap .text-capitalize {
text-transform: capitalize !important;
}
-
-.font-weight-light {
+.bootstrap .font-weight-light {
font-weight: 300 !important;
}
-
-.font-weight-lighter {
+.bootstrap .font-weight-lighter {
font-weight: lighter !important;
}
-
-.font-weight-normal {
+.bootstrap .font-weight-normal {
font-weight: 400 !important;
}
-
-.font-weight-bold {
+.bootstrap .font-weight-bold {
font-weight: 700 !important;
}
-
-.font-weight-bolder {
+.bootstrap .font-weight-bolder {
font-weight: bolder !important;
}
-
-.font-italic {
+.bootstrap .font-italic {
font-style: italic !important;
}
-
-.text-white {
+.bootstrap .text-white {
color: #fff !important;
}
-
-.text-primary {
+.bootstrap .text-primary {
color: #074e9c !important;
}
-
-a.text-primary:hover,
-a.text-primary:focus {
+.bootstrap a.text-primary:hover, .bootstrap a.text-primary:focus {
color: #042953 !important;
}
-
-.text-secondary {
+.bootstrap .text-secondary {
color: #6c757d !important;
}
-
-a.text-secondary:hover,
-a.text-secondary:focus {
+.bootstrap a.text-secondary:hover, .bootstrap a.text-secondary:focus {
color: #494f54 !important;
}
-
-.text-success {
+.bootstrap .text-success {
color: #38c172 !important;
}
-
-a.text-success:hover,
-a.text-success:focus {
+.bootstrap a.text-success:hover, .bootstrap a.text-success:focus {
color: #27864f !important;
}
-
-.text-info {
+.bootstrap .text-info {
color: #6cb2eb !important;
}
-
-a.text-info:hover,
-a.text-info:focus {
+.bootstrap a.text-info:hover, .bootstrap a.text-info:focus {
color: #298fe2 !important;
}
-
-.text-warning {
+.bootstrap .text-warning {
color: #ffed4a !important;
}
-
-a.text-warning:hover,
-a.text-warning:focus {
+.bootstrap a.text-warning:hover, .bootstrap a.text-warning:focus {
color: #fde300 !important;
}
-
-.text-danger {
+.bootstrap .text-danger {
color: #d04d4a !important;
}
-
-a.text-danger:hover,
-a.text-danger:focus {
+.bootstrap a.text-danger:hover, .bootstrap a.text-danger:focus {
color: #a32d2a !important;
}
-
-.text-light {
+.bootstrap .text-light {
color: #f8f9fa !important;
}
-
-a.text-light:hover,
-a.text-light:focus {
+.bootstrap a.text-light:hover, .bootstrap a.text-light:focus {
color: #cbd3da !important;
}
-
-.text-dark {
+.bootstrap .text-dark {
color: #343a40 !important;
}
-
-a.text-dark:hover,
-a.text-dark:focus {
+.bootstrap a.text-dark:hover, .bootstrap a.text-dark:focus {
color: #121416 !important;
}
-
-.text-body {
+.bootstrap .text-body {
color: #212529 !important;
}
-
-.text-muted {
+.bootstrap .text-muted {
color: #6c757d !important;
}
-
-.text-black-50 {
+.bootstrap .text-black-50 {
color: rgba(0, 0, 0, 0.5) !important;
}
-
-.text-white-50 {
+.bootstrap .text-white-50 {
color: rgba(255, 255, 255, 0.5) !important;
}
-
-.text-hide {
+.bootstrap .text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
-
-.text-decoration-none {
+.bootstrap .text-decoration-none {
text-decoration: none !important;
}
-
-.text-break {
+.bootstrap .text-break {
word-break: break-word !important;
overflow-wrap: break-word !important;
}
-
-.text-reset {
+.bootstrap .text-reset {
color: inherit !important;
}
-
-.visible {
+.bootstrap .visible {
visibility: visible !important;
}
-
-.invisible {
+.bootstrap .invisible {
visibility: hidden !important;
}
-
@media print {
- *,
- *::before,
- *::after {
+ .bootstrap *,
+.bootstrap *::before,
+.bootstrap *::after {
text-shadow: none !important;
box-shadow: none !important;
}
-
- a:not(.btn) {
+ .bootstrap a:not(.btn) {
text-decoration: underline;
}
-
- abbr[title]::after {
+ .bootstrap abbr[title]::after {
content: " (" attr(title) ")";
}
-
- pre {
+ .bootstrap pre {
white-space: pre-wrap !important;
}
-
- pre,
- blockquote {
+ .bootstrap pre,
+.bootstrap blockquote {
border: 1px solid #adb5bd;
page-break-inside: avoid;
}
-
- thead {
+ .bootstrap thead {
display: table-header-group;
}
-
- tr,
- img {
+ .bootstrap tr,
+.bootstrap img {
page-break-inside: avoid;
}
-
- p,
- h2,
- h3 {
+ .bootstrap p,
+.bootstrap h2,
+.bootstrap h3 {
orphans: 3;
widows: 3;
}
-
- h2,
- h3 {
+ .bootstrap h2,
+.bootstrap h3 {
page-break-after: avoid;
}
-
-@page {
- size: a3;
-}
-
- body {
+ @page {
+ .bootstrap {
+ size: a3;
+ }
+ }
+ .bootstrap body {
min-width: 992px !important;
}
-
- .container {
+ .bootstrap .container {
min-width: 992px !important;
}
-
- .navbar {
+ .bootstrap .navbar {
display: none;
}
-
- .badge {
+ .bootstrap .badge {
border: 1px solid #000;
}
-
- .table {
+ .bootstrap .table {
border-collapse: collapse !important;
}
-
- .table td,
- .table th {
+ .bootstrap .table td,
+.bootstrap .table th {
background-color: #fff !important;
}
-
- .table-bordered th,
- .table-bordered td {
+ .bootstrap .table-bordered th,
+.bootstrap .table-bordered td {
border: 1px solid #dee2e6 !important;
}
-
- .table-dark {
+ .bootstrap .table-dark {
color: inherit;
}
-
- .table-dark th,
- .table-dark td,
- .table-dark thead th,
- .table-dark tbody + tbody {
+ .bootstrap .table-dark th,
+.bootstrap .table-dark td,
+.bootstrap .table-dark thead th,
+.bootstrap .table-dark tbody + tbody {
border-color: #dee2e6;
}
-
- .table .thead-dark th {
+ .bootstrap .table .thead-dark th {
color: inherit;
border-color: #dee2e6;
}
@@ -10989,30 +8582,24 @@ a.text-dark:focus {
from {
opacity: 1;
}
-
50% {
opacity: 0;
}
-
to {
opacity: 1;
}
}
-
@-webkit-keyframes blink-fade {
from {
opacity: 1;
}
-
50% {
opacity: 0;
}
-
to {
opacity: 1;
}
}
-
.blink {
animation: blink-fade 1000ms infinite;
-webkit-animation: blink-fade 1000ms infinite;
@@ -11023,22 +8610,12 @@ a.text-dark:focus {
display: inline-block;
}
-mark.ais-Snippet-highlighted,
-mark.mark {
+mark.ais-Snippet-highlighted, mark.mark {
padding: 0;
background-color: #fff252;
}
-/* Temporary */
-
-main > div > div,
-aside > div {
- height: 200px;
- border: 1px solid black;
-}
-
/*Vue material*/
-
.md-scrollbar::-webkit-scrollbar {
width: 8px;
height: 8px;
@@ -11084,8 +8661,7 @@ aside > div {
line-height: 32px;
}
-.md-display-1,
-.md-headline {
+.md-display-1, .md-headline {
font-weight: 400;
letter-spacing: 0;
}
@@ -11124,19 +8700,16 @@ button:focus {
0% {
transform: translateX(0);
}
-
20% {
-webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.7, 0.5);
animation-timing-function: cubic-bezier(0.5, 0, 0.7, 0.5);
transform: translateX(0);
}
-
60% {
-webkit-animation-timing-function: cubic-bezier(0.3, 0.38, 0.55, 0.96);
animation-timing-function: cubic-bezier(0.3, 0.38, 0.55, 0.96);
transform: translateX(83.67%);
}
-
to {
transform: translateX(200.61%);
}
@@ -11146,176 +8719,146 @@ button:focus {
0% {
transform: translateX(0);
}
-
20% {
-webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.7, 0.5);
animation-timing-function: cubic-bezier(0.5, 0, 0.7, 0.5);
transform: translateX(0);
}
-
60% {
-webkit-animation-timing-function: cubic-bezier(0.3, 0.38, 0.55, 0.96);
animation-timing-function: cubic-bezier(0.3, 0.38, 0.55, 0.96);
transform: translateX(83.67%);
}
-
to {
transform: translateX(200.61%);
}
}
-
@-webkit-keyframes b {
0% {
transform: scaleX(0.08);
}
-
35% {
-webkit-animation-timing-function: cubic-bezier(0.33, 0.12, 0.79, 1);
animation-timing-function: cubic-bezier(0.33, 0.12, 0.79, 1);
transform: scaleX(0.08);
}
-
70% {
-webkit-animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
transform: scaleX(0.66);
}
-
to {
transform: scaleX(0.08);
}
}
-
@keyframes b {
0% {
transform: scaleX(0.08);
}
-
35% {
-webkit-animation-timing-function: cubic-bezier(0.33, 0.12, 0.79, 1);
animation-timing-function: cubic-bezier(0.33, 0.12, 0.79, 1);
transform: scaleX(0.08);
}
-
70% {
-webkit-animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
transform: scaleX(0.66);
}
-
to {
transform: scaleX(0.08);
}
}
-
@-webkit-keyframes c {
0% {
-webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
transform: translateX(0);
}
-
25% {
-webkit-animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
transform: translateX(37.65%);
}
-
50% {
-webkit-animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
transform: translateX(84.39%);
}
-
to {
transform: translateX(160.28%);
}
}
-
@keyframes c {
0% {
-webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
transform: translateX(0);
}
-
25% {
-webkit-animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
transform: translateX(37.65%);
}
-
50% {
-webkit-animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
transform: translateX(84.39%);
}
-
to {
transform: translateX(160.28%);
}
}
-
@-webkit-keyframes d {
0% {
-webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
transform: scaleX(0.08);
}
-
20% {
-webkit-animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
transform: scaleX(0.46);
}
-
45% {
-webkit-animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
transform: scaleX(0.73);
}
-
to {
transform: scaleX(0.08);
}
}
-
@keyframes d {
0% {
-webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
animation-timing-function: cubic-bezier(0.15, 0, 0.52, 0.41);
transform: scaleX(0.08);
}
-
20% {
-webkit-animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
animation-timing-function: cubic-bezier(0.31, 0.28, 0.8, 0.73);
transform: scaleX(0.46);
}
-
45% {
-webkit-animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
animation-timing-function: cubic-bezier(0.4, 0.63, 0.6, 0.9);
transform: scaleX(0.73);
}
-
to {
transform: scaleX(0.08);
}
}
-
@-webkit-keyframes e {
to {
transform: translate3D(-8px, 0, 0);
}
}
-
@keyframes e {
to {
transform: translate3D(-8px, 0, 0);
}
}
-
.md-progress-bar {
height: 5px;
overflow: hidden;
@@ -11326,38 +8869,29 @@ button:focus {
will-change: opacity, transform;
}
-.md-progress-bar.md-indeterminate .md-progress-bar-track,
-.md-progress-bar.md-query .md-progress-bar-track {
+.md-progress-bar.md-indeterminate .md-progress-bar-track, .md-progress-bar.md-query .md-progress-bar-track {
left: -150%;
-webkit-animation: a 2s infinite linear;
animation: a 2s infinite linear;
}
-.md-progress-bar.md-indeterminate .md-progress-bar-track:after,
-.md-progress-bar.md-query .md-progress-bar-track:after {
+.md-progress-bar.md-indeterminate .md-progress-bar-track:after, .md-progress-bar.md-query .md-progress-bar-track:after {
-webkit-animation: b 2s infinite linear;
animation: b 2s infinite linear;
}
-.md-progress-bar.md-indeterminate .md-progress-bar-fill,
-.md-progress-bar.md-query .md-progress-bar-fill {
+.md-progress-bar.md-indeterminate .md-progress-bar-fill, .md-progress-bar.md-query .md-progress-bar-fill {
left: -55%;
-webkit-animation: c 2s infinite linear;
animation: c 2s infinite linear;
}
-.md-progress-bar.md-indeterminate .md-progress-bar-fill:after,
-.md-progress-bar.md-query .md-progress-bar-fill:after {
+.md-progress-bar.md-indeterminate .md-progress-bar-fill:after, .md-progress-bar.md-query .md-progress-bar-fill:after {
-webkit-animation: d 2s infinite linear;
animation: d 2s infinite linear;
}
-.md-progress-bar.md-buffer .md-progress-bar-buffer,
-.md-progress-bar.md-buffer .md-progress-bar-fill,
-.md-progress-bar.md-buffer .md-progress-bar-track,
-.md-progress-bar.md-determinate .md-progress-bar-buffer,
-.md-progress-bar.md-determinate .md-progress-bar-fill,
-.md-progress-bar.md-determinate .md-progress-bar-track {
+.md-progress-bar.md-buffer .md-progress-bar-buffer, .md-progress-bar.md-buffer .md-progress-bar-fill, .md-progress-bar.md-buffer .md-progress-bar-track, .md-progress-bar.md-determinate .md-progress-bar-buffer, .md-progress-bar.md-determinate .md-progress-bar-fill, .md-progress-bar.md-determinate .md-progress-bar-track {
transition: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@@ -11375,33 +8909,23 @@ button:focus {
transform: rotate(180deg);
}
-.md-progress-bar-enter,
-.md-progress-bar-leave-active {
+.md-progress-bar-enter, .md-progress-bar-leave-active {
opacity: 0.5;
transform: translateZ(0) scaleY(0);
}
-.md-progress-bar-buffer,
-.md-progress-bar-fill,
-.md-progress-bar-track {
+.md-progress-bar-buffer, .md-progress-bar-fill, .md-progress-bar-track {
transform-origin: top left;
}
-.md-progress-bar-buffer,
-.md-progress-bar-buffer:after,
-.md-progress-bar-fill,
-.md-progress-bar-fill:after,
-.md-progress-bar-track,
-.md-progress-bar-track:after {
+.md-progress-bar-buffer, .md-progress-bar-buffer:after, .md-progress-bar-fill, .md-progress-bar-fill:after, .md-progress-bar-track, .md-progress-bar-track:after {
width: 100%;
height: 100%;
position: absolute;
will-change: transform;
}
-.md-progress-bar-buffer:after,
-.md-progress-bar-fill:after,
-.md-progress-bar-track:after {
+.md-progress-bar-buffer:after, .md-progress-bar-fill:after, .md-progress-bar-track:after {
display: inline-block;
left: 0;
content: " ";
@@ -11411,7 +8935,6 @@ button:focus {
0% {
transform: rotate(0);
}
-
to {
transform: rotate(1turn);
}
@@ -11421,206 +8944,166 @@ button:focus {
0% {
transform: rotate(0);
}
-
to {
transform: rotate(1turn);
}
}
-
@-webkit-keyframes g {
0% {
opacity: 0;
transform: rotate(-90deg) translateZ(0);
}
-
20% {
opacity: 1;
}
-
to {
transform: rotate(270deg) translateZ(0);
}
}
-
@keyframes g {
0% {
opacity: 0;
transform: rotate(-90deg) translateZ(0);
}
-
20% {
opacity: 1;
}
-
to {
transform: rotate(270deg) translateZ(0);
}
}
-
@-webkit-keyframes h {
0% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(0);
}
-
12.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(0);
}
-
12.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(72.5deg);
}
-
25% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(72.5deg);
}
-
25.1% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(270deg);
}
-
37.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(270deg);
}
-
37.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(161.5deg);
}
-
50% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(161.5deg);
}
-
50.01% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(180deg);
}
-
62.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(180deg);
}
-
62.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(251.5deg);
}
-
75% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(251.5deg);
}
-
75.01% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(90deg);
}
-
87.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(90deg);
}
-
87.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(341.5deg);
}
-
to {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(341.5deg);
}
}
-
@keyframes h {
0% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(0);
}
-
12.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(0);
}
-
12.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(72.5deg);
}
-
25% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(72.5deg);
}
-
25.1% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(270deg);
}
-
37.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(270deg);
}
-
37.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(161.5deg);
}
-
50% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(161.5deg);
}
-
50.01% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(180deg);
}
-
62.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(180deg);
}
-
62.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(251.5deg);
}
-
75% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(251.5deg);
}
-
75.01% {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotate(90deg);
}
-
87.5% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotate(90deg);
}
-
87.51% {
stroke-dashoffset: var(--md-progress-spinner-end-value);
transform: rotateX(180deg) rotate(341.5deg);
}
-
to {
stroke-dashoffset: var(--md-progress-spinner-start-value);
transform: rotateX(180deg) rotate(341.5deg);
}
}
-
.md-progress-spinner {
display: inline-flex;
position: relative;
@@ -11631,14 +9114,12 @@ button:focus {
animation: f 2s linear infinite;
}
-.md-progress-spinner.md-indeterminate.md-progress-spinner-enter .md-progress-spinner-draw,
-.md-progress-spinner.md-indeterminate.md-progress-spinner-leave-to .md-progress-spinner-draw {
+.md-progress-spinner.md-indeterminate.md-progress-spinner-enter .md-progress-spinner-draw, .md-progress-spinner.md-indeterminate.md-progress-spinner-leave-to .md-progress-spinner-draw {
opacity: 0;
transform: scale(0.1);
}
-.md-progress-spinner.md-indeterminate.md-progress-spinner-enter-active,
-.md-progress-spinner.md-indeterminate.md-progress-spinner-leave-active {
+.md-progress-spinner.md-indeterminate.md-progress-spinner-enter-active, .md-progress-spinner.md-indeterminate.md-progress-spinner-leave-active {
transition-duration: 0.4s;
-webkit-animation: none;
animation: none;
@@ -11685,5 +9166,4 @@ button:focus {
transform-origin: center;
transition: stroke-dashoffset 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
will-change: stroke-dashoffset, stroke-dasharray, stroke-width, animation-name, r;
-}
-
+}
\ No newline at end of file
diff --git a/public/js/app.js b/public/js/app.js
index 1faa702..505e7d4 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -14946,7 +14946,7 @@ module.exports = exports;
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../node_modules/css-loader/dist/runtime/api.js */ "./node_modules/css-loader/dist/runtime/api.js");
exports = ___CSS_LOADER_API_IMPORT___(false);
// Module
-exports.push([module.i, "\na {\ncolor: initial !important;\n}\na.btn {\n color: #fff !important;\n}\n.file-selected > div{\n margin-bottom: 2rem;\n}\n.file-upload label.btn {\n margin-bottom: 0;\n margin-right: 1rem;\n}\n.file-upload .drop-active {\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n position: fixed;\n z-index: 9999;\n opacity: .6;\n text-align: center;\n background: #000;\n}\n.file-upload .drop-active h3 {\n margin: -.5em 0 0;\n position: absolute;\n top: 50%;\n left: 0;\n right: 0;\n transform: translateY(-50%);\n font-size: 40px;\n color: #fff;\n padding: 0;\n}\n\n\n\n", ""]);
+exports.push([module.i, "\na {\ncolor: inherit !important;\n}\na.btn {\n color: #fff !important;\n}\n.file-selected > div{\n margin-bottom: 2rem;\n}\n.file-upload label.btn {\n margin-bottom: 0;\n margin-right: 1rem;\n}\n.file-upload .drop-active {\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n position: fixed;\n z-index: 9999;\n opacity: .6;\n text-align: center;\n background: #000;\n}\n.file-upload .drop-active h3 {\n margin: -.5em 0 0;\n position: absolute;\n top: 50%;\n left: 0;\n right: 0;\n transform: translateY(-50%);\n font-size: 40px;\n color: #fff;\n padding: 0;\n}\n\n\n\n", ""]);
// Exports
module.exports = exports;
diff --git a/public/mix-manifest.json b/public/mix-manifest.json
index 2d60117..1cb8b9a 100644
--- a/public/mix-manifest.json
+++ b/public/mix-manifest.json
@@ -1,4 +1,5 @@
{
+ "/admin/js/admin.js": "/admin/js/admin.js",
"/js/app.js": "/js/app.js",
"/css/app.css": "/css/app.css"
}
diff --git a/resources/js/admin.js b/resources/js/admin.js
new file mode 100644
index 0000000..0475bb2
--- /dev/null
+++ b/resources/js/admin.js
@@ -0,0 +1,57 @@
+/**
+ * First we will load all of this project's JavaScript dependencies which
+ * includes Vue and other libraries. It is a great starting point when
+ * building robust, powerful web applications using Vue and Laravel.
+ */
+
+require('./bootstrap');
+window.Vue = require('vue');
+/** @todo fix vue material design issue */
+
+
+
+import 'selectize/dist/js/standalone/selectize.min.js';
+import 'selectize/dist/css/selectize.css';
+import '@fortawesome/fontawesome-free/css/all.min.css';
+import CKEditor from '@ckeditor/ckeditor5-vue';
+import { MdProgress } from 'vue-material/dist/components'
+
+window.Vue.use( CKEditor );
+window.Vue.use(MdProgress);
+
+
+/**
+ * The following block of code may be used to automatically register your
+ * Vue components. It will recursively scan this directory for the Vue
+ * components and automatically register them with their "basename".
+ *
+ * Eg. ./components/ExampleComponent.vue ->
+ */
+
+const files = require.context('./', true, /\.vue$/i)
+files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default))
+
+// Vue.component('example-component', require('./components/ExampleComponent.vue').default);
+
+/**
+ * Next, we will create a fresh Vue application instance and attach it to
+ * the page. Then, you may begin adding components to this application
+ * or customize the JavaScript scaffolding to fit your unique needs.
+ */
+
+const app = new Vue({
+ el: '#app',
+ data: {
+ publishState: {
+ file: {
+ title: "",
+ slug: "",
+
+ },
+ email:{
+ subject: "",
+ content: "",
+ }
+ },
+ }
+});
diff --git a/resources/js/components/Publish/Step1UploadFile.vue b/resources/js/components/Publish/Step1UploadFile.vue
index 9a4108e..0ff57f7 100644
--- a/resources/js/components/Publish/Step1UploadFile.vue
+++ b/resources/js/components/Publish/Step1UploadFile.vue
@@ -262,7 +262,7 @@